Interface ApiPassthrough.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApiPassthrough.Builder,ApiPassthrough>,SdkBuilder<ApiPassthrough.Builder,ApiPassthrough>,SdkPojo
- Enclosing class:
- ApiPassthrough
public static interface ApiPassthrough.Builder extends SdkPojo, CopyableBuilder<ApiPassthrough.Builder,ApiPassthrough>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ApiPassthrough.Builderextensions(Consumer<Extensions.Builder> extensions)Specifies X.509 extension information for a certificate.ApiPassthrough.Builderextensions(Extensions extensions)Specifies X.509 extension information for a certificate.default ApiPassthrough.Buildersubject(Consumer<ASN1Subject.Builder> subject)Sets the value of the Subject property for this object.ApiPassthrough.Buildersubject(ASN1Subject subject)Sets the value of the Subject property for this object.-
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
-
extensions
ApiPassthrough.Builder extensions(Extensions extensions)
Specifies X.509 extension information for a certificate.
- Parameters:
extensions- Specifies X.509 extension information for a certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
extensions
default ApiPassthrough.Builder extensions(Consumer<Extensions.Builder> extensions)
Specifies X.509 extension information for a certificate.
This is a convenience method that creates an instance of theExtensions.Builderavoiding the need to create one manually viaExtensions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toextensions(Extensions).- Parameters:
extensions- a consumer that will call methods onExtensions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
extensions(Extensions)
-
subject
ApiPassthrough.Builder subject(ASN1Subject subject)
Sets the value of the Subject property for this object.- Parameters:
subject- The new value for the Subject property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subject
default ApiPassthrough.Builder subject(Consumer<ASN1Subject.Builder> subject)
Sets the value of the Subject property for this object. This is a convenience method that creates an instance of theASN1Subject.Builderavoiding the need to create one manually viaASN1Subject.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosubject(ASN1Subject).- Parameters:
subject- a consumer that will call methods onASN1Subject.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
subject(ASN1Subject)
-
-