Class: Aws::KinesisAnalyticsV2::Types::ApplicationRestoreConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#application_restore_typeString

Specifies how the application should be restored.

Returns:

  • (String)


736
737
738
739
740
741
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 736

class ApplicationRestoreConfiguration < Struct.new(
  :application_restore_type,
  :snapshot_name)
  SENSITIVE = []
  include Aws::Structure
end

#snapshot_nameString

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`.

Returns:

  • (String)


736
737
738
739
740
741
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 736

class ApplicationRestoreConfiguration < Struct.new(
  :application_restore_type,
  :snapshot_name)
  SENSITIVE = []
  include Aws::Structure
end