Interface GenerateDataKeyPairWithoutPlaintextResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GenerateDataKeyPairWithoutPlaintextResponse.Builder,GenerateDataKeyPairWithoutPlaintextResponse>,KmsResponse.Builder,SdkBuilder<GenerateDataKeyPairWithoutPlaintextResponse.Builder,GenerateDataKeyPairWithoutPlaintextResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GenerateDataKeyPairWithoutPlaintextResponse
public static interface GenerateDataKeyPairWithoutPlaintextResponse.Builder extends KmsResponse.Builder, SdkPojo, CopyableBuilder<GenerateDataKeyPairWithoutPlaintextResponse.Builder,GenerateDataKeyPairWithoutPlaintextResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GenerateDataKeyPairWithoutPlaintextResponse.BuilderkeyId(String keyId)The Amazon Resource Name (key ARN) of the KMS key that encrypted the private key.GenerateDataKeyPairWithoutPlaintextResponse.BuilderkeyPairSpec(String keyPairSpec)The type of data key pair that was generated.GenerateDataKeyPairWithoutPlaintextResponse.BuilderkeyPairSpec(DataKeyPairSpec keyPairSpec)The type of data key pair that was generated.GenerateDataKeyPairWithoutPlaintextResponse.BuilderprivateKeyCiphertextBlob(SdkBytes privateKeyCiphertextBlob)The encrypted copy of the private key.GenerateDataKeyPairWithoutPlaintextResponse.BuilderpublicKey(SdkBytes publicKey)The public key (in plaintext).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.kms.model.KmsResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
privateKeyCiphertextBlob
GenerateDataKeyPairWithoutPlaintextResponse.Builder privateKeyCiphertextBlob(SdkBytes privateKeyCiphertextBlob)
The encrypted copy of the private key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
- Parameters:
privateKeyCiphertextBlob- The encrypted copy of the private key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicKey
GenerateDataKeyPairWithoutPlaintextResponse.Builder publicKey(SdkBytes publicKey)
The public key (in plaintext). When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
- Parameters:
publicKey- The public key (in plaintext). When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyId
GenerateDataKeyPairWithoutPlaintextResponse.Builder keyId(String keyId)
The Amazon Resource Name (key ARN) of the KMS key that encrypted the private key.
- Parameters:
keyId- The Amazon Resource Name (key ARN) of the KMS key that encrypted the private key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyPairSpec
GenerateDataKeyPairWithoutPlaintextResponse.Builder keyPairSpec(String keyPairSpec)
The type of data key pair that was generated.
- Parameters:
keyPairSpec- The type of data key pair that was generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataKeyPairSpec,DataKeyPairSpec
-
keyPairSpec
GenerateDataKeyPairWithoutPlaintextResponse.Builder keyPairSpec(DataKeyPairSpec keyPairSpec)
The type of data key pair that was generated.
- Parameters:
keyPairSpec- The type of data key pair that was generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataKeyPairSpec,DataKeyPairSpec
-
-