Class: Aws::KinesisAnalyticsV2::Types::DeleteApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::DeleteApplicationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Note:
When making an API call, you may pass DeleteApplicationRequest data as a hash:
{
application_name: "ApplicationName", # required
create_timestamp: Time.now, # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of the application to delete.
-
#create_timestamp ⇒ Time
Use the `DescribeApplication` operation to get this value.
Instance Attribute Details
#application_name ⇒ String
The name of the application to delete.
2670 2671 2672 2673 2674 2675 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2670 class DeleteApplicationRequest < Struct.new( :application_name, :create_timestamp) SENSITIVE = [] include Aws::Structure end |
#create_timestamp ⇒ Time
Use the `DescribeApplication` operation to get this value.
2670 2671 2672 2673 2674 2675 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2670 class DeleteApplicationRequest < Struct.new( :application_name, :create_timestamp) SENSITIVE = [] include Aws::Structure end |