Class: Aws::KinesisAnalyticsV2::Types::ApplicationRestoreConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::ApplicationRestoreConfiguration
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Specifies the method and snapshot to use when restarting an application using previously saved application state.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_restore_type ⇒ String
Specifies how the application should be restored.
-
#snapshot_name ⇒ String
The identifier of an existing snapshot of application state to use to restart an application.
Instance Attribute Details
#application_restore_type ⇒ String
Specifies how the application should be restored.
846 847 848 849 850 851 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 846 class ApplicationRestoreConfiguration < Struct.new( :application_restore_type, :snapshot_name) SENSITIVE = [] include Aws::Structure end |
#snapshot_name ⇒ String
The identifier of an existing snapshot of application state to use
to restart an application. The application uses this value if
RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the
ApplicationRestoreType
.
846 847 848 849 850 851 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 846 class ApplicationRestoreConfiguration < Struct.new( :application_restore_type, :snapshot_name) SENSITIVE = [] include Aws::Structure end |