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.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.ApplicationSettingsResponse.Builderstatus(String status)Specifies whether persistent application settings are enabled for users during their pool sessions.ApplicationSettingsResponse.Builderstatus(ApplicationSettingsStatusEnum status)Specifies whether persistent application settings are enabled for users during their pool sessions.-
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
-
status
ApplicationSettingsResponse.Builder status(String status)
Specifies whether persistent application settings are enabled for users during their pool sessions.
- Parameters:
status- Specifies whether persistent application settings are enabled for users during their pool sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationSettingsStatusEnum,ApplicationSettingsStatusEnum
-
status
ApplicationSettingsResponse.Builder status(ApplicationSettingsStatusEnum status)
Specifies whether persistent application settings are enabled for users during their pool sessions.
- Parameters:
status- Specifies whether persistent application settings are enabled for users during their pool sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationSettingsStatusEnum,ApplicationSettingsStatusEnum
-
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 Amazon Web Services Region, an S3 bucket is created. The bucket is unique to the Amazon Web Services 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 Amazon Web Services Region, an S3 bucket is created. The bucket is unique to the Amazon Web Services account and the Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-