Class: Aws::MQ::Types::CreateConfigurationOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::CreateConfigurationOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mq/types.rb
Overview
Returns information about the created configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
Required.
-
#authentication_strategy ⇒ String
Optional.
-
#created ⇒ Time
Required.
-
#id ⇒ String
Required.
-
#latest_revision ⇒ Types::ConfigurationRevision
The latest revision of the configuration.
-
#name ⇒ String
Required.
Instance Attribute Details
#arn ⇒ String
Required. The Amazon Resource Name (ARN) of the configuration.
819 820 821 822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-mq/types.rb', line 819 class CreateConfigurationOutput < Struct.new( :arn, :authentication_strategy, :created, :id, :latest_revision, :name) SENSITIVE = [] include Aws::Structure end |
#authentication_strategy ⇒ String
Optional. The authentication strategy associated with the configuration. The default is SIMPLE.
819 820 821 822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-mq/types.rb', line 819 class CreateConfigurationOutput < Struct.new( :arn, :authentication_strategy, :created, :id, :latest_revision, :name) SENSITIVE = [] include Aws::Structure end |
#created ⇒ Time
Required. The date and time of the configuration.
819 820 821 822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-mq/types.rb', line 819 class CreateConfigurationOutput < Struct.new( :arn, :authentication_strategy, :created, :id, :latest_revision, :name) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
Required. The unique ID that Amazon MQ generates for the configuration.
819 820 821 822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-mq/types.rb', line 819 class CreateConfigurationOutput < Struct.new( :arn, :authentication_strategy, :created, :id, :latest_revision, :name) SENSITIVE = [] include Aws::Structure end |
#latest_revision ⇒ Types::ConfigurationRevision
The latest revision of the configuration.
819 820 821 822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-mq/types.rb', line 819 class CreateConfigurationOutput < Struct.new( :arn, :authentication_strategy, :created, :id, :latest_revision, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Required. The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
819 820 821 822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-mq/types.rb', line 819 class CreateConfigurationOutput < Struct.new( :arn, :authentication_strategy, :created, :id, :latest_revision, :name) SENSITIVE = [] include Aws::Structure end |