Class: Aws::ApplicationDiscoveryService::Types::UpdateApplicationRequest

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

Overview

Note:

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

{
  configuration_id: "ApplicationId", # required
  name: "String",
  description: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_idString

Configuration ID of the application to be updated.

Returns:

  • (String)


1275
1276
1277
1278
1279
1280
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1275

class UpdateApplicationRequest < Struct.new(
  :configuration_id,
  :name,
  :description)
  include Aws::Structure
end

#descriptionString

New description of the application to be updated.

Returns:

  • (String)


1275
1276
1277
1278
1279
1280
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1275

class UpdateApplicationRequest < Struct.new(
  :configuration_id,
  :name,
  :description)
  include Aws::Structure
end

#nameString

New name of the application to be updated.

Returns:

  • (String)


1275
1276
1277
1278
1279
1280
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1275

class UpdateApplicationRequest < Struct.new(
  :configuration_id,
  :name,
  :description)
  include Aws::Structure
end