Interface GetConnectionStatusResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetConnectionStatusResponse.Builder,GetConnectionStatusResponse>,SdkBuilder<GetConnectionStatusResponse.Builder,GetConnectionStatusResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- GetConnectionStatusResponse
public static interface GetConnectionStatusResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<GetConnectionStatusResponse.Builder,GetConnectionStatusResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetConnectionStatusResponse.Builderstatus(String status)The status of the connection to the managed node.GetConnectionStatusResponse.Builderstatus(ConnectionStatus status)The status of the connection to the managed node.GetConnectionStatusResponse.Buildertarget(String target)The ID of the managed node to check connection status.-
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.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
target
GetConnectionStatusResponse.Builder target(String target)
The ID of the managed node to check connection status.
- Parameters:
target- The ID of the managed node to check connection status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
GetConnectionStatusResponse.Builder status(String status)
The status of the connection to the managed node. For example, 'Connected' or 'Not Connected'.
- Parameters:
status- The status of the connection to the managed node. For example, 'Connected' or 'Not Connected'.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionStatus,ConnectionStatus
-
status
GetConnectionStatusResponse.Builder status(ConnectionStatus status)
The status of the connection to the managed node. For example, 'Connected' or 'Not Connected'.
- Parameters:
status- The status of the connection to the managed node. For example, 'Connected' or 'Not Connected'.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionStatus,ConnectionStatus
-
-