Interface DeleteImportedKeyMaterialRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DeleteImportedKeyMaterialRequest.Builder,DeleteImportedKeyMaterialRequest>,KmsRequest.Builder,SdkBuilder<DeleteImportedKeyMaterialRequest.Builder,DeleteImportedKeyMaterialRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DeleteImportedKeyMaterialRequest
@Mutable @NotThreadSafe public static interface DeleteImportedKeyMaterialRequest.Builder extends KmsRequest.Builder, SdkPojo, CopyableBuilder<DeleteImportedKeyMaterialRequest.Builder,DeleteImportedKeyMaterialRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteImportedKeyMaterialRequest.BuilderkeyId(String keyId)Identifies the KMS key from which you are deleting imported key material.DeleteImportedKeyMaterialRequest.BuilderkeyMaterialId(String keyMaterialId)Identifies the imported key material you are deleting.DeleteImportedKeyMaterialRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DeleteImportedKeyMaterialRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.kms.model.KmsRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
keyId
DeleteImportedKeyMaterialRequest.Builder keyId(String keyId)
Identifies the KMS key from which you are deleting imported key material. The
Originof the KMS key must beEXTERNAL.Specify the key ID or key ARN of the KMS key.
For example:
-
Key ID:
1234abcd-12ab-34cd-56ef-1234567890ab -
Key ARN:
arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
To get the key ID and key ARN for a KMS key, use ListKeys or DescribeKey.
- Parameters:
keyId- Identifies the KMS key from which you are deleting imported key material. TheOriginof the KMS key must beEXTERNAL.Specify the key ID or key ARN of the KMS key.
For example:
-
Key ID:
1234abcd-12ab-34cd-56ef-1234567890ab -
Key ARN:
arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
To get the key ID and key ARN for a KMS key, use ListKeys or DescribeKey.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
keyMaterialId
DeleteImportedKeyMaterialRequest.Builder keyMaterialId(String keyMaterialId)
Identifies the imported key material you are deleting.
If no KeyMaterialId is specified, KMS deletes the current key material.
To get the list of key material IDs associated with a KMS key, use ListKeyRotations.
- Parameters:
keyMaterialId- Identifies the imported key material you are deleting.If no KeyMaterialId is specified, KMS deletes the current key material.
To get the list of key material IDs associated with a KMS key, use ListKeyRotations.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DeleteImportedKeyMaterialRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DeleteImportedKeyMaterialRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-