Interface ServerCertificateMetadata.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ServerCertificateMetadata.Builder,ServerCertificateMetadata>
,SdkBuilder<ServerCertificateMetadata.Builder,ServerCertificateMetadata>
,SdkPojo
- Enclosing class:
- ServerCertificateMetadata
public static interface ServerCertificateMetadata.Builder extends SdkPojo, CopyableBuilder<ServerCertificateMetadata.Builder,ServerCertificateMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerCertificateMetadata.Builder
arn(String arn)
The Amazon Resource Name (ARN) specifying the server certificate.ServerCertificateMetadata.Builder
expiration(Instant expiration)
The date on which the certificate is set to expire.ServerCertificateMetadata.Builder
path(String path)
The path to the server certificate.ServerCertificateMetadata.Builder
serverCertificateId(String serverCertificateId)
The stable and unique string identifying the server certificate.ServerCertificateMetadata.Builder
serverCertificateName(String serverCertificateName)
The name that identifies the server certificate.ServerCertificateMetadata.Builder
uploadDate(Instant uploadDate)
The date when the server certificate was uploaded.-
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
-
-
-
-
Method Detail
-
path
ServerCertificateMetadata.Builder path(String path)
The path to the server certificate. For more information about paths, see IAM identifiers in the IAM User Guide.
- Parameters:
path
- The path to the server certificate. For more information about paths, see IAM identifiers in the IAM User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serverCertificateName
ServerCertificateMetadata.Builder serverCertificateName(String serverCertificateName)
The name that identifies the server certificate.
- Parameters:
serverCertificateName
- The name that identifies the server certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serverCertificateId
ServerCertificateMetadata.Builder serverCertificateId(String serverCertificateId)
The stable and unique string identifying the server certificate. For more information about IDs, see IAM identifiers in the IAM User Guide.
- Parameters:
serverCertificateId
- The stable and unique string identifying the server certificate. For more information about IDs, see IAM identifiers in the IAM User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
ServerCertificateMetadata.Builder arn(String arn)
The Amazon Resource Name (ARN) specifying the server certificate. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide.
- Parameters:
arn
- The Amazon Resource Name (ARN) specifying the server certificate. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uploadDate
ServerCertificateMetadata.Builder uploadDate(Instant uploadDate)
The date when the server certificate was uploaded.
- Parameters:
uploadDate
- The date when the server certificate was uploaded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expiration
ServerCertificateMetadata.Builder expiration(Instant expiration)
The date on which the certificate is set to expire.
- Parameters:
expiration
- The date on which the certificate is set to expire.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-