Class: AWSCDK::BedrockAgentCore::CfnBrowserCustom::CertificateProperty

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

Overview

A root CA certificate configuration.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(certificate_location:) ⇒ CertificateProperty

Returns a new instance of CertificateProperty.

Parameters:



844
845
846
847
# File 'bedrock_agent_core/cfn_browser_custom.rb', line 844

def initialize(certificate_location:)
  @certificate_location = certificate_location.is_a?(Hash) ? ::AWSCDK::BedrockAgentCore::CfnBrowserCustom::CertificateLocationProperty.new(**certificate_location.transform_keys(&:to_sym)) : certificate_location
  Jsii::Type.check_type(@certificate_location, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19iZWRyb2NrYWdlbnRjb3JlLkNmbkJyb3dzZXJDdXN0b20uQ2VydGlmaWNhdGVMb2NhdGlvblByb3BlcnR5In1dfX0=")), "certificateLocation")
end

Instance Attribute Details

Class Method Details

.jsii_propertiesObject



855
856
857
858
859
# File 'bedrock_agent_core/cfn_browser_custom.rb', line 855

def self.jsii_properties
  {
    :certificate_location => "certificateLocation",
  }
end

Instance Method Details

#to_jsiiObject



861
862
863
864
865
866
867
# File 'bedrock_agent_core/cfn_browser_custom.rb', line 861

def to_jsii
  result = {}
  result.merge!({
    "certificateLocation" => @certificate_location,
  })
  result.compact
end