Skip to content

Commit

Permalink
Release v2.1.1
Browse files Browse the repository at this point in the history
Compiling fixes
  • Loading branch information
loremipsumdolor committed Feb 20, 2017
1 parent 2258f85 commit 2f2788b
Show file tree
Hide file tree
Showing 8 changed files with 2,662 additions and 3 deletions.
156 changes: 156 additions & 0 deletions src/com/amazonaws/internal/config/awssdk_config_default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
{ // AWS Java SDK internal configuration
"defaultSigner" : {
"signerType" : "AWS4SignerType"
},
// "regionSigners" configuration takes precedence over
// the "serviceSigners" configuration,
// but not the "serviceRegionSigners" configuration
"serviceSigners" : [ {
"key" : "importexport",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "s3",
"config" : {
"signerType" : "AWSS3V4SignerType"
}
} ],
"regionSigners" : [ ],
"serviceRegionSigners" : [ {
"key" : "sdb/us-east-1",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "sdb/us-west-1",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "sdb/us-west-2",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "sdb/eu-west-1",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "sdb/ap-southeast-1",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "sdb/ap-southeast-2",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "sdb/ap-northeast-1",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "sdb/sa-east-1",
"config" : {
"signerType" : "QueryStringSignerType"
}
}, {
"key" : "sdb/us-gov-west-1",
"config" : {
"signerType" : "QueryStringSignerType"
}
} ],
// AWS http client internal configuration.
// Currently, only those http client with class name not following the usual
// convention of (Amazon|AWS).*(JavaClient|Client)
// needs to be explicitly configured. Otherwise, the service name of an
// http client not explicitly configured will be derived automatically from
// the class name by removing the prefix and suffix as necessary.
"httpClients" : [ {
"key" : "AmazonSimpleWorkflowClient",
"config" : {
"serviceName" : "swf"
}
}, {
"key" : "AmazonCloudWatchClient",
"config" : {
"serviceName" : "monitoring"
}
}, {
"key" : "DataPipelineClient",
"config" : {
"serviceName" : "datapipeline"
}
}, {
"key" : "AmazonIdentityManagementClient",
"config" : {
"serviceName" : "iam"
}
}, {
"key" : "AmazonSimpleDBClient",
"config" : {
"serviceName" : "sdb"
}
}, {
"key" : "AmazonSimpleEmailServiceClient",
"config" : {
"serviceName" : "email",
"regionMetadataServiceName": "email" // for region metadata
}
}, {
"key" : "AWSSecurityTokenServiceClient",
"config" : {
"serviceName" : "sts"
}
}, {
"key" : "AmazonCognitoIdentityClient",
"config" : {
"serviceName" : "cognito-identity"
}
}, {
"key" : "AmazonCognitoSyncClient",
"config" : {
"serviceName" : "cognito-sync"
}
}, {
"key": "AmazonCloudSearchDomainClient",
"config" : {
"serviceName": "cloudsearch"
}
}, {
"key": "AWSSimpleSystemsManagementClient",
"config" : {
"serviceName": "ssm"
}
}, {
"key": "AWSDirectoryServiceClient",
"config" : {
"serviceName": "ds"
}
}, {
"key": "AmazonDynamoDBStreamsClient",
"config" : {
"serviceName": "dynamodb", // for v4 signing
"regionMetadataServiceName": "streams.dynamodb" // for region metadata
}
}, {
"key" : "AWSIotClient",
"config" : {
"regionMetadataServiceName": "iot" // for region metadata
}
} ],
"hostRegexToRegionMappings" : [ {
"hostNameRegex" : "(.+\\.)?s3\\.amazonaws\\.com",
"regionName" : "us-east-1"
}, {
"hostNameRegex" : "(.+\\.)?s3-external-1\\.amazonaws\\.com",
"regionName" : "us-east-1"
}, {
"hostNameRegex" : "(.+\\.)?s3-fips-us-gov-west-1\\.amazonaws\\.com",
"regionName" : "us-gov-west-1"
} ],
"userAgentTemplate": "aws-sdk-{platform}/{version} {os.name}/{os.version} {java.vm.name}/{java.vm.version}/{java.version}{language.and.region}{additional.languages}"
}
Loading

0 comments on commit 2f2788b

Please sign in to comment.