Class: AWSCDK::Pipes::CfnPipe::MQBrokerAccessCredentialsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Pipes::CfnPipe::MQBrokerAccessCredentialsProperty
- Defined in:
- pipes/cfn_pipe.rb
Overview
The AWS Secrets Manager secret that stores your broker credentials.
Instance Attribute Summary collapse
-
#basic_auth ⇒ String
readonly
The ARN of the Secrets Manager secret.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(basic_auth:) ⇒ MQBrokerAccessCredentialsProperty
constructor
A new instance of MQBrokerAccessCredentialsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(basic_auth:) ⇒ MQBrokerAccessCredentialsProperty
Returns a new instance of MQBrokerAccessCredentialsProperty.
1850 1851 1852 1853 |
# File 'pipes/cfn_pipe.rb', line 1850 def initialize(basic_auth:) @basic_auth = basic_auth Jsii::Type.check_type(@basic_auth, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "basicAuth") end |
Instance Attribute Details
#basic_auth ⇒ String (readonly)
The ARN of the Secrets Manager secret.
1859 1860 1861 |
# File 'pipes/cfn_pipe.rb', line 1859 def basic_auth @basic_auth end |
Class Method Details
.jsii_properties ⇒ Object
1861 1862 1863 1864 1865 |
# File 'pipes/cfn_pipe.rb', line 1861 def self.jsii_properties { :basic_auth => "basicAuth", } end |
Instance Method Details
#to_jsii ⇒ Object
1867 1868 1869 1870 1871 1872 1873 |
# File 'pipes/cfn_pipe.rb', line 1867 def to_jsii result = {} result.merge!({ "basicAuth" => @basic_auth, }) result.compact end |