Interface StorageConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StorageConfiguration.Builder,StorageConfiguration>,SdkBuilder<StorageConfiguration.Builder,StorageConfiguration>,SdkPojo
- Enclosing class:
- StorageConfiguration
public static interface StorageConfiguration.Builder extends SdkPojo, CopyableBuilder<StorageConfiguration.Builder,StorageConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StorageConfiguration.Builderarn(String arn)ARN of the storage configuration.StorageConfiguration.Buildername(String name)Name of the storage configuration.default StorageConfiguration.Builders3(Consumer<S3StorageConfiguration.Builder> s3)An S3 destination configuration where recorded videos will be stored.StorageConfiguration.Builders3(S3StorageConfiguration s3)An S3 destination configuration where recorded videos will be stored.StorageConfiguration.Buildertags(Map<String,String> tags)Tags attached to the resource.-
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
-
arn
StorageConfiguration.Builder arn(String arn)
ARN of the storage configuration.
- Parameters:
arn- ARN of the storage configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
StorageConfiguration.Builder name(String name)
Name of the storage configuration.
- Parameters:
name- Name of the storage configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
StorageConfiguration.Builder s3(S3StorageConfiguration s3)
An S3 destination configuration where recorded videos will be stored.
- Parameters:
s3- An S3 destination configuration where recorded videos will be stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
default StorageConfiguration.Builder s3(Consumer<S3StorageConfiguration.Builder> s3)
An S3 destination configuration where recorded videos will be stored.
This is a convenience method that creates an instance of theS3StorageConfiguration.Builderavoiding the need to create one manually viaS3StorageConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3(S3StorageConfiguration).- Parameters:
s3- a consumer that will call methods onS3StorageConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3(S3StorageConfiguration)
-
tags
StorageConfiguration.Builder tags(Map<String,String> tags)
Tags attached to the resource. Array of maps, each of the form
string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.- Parameters:
tags- Tags attached to the resource. Array of maps, each of the formstring:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-