Interface DeriveSharedSecretRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DeriveSharedSecretRequest.Builder,DeriveSharedSecretRequest>,KmsRequest.Builder,SdkBuilder<DeriveSharedSecretRequest.Builder,DeriveSharedSecretRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DeriveSharedSecretRequest
@Mutable @NotThreadSafe public static interface DeriveSharedSecretRequest.Builder extends KmsRequest.Builder, SdkPojo, CopyableBuilder<DeriveSharedSecretRequest.Builder,DeriveSharedSecretRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DeriveSharedSecretRequest.BuilderdryRun(Boolean dryRun)Checks if your request will succeed.DeriveSharedSecretRequest.BuildergrantTokens(String... grantTokens)A list of grant tokens.DeriveSharedSecretRequest.BuildergrantTokens(Collection<String> grantTokens)A list of grant tokens.DeriveSharedSecretRequest.BuilderkeyAgreementAlgorithm(String keyAgreementAlgorithm)Specifies the key agreement algorithm used to derive the shared secret.DeriveSharedSecretRequest.BuilderkeyAgreementAlgorithm(KeyAgreementAlgorithmSpec keyAgreementAlgorithm)Specifies the key agreement algorithm used to derive the shared secret.DeriveSharedSecretRequest.BuilderkeyId(String keyId)Identifies an asymmetric NIST-standard ECC or SM2 (China Regions only) KMS key.DeriveSharedSecretRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DeriveSharedSecretRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)DeriveSharedSecretRequest.BuilderpublicKey(SdkBytes publicKey)Specifies the public key in your peer's NIST-standard elliptic curve (ECC) or SM2 (China Regions only) key pair.default DeriveSharedSecretRequest.Builderrecipient(Consumer<RecipientInfo.Builder> recipient)A signed attestation document from an Amazon Web Services Nitro enclave or NitroTPM, and the encryption algorithm to use with the public key in the attestation document.DeriveSharedSecretRequest.Builderrecipient(RecipientInfo recipient)A signed attestation document from an Amazon Web Services Nitro enclave or NitroTPM, and the encryption algorithm to use with the public key in the attestation document.-
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
DeriveSharedSecretRequest.Builder keyId(String keyId)
Identifies an asymmetric NIST-standard ECC or SM2 (China Regions only) KMS key. KMS uses the private key in the specified key pair to derive the shared secret. The key usage of the KMS key must be
KEY_AGREEMENT. To find theKeyUsageof a KMS key, use the DescribeKey operation.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/". 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
To get the key ID and key ARN for a KMS key, use ListKeys or DescribeKey. To get the alias name and alias ARN, use ListAliases.
- Parameters:
keyId- Identifies an asymmetric NIST-standard ECC or SM2 (China Regions only) KMS key. KMS uses the private key in the specified key pair to derive the shared secret. The key usage of the KMS key must beKEY_AGREEMENT. To find theKeyUsageof a KMS key, use the DescribeKey operation.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/". 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
To get the key ID and key ARN for a KMS key, use ListKeys or DescribeKey. To get the alias name and alias ARN, use ListAliases.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
keyAgreementAlgorithm
DeriveSharedSecretRequest.Builder keyAgreementAlgorithm(String keyAgreementAlgorithm)
Specifies the key agreement algorithm used to derive the shared secret. The only valid value is
ECDH.- Parameters:
keyAgreementAlgorithm- Specifies the key agreement algorithm used to derive the shared secret. The only valid value isECDH.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
KeyAgreementAlgorithmSpec,KeyAgreementAlgorithmSpec
-
keyAgreementAlgorithm
DeriveSharedSecretRequest.Builder keyAgreementAlgorithm(KeyAgreementAlgorithmSpec keyAgreementAlgorithm)
Specifies the key agreement algorithm used to derive the shared secret. The only valid value is
ECDH.- Parameters:
keyAgreementAlgorithm- Specifies the key agreement algorithm used to derive the shared secret. The only valid value isECDH.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
KeyAgreementAlgorithmSpec,KeyAgreementAlgorithmSpec
-
publicKey
DeriveSharedSecretRequest.Builder publicKey(SdkBytes publicKey)
Specifies the public key in your peer's NIST-standard elliptic curve (ECC) or SM2 (China Regions only) key pair.
The public key must be a DER-encoded X.509 public key, also known as
SubjectPublicKeyInfo(SPKI), as defined in RFC 5280.GetPublicKey returns the public key of an asymmetric KMS key pair in the required DER-encoded format.
If you use Amazon Web Services CLI version 1, you must provide the DER-encoded X.509 public key in a file. Otherwise, the Amazon Web Services CLI Base64-encodes the public key a second time, resulting in a
ValidationException.You can specify the public key as binary data in a file using fileb (
fileb://<path-to-file>) or in-line using a Base64 encoded string.- Parameters:
publicKey- Specifies the public key in your peer's NIST-standard elliptic curve (ECC) or SM2 (China Regions only) key pair.The public key must be a DER-encoded X.509 public key, also known as
SubjectPublicKeyInfo(SPKI), as defined in RFC 5280.GetPublicKey returns the public key of an asymmetric KMS key pair in the required DER-encoded format.
If you use Amazon Web Services CLI version 1, you must provide the DER-encoded X.509 public key in a file. Otherwise, the Amazon Web Services CLI Base64-encodes the public key a second time, resulting in a
ValidationException.You can specify the public key as binary data in a file using fileb (
fileb://<path-to-file>) or in-line using a Base64 encoded string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
grantTokens
DeriveSharedSecretRequest.Builder grantTokens(Collection<String> grantTokens)
A list of grant tokens.
Use a grant token when your permission to call this operation comes from a new grant that has not yet achieved eventual consistency. For more information, see Grant token and Using a grant token in the Key Management Service Developer Guide.
- Parameters:
grantTokens- A list of grant tokens.Use a grant token when your permission to call this operation comes from a new grant that has not yet achieved eventual consistency. For more information, see Grant token and Using a grant token in the Key Management Service Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
grantTokens
DeriveSharedSecretRequest.Builder grantTokens(String... grantTokens)
A list of grant tokens.
Use a grant token when your permission to call this operation comes from a new grant that has not yet achieved eventual consistency. For more information, see Grant token and Using a grant token in the Key Management Service Developer Guide.
- Parameters:
grantTokens- A list of grant tokens.Use a grant token when your permission to call this operation comes from a new grant that has not yet achieved eventual consistency. For more information, see Grant token and Using a grant token in the Key Management Service Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dryRun
DeriveSharedSecretRequest.Builder dryRun(Boolean dryRun)
Checks if your request will succeed.
DryRunis an optional parameter.To learn more about how to use this parameter, see Testing your permissions in the Key Management Service Developer Guide.
- Parameters:
dryRun- Checks if your request will succeed.DryRunis an optional parameter.To learn more about how to use this parameter, see Testing your permissions in the Key Management Service Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recipient
DeriveSharedSecretRequest.Builder recipient(RecipientInfo recipient)
A signed attestation document from an Amazon Web Services Nitro enclave or NitroTPM, and the encryption algorithm to use with the public key in the attestation document. The only valid encryption algorithm is
RSAES_OAEP_SHA_256.This parameter only supports attestation documents for Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM. To call DeriveSharedSecret generate an attestation document use either Amazon Web Services Nitro Enclaves SDK for an Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM tools for Amazon Web Services NitroTPM. Then use the Recipient parameter from any Amazon Web Services SDK to provide the attestation document for the attested environment.
When you use this parameter, instead of returning a plaintext copy of the shared secret, KMS encrypts the plaintext shared secret under the public key in the attestation document, and returns the resulting ciphertext in the
CiphertextForRecipientfield in the response. This ciphertext can be decrypted only with the private key in the attested environment. TheCiphertextBlobfield in the response contains the encrypted shared secret derived from the KMS key specified by theKeyIdparameter and public key specified by thePublicKeyparameter. TheSharedSecretfield in the response is null or empty.For information about the interaction between KMS and Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM, see Cryptographic attestation support in KMS in the Key Management Service Developer Guide.
- Parameters:
recipient- A signed attestation document from an Amazon Web Services Nitro enclave or NitroTPM, and the encryption algorithm to use with the public key in the attestation document. The only valid encryption algorithm isRSAES_OAEP_SHA_256.This parameter only supports attestation documents for Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM. To call DeriveSharedSecret generate an attestation document use either Amazon Web Services Nitro Enclaves SDK for an Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM tools for Amazon Web Services NitroTPM. Then use the Recipient parameter from any Amazon Web Services SDK to provide the attestation document for the attested environment.
When you use this parameter, instead of returning a plaintext copy of the shared secret, KMS encrypts the plaintext shared secret under the public key in the attestation document, and returns the resulting ciphertext in the
CiphertextForRecipientfield in the response. This ciphertext can be decrypted only with the private key in the attested environment. TheCiphertextBlobfield in the response contains the encrypted shared secret derived from the KMS key specified by theKeyIdparameter and public key specified by thePublicKeyparameter. TheSharedSecretfield in the response is null or empty.For information about the interaction between KMS and Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM, see Cryptographic attestation support in KMS in the Key Management Service Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recipient
default DeriveSharedSecretRequest.Builder recipient(Consumer<RecipientInfo.Builder> recipient)
A signed attestation document from an Amazon Web Services Nitro enclave or NitroTPM, and the encryption algorithm to use with the public key in the attestation document. The only valid encryption algorithm is
RSAES_OAEP_SHA_256.This parameter only supports attestation documents for Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM. To call DeriveSharedSecret generate an attestation document use either Amazon Web Services Nitro Enclaves SDK for an Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM tools for Amazon Web Services NitroTPM. Then use the Recipient parameter from any Amazon Web Services SDK to provide the attestation document for the attested environment.
When you use this parameter, instead of returning a plaintext copy of the shared secret, KMS encrypts the plaintext shared secret under the public key in the attestation document, and returns the resulting ciphertext in the
CiphertextForRecipientfield in the response. This ciphertext can be decrypted only with the private key in the attested environment. TheCiphertextBlobfield in the response contains the encrypted shared secret derived from the KMS key specified by theKeyIdparameter and public key specified by thePublicKeyparameter. TheSharedSecretfield in the response is null or empty.For information about the interaction between KMS and Amazon Web Services Nitro Enclaves or Amazon Web Services NitroTPM, see Cryptographic attestation support in KMS in the Key Management Service Developer Guide.
This is a convenience method that creates an instance of theRecipientInfo.Builderavoiding the need to create one manually viaRecipientInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torecipient(RecipientInfo).- Parameters:
recipient- a consumer that will call methods onRecipientInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
recipient(RecipientInfo)
-
overrideConfiguration
DeriveSharedSecretRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DeriveSharedSecretRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-