Interface ApplicationSettingsResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationSettingsResponse.Builder,ApplicationSettingsResponse>,SdkBuilder<ApplicationSettingsResponse.Builder,ApplicationSettingsResponse>,SdkPojo
- Enclosing class:
- ApplicationSettingsResponse
public static interface ApplicationSettingsResponse.Builder extends SdkPojo, CopyableBuilder<ApplicationSettingsResponse.Builder,ApplicationSettingsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationSettingsResponse.Builderenabled(Boolean enabled)Specifies whether persistent application settings are enabled for users during their streaming sessions.ApplicationSettingsResponse.Builders3BucketName(String s3BucketName)The S3 bucket where users’ persistent application settings are stored.ApplicationSettingsResponse.BuildersettingsGroup(String settingsGroup)The path prefix for the S3 bucket where users’ persistent application settings are stored.-
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
-
enabled
ApplicationSettingsResponse.Builder enabled(Boolean enabled)
Specifies whether persistent application settings are enabled for users during their streaming sessions.
- Parameters:
enabled- Specifies whether persistent application settings are enabled for users during their streaming sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
settingsGroup
ApplicationSettingsResponse.Builder settingsGroup(String settingsGroup)
The path prefix for the S3 bucket where users’ persistent application settings are stored.
- Parameters:
settingsGroup- The path prefix for the S3 bucket where users’ persistent application settings are stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3BucketName
ApplicationSettingsResponse.Builder s3BucketName(String s3BucketName)
The S3 bucket where users’ persistent application settings are stored. When persistent application settings are enabled for the first time for an account in an AWS Region, an S3 bucket is created. The bucket is unique to the AWS account and the Region.
- Parameters:
s3BucketName- The S3 bucket where users’ persistent application settings are stored. When persistent application settings are enabled for the first time for an account in an AWS Region, an S3 bucket is created. The bucket is unique to the AWS account and the Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-