Interface ICfnConfigurationProps
Properties for defining a CfnConfiguration
.
Namespace: Amazon.CDK.AWS.AmazonMQ
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnConfigurationProps
Syntax (vb)
Public Interface ICfnConfigurationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AmazonMQ;
var cfnConfigurationProps = new CfnConfigurationProps {
Data = "data",
EngineType = "engineType",
Name = "name",
// the properties below are optional
AuthenticationStrategy = "authenticationStrategy",
Description = "description",
EngineVersion = "engineVersion",
Tags = new [] { new TagsEntryProperty {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
AuthenticationStrategy | Optional. |
Data | The base64-encoded XML configuration. |
Description | The description of the configuration. |
EngineType | The type of broker engine. |
EngineVersion | The version of the broker engine. |
Name | The name of the configuration. |
Tags | Create tags when creating the configuration. |
Properties
AuthenticationStrategy
Optional.
virtual string AuthenticationStrategy { get; }
Property Value
System.String
Remarks
The authentication strategy associated with the configuration. The default is SIMPLE
.
Data
The base64-encoded XML configuration.
string Data { get; }
Property Value
System.String
Remarks
Description
The description of the configuration.
virtual string Description { get; }
Property Value
System.String
Remarks
EngineType
The type of broker engine.
string EngineType { get; }
Property Value
System.String
Remarks
Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations.
EngineVersion
The version of the broker engine.
virtual string EngineVersion { get; }
Property Value
System.String
Remarks
Name
The name of the configuration.
string Name { get; }
Property Value
System.String
Remarks
This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
Tags
Create tags when creating the configuration.
virtual CfnConfiguration.ITagsEntryProperty[] Tags { get; }
Property Value
CfnConfiguration.ITagsEntryProperty[]