Interface KMSServerSideEncryptionIntegrationConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KMSServerSideEncryptionIntegrationConfig.Builder,KMSServerSideEncryptionIntegrationConfig>,SdkBuilder<KMSServerSideEncryptionIntegrationConfig.Builder,KMSServerSideEncryptionIntegrationConfig>,SdkPojo
- Enclosing class:
- KMSServerSideEncryptionIntegrationConfig
public static interface KMSServerSideEncryptionIntegrationConfig.Builder extends SdkPojo, CopyableBuilder<KMSServerSideEncryptionIntegrationConfig.Builder,KMSServerSideEncryptionIntegrationConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KMSServerSideEncryptionIntegrationConfig.BuilderkmsKeyId(String kmsKeyId)Describes the specified KMS key.KMSServerSideEncryptionIntegrationConfig.BuilderoptInStatus(String optInStatus)Specifies if DevOps Guru is enabled for KMS integration.KMSServerSideEncryptionIntegrationConfig.BuilderoptInStatus(OptInStatus optInStatus)Specifies if DevOps Guru is enabled for KMS integration.KMSServerSideEncryptionIntegrationConfig.Buildertype(String type)The type of KMS key used.KMSServerSideEncryptionIntegrationConfig.Buildertype(ServerSideEncryptionType type)The type of KMS key used.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
kmsKeyId
KMSServerSideEncryptionIntegrationConfig.Builder kmsKeyId(String kmsKeyId)
Describes the specified KMS key.
To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. When using an alias name, prefix it with "alias/". If you specify a predefined Amazon Web Services alias (an Amazon Web Services alias with no key ID), Amazon Web Services KMS associates the alias with an Amazon Web Services managed key and returns its KeyId and Arn in the response. To specify a KMS key in a different Amazon Web Services account, you must use the key ARN or alias ARN.
For example:
Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
Alias name: alias/ExampleAlias
Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias
- Parameters:
kmsKeyId- Describes the specified KMS key.To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. When using an alias name, prefix it with "alias/". If you specify a predefined Amazon Web Services alias (an Amazon Web Services alias with no key ID), Amazon Web Services KMS associates the alias with an Amazon Web Services managed key and returns its KeyId and Arn in the response. To specify a KMS key in a different Amazon Web Services account, you must use the key ARN or alias ARN.
For example:
Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
Alias name: alias/ExampleAlias
Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optInStatus
KMSServerSideEncryptionIntegrationConfig.Builder optInStatus(String optInStatus)
Specifies if DevOps Guru is enabled for KMS integration.
- Parameters:
optInStatus- Specifies if DevOps Guru is enabled for KMS integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OptInStatus,OptInStatus
-
optInStatus
KMSServerSideEncryptionIntegrationConfig.Builder optInStatus(OptInStatus optInStatus)
Specifies if DevOps Guru is enabled for KMS integration.
- Parameters:
optInStatus- Specifies if DevOps Guru is enabled for KMS integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OptInStatus,OptInStatus
-
type
KMSServerSideEncryptionIntegrationConfig.Builder type(String type)
The type of KMS key used. Customer managed keys are the KMS keys that you create. Amazon Web Services owned keys are keys that are owned and managed by DevOps Guru.
- Parameters:
type- The type of KMS key used. Customer managed keys are the KMS keys that you create. Amazon Web Services owned keys are keys that are owned and managed by DevOps Guru.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServerSideEncryptionType,ServerSideEncryptionType
-
type
KMSServerSideEncryptionIntegrationConfig.Builder type(ServerSideEncryptionType type)
The type of KMS key used. Customer managed keys are the KMS keys that you create. Amazon Web Services owned keys are keys that are owned and managed by DevOps Guru.
- Parameters:
type- The type of KMS key used. Customer managed keys are the KMS keys that you create. Amazon Web Services owned keys are keys that are owned and managed by DevOps Guru.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServerSideEncryptionType,ServerSideEncryptionType
-
-