Class: AWSCDK::BedrockAgentCore::CfnBrowserCustom::CertificateLocationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
bedrock_agent_core/cfn_browser_custom.rb

Overview

Certificate location in Secrets Manager.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(secret_arn:) ⇒ CertificateLocationProperty

Returns a new instance of CertificateLocationProperty.

Parameters:

  • secret_arn (String)

    Secrets Manager secret ARN.



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_arnString (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_propertiesObject



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_jsiiObject



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