Interface RevocationContent.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<RevocationContent.Builder,RevocationContent>
,SdkBuilder<RevocationContent.Builder,RevocationContent>
,SdkPojo
- Enclosing class:
- RevocationContent
public static interface RevocationContent.Builder extends SdkPojo, CopyableBuilder<RevocationContent.Builder,RevocationContent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RevocationContent.Builder
revocationType(String revocationType)
The type of revocation file.RevocationContent.Builder
revocationType(RevocationType revocationType)
The type of revocation file.RevocationContent.Builder
s3Bucket(String s3Bucket)
The Amazon S3 bucket for the revocation file.RevocationContent.Builder
s3Key(String s3Key)
The Amazon S3 path for the revocation file.RevocationContent.Builder
s3ObjectVersion(String s3ObjectVersion)
The Amazon S3 object version of the revocation file.-
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
-
s3Bucket
RevocationContent.Builder s3Bucket(String s3Bucket)
The Amazon S3 bucket for the revocation file.
- Parameters:
s3Bucket
- The Amazon S3 bucket for the revocation file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Key
RevocationContent.Builder s3Key(String s3Key)
The Amazon S3 path for the revocation file.
- Parameters:
s3Key
- The Amazon S3 path for the revocation file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3ObjectVersion
RevocationContent.Builder s3ObjectVersion(String s3ObjectVersion)
The Amazon S3 object version of the revocation file.
- Parameters:
s3ObjectVersion
- The Amazon S3 object version of the revocation file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revocationType
RevocationContent.Builder revocationType(String revocationType)
The type of revocation file.
- Parameters:
revocationType
- The type of revocation file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RevocationType
,RevocationType
-
revocationType
RevocationContent.Builder revocationType(RevocationType revocationType)
The type of revocation file.
- Parameters:
revocationType
- The type of revocation file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RevocationType
,RevocationType
-
-