Há mais AWS SDK exemplos disponíveis no GitHub repositório AWS Doc SDK Examples
As traduções são geradas por tradução automática. Em caso de conflito entre o conteúdo da tradução e da versão original em inglês, a versão em inglês prevalecerá.
Use GetBucketEncryption
com um AWS SDK ou CLI
Os exemplos de código a seguir mostram como usar o GetBucketEncryption
.
- .NET
-
- AWS SDK for .NET
-
nota
Tem mais sobre GitHub. Encontre o exemplo completo e saiba como configurar e executar no Repositório de exemplos de código da AWS
. /// <summary> /// Get and print the encryption settings of a bucket. /// </summary> /// <param name="bucketName">Name of the bucket.</param> /// <returns>Async task.</returns> public static async Task GetEncryptionSettings(string bucketName) { // Check and print the bucket encryption settings. Console.WriteLine($"Getting encryption settings for bucket {bucketName}."); try { var settings = await _s3Client.GetBucketEncryptionAsync( new GetBucketEncryptionRequest() { BucketName = bucketName }); foreach (var encryptionSettings in settings?.ServerSideEncryptionConfiguration?.ServerSideEncryptionRules!) { Console.WriteLine( $"\tAlgorithm: {encryptionSettings.ServerSideEncryptionByDefault.ServerSideEncryptionAlgorithm}"); Console.WriteLine( $"\tKey: {encryptionSettings.ServerSideEncryptionByDefault.ServerSideEncryptionKeyManagementServiceKeyId}"); } } catch (AmazonS3Exception ex) { Console.WriteLine(ex.ErrorCode == "InvalidBucketName" ? $"Bucket {bucketName} was not found." : $"Unable to get bucket encryption for bucket {bucketName}, {ex.Message}"); } }
-
Para API obter detalhes, consulte GetBucketEncryptionem AWS SDK for .NET APIReferência.
-
- CLI
-
- AWS CLI
-
Para recuperar a configuração de criptografia do lado do servidor para um bucket
O exemplo
get-bucket-encryption
a seguir recupera a configuração de criptografia do lado do servidor do bucketmy-bucket
.aws s3api get-bucket-encryption \ --bucket
my-bucket
Saída:
{ "ServerSideEncryptionConfiguration": { "Rules": [ { "ApplyServerSideEncryptionByDefault": { "SSEAlgorithm": "AES256" } } ] } }
-
Para API obter detalhes, consulte GetBucketEncryption
na Referência de AWS CLI Comandos.
-
- PowerShell
-
- Ferramentas para PowerShell
-
Exemplo 1: este comando retorna todas as regras de criptografia do lado do servidor associadas ao bucket em questão.
Get-S3BucketEncryption -BucketName 'amzn-s3-demo-bucket'
-
Para API obter detalhes, consulte GetBucketEncryptionem Referência de AWS Tools for PowerShell cmdlet.
-