Class: Aws::AppConfig::Types::DeleteExtensionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::DeleteExtensionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appconfig/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#extension_identifier ⇒ String
The name, ID, or Amazon Resource Name (ARN) of the extension you want to delete.
-
#version_number ⇒ Integer
A specific version of an extension to delete.
Instance Attribute Details
#extension_identifier ⇒ String
The name, ID, or Amazon Resource Name (ARN) of the extension you want to delete.
965 966 967 968 969 970 |
# File 'lib/aws-sdk-appconfig/types.rb', line 965 class DeleteExtensionRequest < Struct.new( :extension_identifier, :version_number) SENSITIVE = [] include Aws::Structure end |
#version_number ⇒ Integer
A specific version of an extension to delete. If omitted, the highest version is deleted.
965 966 967 968 969 970 |
# File 'lib/aws-sdk-appconfig/types.rb', line 965 class DeleteExtensionRequest < Struct.new( :extension_identifier, :version_number) SENSITIVE = [] include Aws::Structure end |