Interface DescribeNodeAssociationStatusResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeNodeAssociationStatusResponse.Builder,DescribeNodeAssociationStatusResponse>,OpsWorksCmResponse.Builder,SdkBuilder<DescribeNodeAssociationStatusResponse.Builder,DescribeNodeAssociationStatusResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeNodeAssociationStatusResponse
public static interface DescribeNodeAssociationStatusResponse.Builder extends OpsWorksCmResponse.Builder, SdkPojo, CopyableBuilder<DescribeNodeAssociationStatusResponse.Builder,DescribeNodeAssociationStatusResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeNodeAssociationStatusResponse.BuilderengineAttributes(Collection<EngineAttribute> engineAttributes)Attributes specific to the node association.DescribeNodeAssociationStatusResponse.BuilderengineAttributes(Consumer<EngineAttribute.Builder>... engineAttributes)Attributes specific to the node association.DescribeNodeAssociationStatusResponse.BuilderengineAttributes(EngineAttribute... engineAttributes)Attributes specific to the node association.DescribeNodeAssociationStatusResponse.BuildernodeAssociationStatus(String nodeAssociationStatus)The status of the association or disassociation request.DescribeNodeAssociationStatusResponse.BuildernodeAssociationStatus(NodeAssociationStatus nodeAssociationStatus)The status of the association or disassociation request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.opsworkscm.model.OpsWorksCmResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nodeAssociationStatus
DescribeNodeAssociationStatusResponse.Builder nodeAssociationStatus(String nodeAssociationStatus)
The status of the association or disassociation request.
Possible values:
-
SUCCESS: The association or disassociation succeeded. -
FAILED: The association or disassociation failed. -
IN_PROGRESS: The association or disassociation is still in progress.
- Parameters:
nodeAssociationStatus- The status of the association or disassociation request.Possible values:
-
SUCCESS: The association or disassociation succeeded. -
FAILED: The association or disassociation failed. -
IN_PROGRESS: The association or disassociation is still in progress.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NodeAssociationStatus,NodeAssociationStatus
-
-
nodeAssociationStatus
DescribeNodeAssociationStatusResponse.Builder nodeAssociationStatus(NodeAssociationStatus nodeAssociationStatus)
The status of the association or disassociation request.
Possible values:
-
SUCCESS: The association or disassociation succeeded. -
FAILED: The association or disassociation failed. -
IN_PROGRESS: The association or disassociation is still in progress.
- Parameters:
nodeAssociationStatus- The status of the association or disassociation request.Possible values:
-
SUCCESS: The association or disassociation succeeded. -
FAILED: The association or disassociation failed. -
IN_PROGRESS: The association or disassociation is still in progress.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NodeAssociationStatus,NodeAssociationStatus
-
-
engineAttributes
DescribeNodeAssociationStatusResponse.Builder engineAttributes(Collection<EngineAttribute> engineAttributes)
Attributes specific to the node association. In Puppet, the attibute PUPPET_NODE_CERT contains the signed certificate (the result of the CSR).
- Parameters:
engineAttributes- Attributes specific to the node association. In Puppet, the attibute PUPPET_NODE_CERT contains the signed certificate (the result of the CSR).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
engineAttributes
DescribeNodeAssociationStatusResponse.Builder engineAttributes(EngineAttribute... engineAttributes)
Attributes specific to the node association. In Puppet, the attibute PUPPET_NODE_CERT contains the signed certificate (the result of the CSR).
- Parameters:
engineAttributes- Attributes specific to the node association. In Puppet, the attibute PUPPET_NODE_CERT contains the signed certificate (the result of the CSR).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
engineAttributes
DescribeNodeAssociationStatusResponse.Builder engineAttributes(Consumer<EngineAttribute.Builder>... engineAttributes)
Attributes specific to the node association. In Puppet, the attibute PUPPET_NODE_CERT contains the signed certificate (the result of the CSR).
This is a convenience method that creates an instance of theEngineAttribute.Builderavoiding the need to create one manually viaEngineAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#engineAttributes(List.) - Parameters:
engineAttributes- a consumer that will call methods onEngineAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#engineAttributes(java.util.Collection)
-
-