Interface OutgoingCertificate.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<OutgoingCertificate.Builder,OutgoingCertificate>
,SdkBuilder<OutgoingCertificate.Builder,OutgoingCertificate>
,SdkPojo
- Enclosing class:
- OutgoingCertificate
public static interface OutgoingCertificate.Builder extends SdkPojo, CopyableBuilder<OutgoingCertificate.Builder,OutgoingCertificate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutgoingCertificate.Builder
certificateArn(String certificateArn)
The certificate ARN.OutgoingCertificate.Builder
certificateId(String certificateId)
The certificate ID.OutgoingCertificate.Builder
creationDate(Instant creationDate)
The certificate creation date.OutgoingCertificate.Builder
transferDate(Instant transferDate)
The date the transfer was initiated.OutgoingCertificate.Builder
transferMessage(String transferMessage)
The transfer message.OutgoingCertificate.Builder
transferredTo(String transferredTo)
The Amazon Web Services account to which the transfer was made.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
certificateArn
OutgoingCertificate.Builder certificateArn(String certificateArn)
The certificate ARN.
- Parameters:
certificateArn
- The certificate ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateId
OutgoingCertificate.Builder certificateId(String certificateId)
The certificate ID.
- Parameters:
certificateId
- The certificate ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transferredTo
OutgoingCertificate.Builder transferredTo(String transferredTo)
The Amazon Web Services account to which the transfer was made.
- Parameters:
transferredTo
- The Amazon Web Services account to which the transfer was made.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transferDate
OutgoingCertificate.Builder transferDate(Instant transferDate)
The date the transfer was initiated.
- Parameters:
transferDate
- The date the transfer was initiated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transferMessage
OutgoingCertificate.Builder transferMessage(String transferMessage)
The transfer message.
- Parameters:
transferMessage
- The transfer message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
OutgoingCertificate.Builder creationDate(Instant creationDate)
The certificate creation date.
- Parameters:
creationDate
- The certificate creation date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-