Interface ExportCertificateResponse.Builder
-
- All Superinterfaces:
AcmResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ExportCertificateResponse.Builder,ExportCertificateResponse>,SdkBuilder<ExportCertificateResponse.Builder,ExportCertificateResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ExportCertificateResponse
public static interface ExportCertificateResponse.Builder extends AcmResponse.Builder, SdkPojo, CopyableBuilder<ExportCertificateResponse.Builder,ExportCertificateResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportCertificateResponse.Buildercertificate(String certificate)The base64 PEM-encoded certificate.ExportCertificateResponse.BuildercertificateChain(String certificateChain)The base64 PEM-encoded certificate chain.ExportCertificateResponse.BuilderprivateKey(String privateKey)The encrypted private key associated with the public key in the certificate.-
Methods inherited from interface software.amazon.awssdk.services.acm.model.AcmResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
certificate
ExportCertificateResponse.Builder certificate(String certificate)
The base64 PEM-encoded certificate.
- Parameters:
certificate- The base64 PEM-encoded certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateChain
ExportCertificateResponse.Builder certificateChain(String certificateChain)
The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.
- Parameters:
certificateChain- The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
privateKey
ExportCertificateResponse.Builder privateKey(String privateKey)
The encrypted private key associated with the public key in the certificate. The key is output in PKCS #8 format and is base64 PEM-encoded.
- Parameters:
privateKey- The encrypted private key associated with the public key in the certificate. The key is output in PKCS #8 format and is base64 PEM-encoded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-