Class: Aws::AppConfig::Types::Configuration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::Configuration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appconfig/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:content]
Instance Attribute Summary collapse
-
#configuration_version ⇒ String
The configuration version.
-
#content ⇒ String
The content of the configuration or the configuration data.
-
#content_type ⇒ String
A standard MIME type describing the format of the configuration content.
Instance Attribute Details
#configuration_version ⇒ String
The configuration version.
279 280 281 282 283 284 285 |
# File 'lib/aws-sdk-appconfig/types.rb', line 279 class Configuration < Struct.new( :content, :configuration_version, :content_type) SENSITIVE = [:content] include Aws::Structure end |
#content ⇒ String
The content of the configuration or the configuration data.
The ‘Content` attribute only contains data if the system finds new or updated configuration data. If there is no new or updated data and `ClientConfigurationVersion` matches the version of the current configuration, AppConfig returns a `204 No Content` HTTP response code and the `Content` value will be empty.
279 280 281 282 283 284 285 |
# File 'lib/aws-sdk-appconfig/types.rb', line 279 class Configuration < Struct.new( :content, :configuration_version, :content_type) SENSITIVE = [:content] include Aws::Structure end |
#content_type ⇒ String
A standard MIME type describing the format of the configuration content. For more information, see [Content-Type].
[1]: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17
279 280 281 282 283 284 285 |
# File 'lib/aws-sdk-appconfig/types.rb', line 279 class Configuration < Struct.new( :content, :configuration_version, :content_type) SENSITIVE = [:content] include Aws::Structure end |