Interface GetConsoleOutputResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetConsoleOutputResponse.Builder,GetConsoleOutputResponse>
,Ec2Response.Builder
,SdkBuilder<GetConsoleOutputResponse.Builder,GetConsoleOutputResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetConsoleOutputResponse
public static interface GetConsoleOutputResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<GetConsoleOutputResponse.Builder,GetConsoleOutputResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetConsoleOutputResponse.Builder
instanceId(String instanceId)
The ID of the instance.GetConsoleOutputResponse.Builder
output(String output)
The console output, base64-encoded.GetConsoleOutputResponse.Builder
timestamp(Instant timestamp)
The time at which the output was last updated.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
instanceId
GetConsoleOutputResponse.Builder instanceId(String instanceId)
The ID of the instance.
- Parameters:
instanceId
- The ID of the instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
GetConsoleOutputResponse.Builder output(String output)
The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.
- Parameters:
output
- The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
GetConsoleOutputResponse.Builder timestamp(Instant timestamp)
The time at which the output was last updated.
- Parameters:
timestamp
- The time at which the output was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-