Interface UpdateRealtimeLogConfigRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CloudFrontRequest.Builder
,CopyableBuilder<UpdateRealtimeLogConfigRequest.Builder,UpdateRealtimeLogConfigRequest>
,SdkBuilder<UpdateRealtimeLogConfigRequest.Builder,UpdateRealtimeLogConfigRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateRealtimeLogConfigRequest
public static interface UpdateRealtimeLogConfigRequest.Builder extends CloudFrontRequest.Builder, SdkPojo, CopyableBuilder<UpdateRealtimeLogConfigRequest.Builder,UpdateRealtimeLogConfigRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateRealtimeLogConfigRequest.Builder
arn(String arn)
The Amazon Resource Name (ARN) for this real-time log configuration.UpdateRealtimeLogConfigRequest.Builder
endPoints(Collection<EndPoint> endPoints)
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.UpdateRealtimeLogConfigRequest.Builder
endPoints(Consumer<EndPoint.Builder>... endPoints)
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.UpdateRealtimeLogConfigRequest.Builder
endPoints(EndPoint... endPoints)
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.UpdateRealtimeLogConfigRequest.Builder
fields(String... fields)
A list of fields to include in each real-time log record.UpdateRealtimeLogConfigRequest.Builder
fields(Collection<String> fields)
A list of fields to include in each real-time log record.UpdateRealtimeLogConfigRequest.Builder
name(String name)
The name for this real-time log configuration.UpdateRealtimeLogConfigRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
UpdateRealtimeLogConfigRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
UpdateRealtimeLogConfigRequest.Builder
samplingRate(Long samplingRate)
The sampling rate for this real-time log configuration.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cloudfront.model.CloudFrontRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
endPoints
UpdateRealtimeLogConfigRequest.Builder endPoints(Collection<EndPoint> endPoints)
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
- Parameters:
endPoints
- Contains information about the Amazon Kinesis data stream where you are sending real-time log data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endPoints
UpdateRealtimeLogConfigRequest.Builder endPoints(EndPoint... endPoints)
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
- Parameters:
endPoints
- Contains information about the Amazon Kinesis data stream where you are sending real-time log data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endPoints
UpdateRealtimeLogConfigRequest.Builder endPoints(Consumer<EndPoint.Builder>... endPoints)
Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
This is a convenience method that creates an instance of theEndPoint.Builder
avoiding the need to create one manually viaEndPoint.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#endPoints(List
.) - Parameters:
endPoints
- a consumer that will call methods onEndPoint.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#endPoints(java.util.Collection
)
-
fields
UpdateRealtimeLogConfigRequest.Builder fields(Collection<String> fields)
A list of fields to include in each real-time log record.
For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.
- Parameters:
fields
- A list of fields to include in each real-time log record.For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
UpdateRealtimeLogConfigRequest.Builder fields(String... fields)
A list of fields to include in each real-time log record.
For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.
- Parameters:
fields
- A list of fields to include in each real-time log record.For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateRealtimeLogConfigRequest.Builder name(String name)
The name for this real-time log configuration.
- Parameters:
name
- The name for this real-time log configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
UpdateRealtimeLogConfigRequest.Builder arn(String arn)
The Amazon Resource Name (ARN) for this real-time log configuration.
- Parameters:
arn
- The Amazon Resource Name (ARN) for this real-time log configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
samplingRate
UpdateRealtimeLogConfigRequest.Builder samplingRate(Long samplingRate)
The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. You must provide an integer between 1 and 100, inclusive.
- Parameters:
samplingRate
- The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. You must provide an integer between 1 and 100, inclusive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateRealtimeLogConfigRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateRealtimeLogConfigRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-