Interface GetTransformerResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudWatchLogsResponse.Builder,CopyableBuilder<GetTransformerResponse.Builder,GetTransformerResponse>,SdkBuilder<GetTransformerResponse.Builder,GetTransformerResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetTransformerResponse
public static interface GetTransformerResponse.Builder extends CloudWatchLogsResponse.Builder, SdkPojo, CopyableBuilder<GetTransformerResponse.Builder,GetTransformerResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetTransformerResponse.BuildercreationTime(Long creationTime)The creation time of the transformer, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.GetTransformerResponse.BuilderlastModifiedTime(Long lastModifiedTime)The date and time when this transformer was most recently modified, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.GetTransformerResponse.BuilderlogGroupIdentifier(String logGroupIdentifier)The ARN of the log group that you specified in your request.GetTransformerResponse.BuildertransformerConfig(Collection<Processor> transformerConfig)This sructure contains the configuration of the requested transformer.GetTransformerResponse.BuildertransformerConfig(Consumer<Processor.Builder>... transformerConfig)This sructure contains the configuration of the requested transformer.GetTransformerResponse.BuildertransformerConfig(Processor... transformerConfig)This sructure contains the configuration of the requested transformer.-
Methods inherited from interface software.amazon.awssdk.services.cloudwatchlogs.model.CloudWatchLogsResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
logGroupIdentifier
GetTransformerResponse.Builder logGroupIdentifier(String logGroupIdentifier)
The ARN of the log group that you specified in your request.
- Parameters:
logGroupIdentifier- The ARN of the log group that you specified in your request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
GetTransformerResponse.Builder creationTime(Long creationTime)
The creation time of the transformer, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
- Parameters:
creationTime- The creation time of the transformer, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
GetTransformerResponse.Builder lastModifiedTime(Long lastModifiedTime)
The date and time when this transformer was most recently modified, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
- Parameters:
lastModifiedTime- The date and time when this transformer was most recently modified, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transformerConfig
GetTransformerResponse.Builder transformerConfig(Collection<Processor> transformerConfig)
This sructure contains the configuration of the requested transformer.
- Parameters:
transformerConfig- This sructure contains the configuration of the requested transformer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transformerConfig
GetTransformerResponse.Builder transformerConfig(Processor... transformerConfig)
This sructure contains the configuration of the requested transformer.
- Parameters:
transformerConfig- This sructure contains the configuration of the requested transformer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transformerConfig
GetTransformerResponse.Builder transformerConfig(Consumer<Processor.Builder>... transformerConfig)
This sructure contains the configuration of the requested transformer.
This is a convenience method that creates an instance of theProcessor.Builderavoiding the need to create one manually viaProcessor.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#transformerConfig(List.) - Parameters:
transformerConfig- a consumer that will call methods onProcessor.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#transformerConfig(java.util.Collection)
-
-