Class: Aws::KinesisAnalyticsV2::Types::DeleteApplicationSnapshotRequest

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 DeleteApplicationSnapshotRequest data as a hash:

{
  application_name: "ApplicationName", # required
  snapshot_name: "SnapshotName", # required
  snapshot_creation_timestamp: Time.now, # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

The name of an existing application.

Returns:

  • (String)


2705
2706
2707
2708
2709
2710
2711
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2705

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

#snapshot_creation_timestampTime

The creation timestamp of the application snapshot to delete. You can retrieve this value using or .

Returns:

  • (Time)


2705
2706
2707
2708
2709
2710
2711
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2705

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

#snapshot_nameString

The identifier for the snapshot delete.

Returns:

  • (String)


2705
2706
2707
2708
2709
2710
2711
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2705

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