Interface CfnLaunchProfile.StreamConfigurationSessionBackupProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLaunchProfile.StreamConfigurationSessionBackupProperty.Jsii$Proxy
- Enclosing class:
CfnLaunchProfile
@Stability(Stable)
public static interface CfnLaunchProfile.StreamConfigurationSessionBackupProperty
extends software.amazon.jsii.JsiiSerializable
Configures how streaming sessions are backed up when launched from this launch profile.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.nimblestudio.*;
StreamConfigurationSessionBackupProperty streamConfigurationSessionBackupProperty = StreamConfigurationSessionBackupProperty.builder()
.maxBackupsToRetain(123)
.mode("mode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnLaunchProfile.StreamConfigurationSessionBackupProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxBackupsToRetain
The maximum number of backups that each streaming session created from this launch profile can have.Default: - 0
- See Also:
-
getMode
Specifies how artists sessions are backed up.Configures backups for streaming sessions launched with this launch profile. The default value is
DEACTIVATED, which means that backups are deactivated. To allow backups, set this value toAUTOMATIC.- See Also:
-
builder
@Stability(Stable) static CfnLaunchProfile.StreamConfigurationSessionBackupProperty.Builder builder()
-