Interface RevokeSigningProfileRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<RevokeSigningProfileRequest.Builder,RevokeSigningProfileRequest>,SdkBuilder<RevokeSigningProfileRequest.Builder,RevokeSigningProfileRequest>,SdkPojo,SdkRequest.Builder,SignerRequest.Builder
- Enclosing class:
- RevokeSigningProfileRequest
public static interface RevokeSigningProfileRequest.Builder extends SignerRequest.Builder, SdkPojo, CopyableBuilder<RevokeSigningProfileRequest.Builder,RevokeSigningProfileRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RevokeSigningProfileRequest.BuildereffectiveTime(Instant effectiveTime)A timestamp for when revocation of a Signing Profile should become effective.RevokeSigningProfileRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)RevokeSigningProfileRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)RevokeSigningProfileRequest.BuilderprofileName(String profileName)The name of the signing profile to be revoked.RevokeSigningProfileRequest.BuilderprofileVersion(String profileVersion)The version of the signing profile to be revoked.RevokeSigningProfileRequest.Builderreason(String reason)The reason for revoking a signing profile.-
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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.signer.model.SignerRequest.Builder
build
-
-
-
-
Method Detail
-
profileName
RevokeSigningProfileRequest.Builder profileName(String profileName)
The name of the signing profile to be revoked.
- Parameters:
profileName- The name of the signing profile to be revoked.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profileVersion
RevokeSigningProfileRequest.Builder profileVersion(String profileVersion)
The version of the signing profile to be revoked.
- Parameters:
profileVersion- The version of the signing profile to be revoked.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reason
RevokeSigningProfileRequest.Builder reason(String reason)
The reason for revoking a signing profile.
- Parameters:
reason- The reason for revoking a signing profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
effectiveTime
RevokeSigningProfileRequest.Builder effectiveTime(Instant effectiveTime)
A timestamp for when revocation of a Signing Profile should become effective. Signatures generated using the signing profile after this timestamp are not trusted.
- Parameters:
effectiveTime- A timestamp for when revocation of a Signing Profile should become effective. Signatures generated using the signing profile after this timestamp are not trusted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
RevokeSigningProfileRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
RevokeSigningProfileRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-