Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KMSMasterKeyID (0.05 sec)

  1. internal/bucket/encryption/bucket-sse-config_test.go

    		// 2. Valid XML SSE-KMS
    		{
    			inputXML:       `<ServerSideEncryptionConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Rule><ApplyServerSideEncryptionByDefault><SSEAlgorithm>aws:kms</SSEAlgorithm><KMSMasterKeyID>arn:aws:kms:my-minio-key</KMSMasterKeyID></ApplyServerSideEncryptionByDefault></Rule></ServerSideEncryptionConfiguration>`,
    			expectedErr:    nil,
    			shouldPass:     true,
    			expectedConfig: actualKMSConfig,
    			keyID:          "my-minio-key",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 16 18:28:30 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. internal/bucket/encryption/bucket-sse-config.go

    }
    
    // EncryptionAction - for ApplyServerSideEncryptionByDefault XML tag
    type EncryptionAction struct {
    	Algorithm   Algorithm `xml:"SSEAlgorithm,omitempty"`
    	MasterKeyID string    `xml:"KMSMasterKeyID,omitempty"`
    }
    
    // Rule - for ServerSideEncryptionConfiguration XML tag
    type Rule struct {
    	DefaultEncryptionAction EncryptionAction `xml:"ApplyServerSideEncryptionByDefault"`
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top