Interface CustomExtension.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomExtension.Builder,CustomExtension>,SdkBuilder<CustomExtension.Builder,CustomExtension>,SdkPojo
- Enclosing class:
- CustomExtension
public static interface CustomExtension.Builder extends SdkPojo, CopyableBuilder<CustomExtension.Builder,CustomExtension>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomExtension.Buildercritical(Boolean critical)CustomExtension.BuilderobjectIdentifier(String objectIdentifier)CustomExtension.Buildervalue(String value)-
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
-
objectIdentifier
CustomExtension.Builder objectIdentifier(String objectIdentifier)
Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.
- Parameters:
objectIdentifier-Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
CustomExtension.Builder value(String value)
Specifies the base64-encoded value of the X.509 extension.
- Parameters:
value-Specifies the base64-encoded value of the X.509 extension.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
critical
CustomExtension.Builder critical(Boolean critical)
Specifies the critical flag of the X.509 extension.
- Parameters:
critical-Specifies the critical flag of the X.509 extension.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-