Class: Aws::AppConfig::Types::ValidateConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::ValidateConfigurationRequest
- Defined in:
- gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb
Overview
Note:
When making an API call, you may pass ValidateConfigurationRequest data as a hash:
{
application_id: "Id", # required
configuration_profile_id: "Id", # required
configuration_version: "Version", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_id ⇒ String
The application ID.
-
#configuration_profile_id ⇒ String
The configuration profile ID.
-
#configuration_version ⇒ String
The version of the configuration to validate.
Instance Attribute Details
#application_id ⇒ String
The application ID.
2154 2155 2156 2157 2158 2159 2160 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 2154 class ValidateConfigurationRequest < Struct.new( :application_id, :configuration_profile_id, :configuration_version) SENSITIVE = [] include Aws::Structure end |
#configuration_profile_id ⇒ String
The configuration profile ID.
2154 2155 2156 2157 2158 2159 2160 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 2154 class ValidateConfigurationRequest < Struct.new( :application_id, :configuration_profile_id, :configuration_version) SENSITIVE = [] include Aws::Structure end |
#configuration_version ⇒ String
The version of the configuration to validate.
2154 2155 2156 2157 2158 2159 2160 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 2154 class ValidateConfigurationRequest < Struct.new( :application_id, :configuration_profile_id, :configuration_version) SENSITIVE = [] include Aws::Structure end |