You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::GroundStation::Types::DeleteConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::DeleteConfigRequest
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Note:
When making an API call, you may pass DeleteConfigRequest data as a hash:
{
config_id: "String", # required
config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
}
Instance Attribute Summary collapse
-
#config_id ⇒ String
UUID of a
Config
. -
#config_type ⇒ String
Type of a
Config
.
Instance Attribute Details
#config_id ⇒ String
UUID of a Config
.
1089 1090 1091 1092 1093 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1089 class DeleteConfigRequest < Struct.new( :config_id, :config_type) include Aws::Structure end |
#config_type ⇒ String
Type of a Config
.
1089 1090 1091 1092 1093 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1089 class DeleteConfigRequest < Struct.new( :config_id, :config_type) include Aws::Structure end |