Interface StreamingLoggingConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<StreamingLoggingConfig.Builder,StreamingLoggingConfig>
,SdkBuilder<StreamingLoggingConfig.Builder,StreamingLoggingConfig>
,SdkPojo
- Enclosing class:
- StreamingLoggingConfig
public static interface StreamingLoggingConfig.Builder extends SdkPojo, CopyableBuilder<StreamingLoggingConfig.Builder,StreamingLoggingConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StreamingLoggingConfig.Builder
bucket(String bucket)
The Amazon S3 bucket to store the access logs in, for example,myawslogbucket.s3.amazonaws.com
.StreamingLoggingConfig.Builder
enabled(Boolean enabled)
Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket.StreamingLoggingConfig.Builder
prefix(String prefix)
An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example,myprefix/
.-
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
-
-
-
-
Method Detail
-
enabled
StreamingLoggingConfig.Builder enabled(Boolean enabled)
Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify
false
forEnabled
, and specifyempty Bucket
andPrefix
elements. If you specifyfalse
forEnabled
but you specify values forBucket
andPrefix
, the values are automatically deleted.- Parameters:
enabled
- Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specifyfalse
forEnabled
, and specifyempty Bucket
andPrefix
elements. If you specifyfalse
forEnabled
but you specify values forBucket
andPrefix
, the values are automatically deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucket
StreamingLoggingConfig.Builder bucket(String bucket)
The Amazon S3 bucket to store the access logs in, for example,
myawslogbucket.s3.amazonaws.com
.- Parameters:
bucket
- The Amazon S3 bucket to store the access logs in, for example,myawslogbucket.s3.amazonaws.com
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefix
StreamingLoggingConfig.Builder prefix(String prefix)
An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example,
myprefix/
. If you want to enable logging, but you don't want to specify a prefix, you still must include an emptyPrefix
element in theLogging
element.- Parameters:
prefix
- An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example,myprefix/
. If you want to enable logging, but you don't want to specify a prefix, you still must include an emptyPrefix
element in theLogging
element.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-