Class: AWSCDK::BedrockAgentCore::CfnBrowserCustom::CertificateLocationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::BedrockAgentCore::CfnBrowserCustom::CertificateLocationProperty
- Defined in:
- bedrock_agent_core/cfn_browser_custom.rb
Overview
Certificate location in Secrets Manager.
Instance Attribute Summary collapse
-
#secret_arn ⇒ String
readonly
Secrets Manager secret ARN.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(secret_arn:) ⇒ CertificateLocationProperty
constructor
A new instance of CertificateLocationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(secret_arn:) ⇒ CertificateLocationProperty
Returns a new instance of CertificateLocationProperty.
811 812 813 814 |
# File 'bedrock_agent_core/cfn_browser_custom.rb', line 811 def initialize(secret_arn:) @secret_arn = secret_arn Jsii::Type.check_type(@secret_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "secretArn") end |
Instance Attribute Details
#secret_arn ⇒ String (readonly)
Secrets Manager secret ARN.
820 821 822 |
# File 'bedrock_agent_core/cfn_browser_custom.rb', line 820 def secret_arn @secret_arn end |
Class Method Details
.jsii_properties ⇒ Object
822 823 824 825 826 |
# File 'bedrock_agent_core/cfn_browser_custom.rb', line 822 def self.jsii_properties { :secret_arn => "secretArn", } end |
Instance Method Details
#to_jsii ⇒ Object
828 829 830 831 832 833 834 |
# File 'bedrock_agent_core/cfn_browser_custom.rb', line 828 def to_jsii result = {} result.merge!({ "secretArn" => @secret_arn, }) result.compact end |