Class: Aws::KinesisAnalyticsV2::Types::CreateApplicationSnapshotRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kinesisanalyticsv2/types.rb

Overview

Note:

When making an API call, you may pass CreateApplicationSnapshotRequest data as a hash:

{
  application_name: "ApplicationName", # required
  snapshot_name: "SnapshotName", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

The name of an existing application

Returns:

  • (String)


2325
2326
2327
2328
2329
2330
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2325

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

#snapshot_nameString

An identifier for the application snapshot.

Returns:

  • (String)


2325
2326
2327
2328
2329
2330
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2325

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