Interface UpdateSigningCertificateRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateSigningCertificateRequest.Builder,UpdateSigningCertificateRequest>
,IamRequest.Builder
,SdkBuilder<UpdateSigningCertificateRequest.Builder,UpdateSigningCertificateRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateSigningCertificateRequest
public static interface UpdateSigningCertificateRequest.Builder extends IamRequest.Builder, SdkPojo, CopyableBuilder<UpdateSigningCertificateRequest.Builder,UpdateSigningCertificateRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateSigningCertificateRequest.Builder
certificateId(String certificateId)
The ID of the signing certificate you want to update.UpdateSigningCertificateRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
UpdateSigningCertificateRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
UpdateSigningCertificateRequest.Builder
status(String status)
The status you want to assign to the certificate.UpdateSigningCertificateRequest.Builder
status(StatusType status)
The status you want to assign to the certificate.UpdateSigningCertificateRequest.Builder
userName(String userName)
The name of the IAM user the signing certificate belongs to.-
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.iam.model.IamRequest.Builder
build
-
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
-
userName
UpdateSigningCertificateRequest.Builder userName(String userName)
The name of the IAM user the signing certificate belongs to.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
- Parameters:
userName
- The name of the IAM user the signing certificate belongs to.This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateId
UpdateSigningCertificateRequest.Builder certificateId(String certificateId)
The ID of the signing certificate you want to update.
This parameter allows (through its regex pattern) a string of characters that can consist of any upper or lowercased letter or digit.
- Parameters:
certificateId
- The ID of the signing certificate you want to update.This parameter allows (through its regex pattern) a string of characters that can consist of any upper or lowercased letter or digit.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
UpdateSigningCertificateRequest.Builder status(String status)
The status you want to assign to the certificate.
Active
means that the certificate can be used for programmatic calls to Amazon Web ServicesInactive
means that the certificate cannot be used.- Parameters:
status
- The status you want to assign to the certificate.Active
means that the certificate can be used for programmatic calls to Amazon Web ServicesInactive
means that the certificate cannot be used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusType
,StatusType
-
status
UpdateSigningCertificateRequest.Builder status(StatusType status)
The status you want to assign to the certificate.
Active
means that the certificate can be used for programmatic calls to Amazon Web ServicesInactive
means that the certificate cannot be used.- Parameters:
status
- The status you want to assign to the certificate.Active
means that the certificate can be used for programmatic calls to Amazon Web ServicesInactive
means that the certificate cannot be used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusType
,StatusType
-
overrideConfiguration
UpdateSigningCertificateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateSigningCertificateRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-