You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::KinesisAnalyticsV2::Types::DeleteApplicationOutputRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::DeleteApplicationOutputRequest
- Defined in:
- (unknown)
Overview
When passing DeleteApplicationOutputRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
application_name: "ApplicationName", # required
current_application_version_id: 1, # required
output_id: "Id", # required
}
Instance Attribute Summary collapse
-
#application_name ⇒ String
The application name.
-
#current_application_version_id ⇒ Integer
The application version.
-
#output_id ⇒ String
The ID of the configuration to delete.
Instance Attribute Details
#application_name ⇒ String
The application name.
#current_application_version_id ⇒ Integer
The application version. You can use the DescribeApplication
operation to get the current application version. If the version
specified is not the current version, the
ConcurrentModificationException
is returned.
#output_id ⇒ String
The ID of the configuration to delete. Each output configuration that is
added to the application (either when the application is created or
later) using the AddApplicationOutput operation has a unique ID.
You need to provide the ID to uniquely identify the output configuration
that you want to delete from the application configuration. You can use
the DescribeApplication operation to get the specific OutputId
.