Class: Aws::AppConfig::Types::UpdateApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::UpdateApplicationRequest
- Defined in:
- gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb
Overview
Note:
When making an API call, you may pass UpdateApplicationRequest data as a hash:
{
application_id: "Id", # required
name: "Name",
description: "Description",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_id ⇒ String
The application ID.
-
#description ⇒ String
A description of the application.
-
#name ⇒ String
The name of the application.
Instance Attribute Details
#application_id ⇒ String
The application ID.
1941 1942 1943 1944 1945 1946 1947 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 1941 class UpdateApplicationRequest < Struct.new( :application_id, :name, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the application.
1941 1942 1943 1944 1945 1946 1947 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 1941 class UpdateApplicationRequest < Struct.new( :application_id, :name, :description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the application.
1941 1942 1943 1944 1945 1946 1947 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 1941 class UpdateApplicationRequest < Struct.new( :application_id, :name, :description) SENSITIVE = [] include Aws::Structure end |