Interface GetContainerLogRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<GetContainerLogRequest.Builder,GetContainerLogRequest>,LightsailRequest.Builder,SdkBuilder<GetContainerLogRequest.Builder,GetContainerLogRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- GetContainerLogRequest
public static interface GetContainerLogRequest.Builder extends LightsailRequest.Builder, SdkPojo, CopyableBuilder<GetContainerLogRequest.Builder,GetContainerLogRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetContainerLogRequest.BuildercontainerName(String containerName)The name of the container that is either running or previously ran on the container service for which to return a log.GetContainerLogRequest.BuilderendTime(Instant endTime)The end of the time interval for which to get log data.GetContainerLogRequest.BuilderfilterPattern(String filterPattern)The pattern to use to filter the returned log events to a specific term.GetContainerLogRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)GetContainerLogRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)GetContainerLogRequest.BuilderpageToken(String pageToken)The token to advance to the next page of results from your request.GetContainerLogRequest.BuilderserviceName(String serviceName)The name of the container service for which to get a container log.GetContainerLogRequest.BuilderstartTime(Instant startTime)The start of the time interval for which to get log data.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lightsail.model.LightsailRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
serviceName
GetContainerLogRequest.Builder serviceName(String serviceName)
The name of the container service for which to get a container log.
- Parameters:
serviceName- The name of the container service for which to get a container log.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerName
GetContainerLogRequest.Builder containerName(String containerName)
The name of the container that is either running or previously ran on the container service for which to return a log.
- Parameters:
containerName- The name of the container that is either running or previously ran on the container service for which to return a log.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
GetContainerLogRequest.Builder startTime(Instant startTime)
The start of the time interval for which to get log data.
Constraints:
-
Specified in Coordinated Universal Time (UTC).
-
Specified in the Unix time format.
For example, if you wish to use a start time of October 1, 2018, at 8 PM UTC, specify
1538424000as the start time.
You can convert a human-friendly time to Unix time format using a converter like Epoch converter.
- Parameters:
startTime- The start of the time interval for which to get log data.Constraints:
-
Specified in Coordinated Universal Time (UTC).
-
Specified in the Unix time format.
For example, if you wish to use a start time of October 1, 2018, at 8 PM UTC, specify
1538424000as the start time.
You can convert a human-friendly time to Unix time format using a converter like Epoch converter.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
endTime
GetContainerLogRequest.Builder endTime(Instant endTime)
The end of the time interval for which to get log data.
Constraints:
-
Specified in Coordinated Universal Time (UTC).
-
Specified in the Unix time format.
For example, if you wish to use an end time of October 1, 2018, at 9 PM UTC, specify
1538427600as the end time.
You can convert a human-friendly time to Unix time format using a converter like Epoch converter.
- Parameters:
endTime- The end of the time interval for which to get log data.Constraints:
-
Specified in Coordinated Universal Time (UTC).
-
Specified in the Unix time format.
For example, if you wish to use an end time of October 1, 2018, at 9 PM UTC, specify
1538427600as the end time.
You can convert a human-friendly time to Unix time format using a converter like Epoch converter.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
filterPattern
GetContainerLogRequest.Builder filterPattern(String filterPattern)
The pattern to use to filter the returned log events to a specific term.
The following are a few examples of filter patterns that you can specify:
-
To return all log events, specify a filter pattern of
"". -
To exclude log events that contain the
ERRORterm, and return all other log events, specify a filter pattern of"-ERROR". -
To return log events that contain the
ERRORterm, specify a filter pattern of"ERROR". -
To return log events that contain both the
ERRORandExceptionterms, specify a filter pattern of"ERROR Exception". -
To return log events that contain the
ERRORor theExceptionterm, specify a filter pattern of"?ERROR ?Exception".
- Parameters:
filterPattern- The pattern to use to filter the returned log events to a specific term.The following are a few examples of filter patterns that you can specify:
-
To return all log events, specify a filter pattern of
"". -
To exclude log events that contain the
ERRORterm, and return all other log events, specify a filter pattern of"-ERROR". -
To return log events that contain the
ERRORterm, specify a filter pattern of"ERROR". -
To return log events that contain both the
ERRORandExceptionterms, specify a filter pattern of"ERROR Exception". -
To return log events that contain the
ERRORor theExceptionterm, specify a filter pattern of"?ERROR ?Exception".
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
pageToken
GetContainerLogRequest.Builder pageToken(String pageToken)
The token to advance to the next page of results from your request.
To get a page token, perform an initial
GetContainerLogrequest. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.- Parameters:
pageToken- The token to advance to the next page of results from your request.To get a page token, perform an initial
GetContainerLogrequest. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
GetContainerLogRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
GetContainerLogRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-