Class: Aws::AppConfig::Types::DeleteExtensionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::DeleteExtensionRequest
- Defined in:
- gems/aws-sdk-appconfig/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.
963 964 965 966 967 968 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 963 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.
963 964 965 966 967 968 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 963 class DeleteExtensionRequest < Struct.new( :extension_identifier, :version_number) SENSITIVE = [] include Aws::Structure end |