本文整理汇总了Java中com.amazonaws.services.s3.AmazonS3EncryptionClient类的典型用法代码示例。如果您正苦于以下问题:Java AmazonS3EncryptionClient类的具体用法?Java AmazonS3EncryptionClient怎么用?Java AmazonS3EncryptionClient使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AmazonS3EncryptionClient类属于com.amazonaws.services.s3包,在下文中一共展示了AmazonS3EncryptionClient类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: provideAmazonS3Client
import com.amazonaws.services.s3.AmazonS3EncryptionClient; //导入依赖的package包/类
@Singleton
@Provides
@Nullable
public AmazonS3 provideAmazonS3Client(@Nullable AWSCredentials awsCredentials, @Nullable EncryptionMaterialsProvider encryptionMaterialsProvider)
{
if (awsCredentials == null) {
if (encryptionMaterialsProvider == null) {
return new AmazonS3Client(new InstanceProfileCredentialsProvider());
}
else {
return new AmazonS3EncryptionClient(new InstanceProfileCredentialsProvider(), encryptionMaterialsProvider);
}
}
if (encryptionMaterialsProvider == null) {
return new AmazonS3Client(awsCredentials);
}
else {
return new AmazonS3EncryptionClient(awsCredentials, encryptionMaterialsProvider);
}
}
示例2: initEncryptedConfigStoreService
import com.amazonaws.services.s3.AmazonS3EncryptionClient; //导入依赖的package包/类
private void initEncryptedConfigStoreService() {
if (encryptedConfigStoreService == null) {
final Environment environment = getEnvironmentData();
KMSEncryptionMaterialsProvider materialProvider =
new KMSEncryptionMaterialsProvider(environment.getConfigKeyId());
AmazonS3EncryptionClient encryptionClient =
new AmazonS3EncryptionClient(
new DefaultAWSCredentialsProviderChain(),
materialProvider,
new CryptoConfiguration()
.withAwsKmsRegion(Region.getRegion(environmentMetadata.getRegions())))
.withRegion(Region.getRegion(environmentMetadata.getRegions()));
encryptedConfigStoreService = new S3StoreService(encryptionClient, environmentMetadata.getBucketName(), "");
}
}
示例3: CmsEnvPropertiesLoader
import com.amazonaws.services.s3.AmazonS3EncryptionClient; //导入依赖的package包/类
public CmsEnvPropertiesLoader(final String bucketName, final String region, final String kmsKeyId) {
final KMSEncryptionMaterialsProvider materialProvider =
new KMSEncryptionMaterialsProvider(kmsKeyId);
this.s3Client =
new AmazonS3EncryptionClient(
new DefaultAWSCredentialsProviderChain(),
materialProvider,
new CryptoConfiguration()
.withAwsKmsRegion(Region.getRegion(
Regions.fromName(region))))
.withRegion(Region.getRegion(Regions.fromName(region)));
this.bucketName = bucketName;
}
示例4: getS3EncryptionStoreService
import com.amazonaws.services.s3.AmazonS3EncryptionClient; //导入依赖的package包/类
private S3StoreService getS3EncryptionStoreService(String cmkId,
RestoreCerberusBackupCommand command) {
Region region = Region.getRegion(Regions.fromName(command.getS3Region()));
KMSEncryptionMaterialsProvider materialProvider = new KMSEncryptionMaterialsProvider(cmkId);
AmazonS3EncryptionClient encryptionClient =
new AmazonS3EncryptionClient(
new DefaultAWSCredentialsProviderChain(),
materialProvider,
new CryptoConfiguration()
.withAwsKmsRegion(region))
.withRegion(region);
return new S3StoreService(encryptionClient, command.getS3Bucket(), command.getS3Prefix());
}
示例5: testEncryptionMaterialsProvider
import com.amazonaws.services.s3.AmazonS3EncryptionClient; //导入依赖的package包/类
@Test
public void testEncryptionMaterialsProvider()
throws Exception
{
Configuration config = new Configuration();
config.set(S3_ENCRYPTION_MATERIALS_PROVIDER, TestEncryptionMaterialsProvider.class.getName());
try (PrestoS3FileSystem fs = new PrestoS3FileSystem()) {
fs.initialize(new URI("s3n://test-bucket/"), config);
assertInstanceOf(fs.getS3Client(), AmazonS3EncryptionClient.class);
}
}