Class: AWSCDK::RTBFabric::CfnInboundExternalLink::LinkAttributesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RTBFabric::CfnInboundExternalLink::LinkAttributesProperty
- Defined in:
- rtb_fabric/cfn_inbound_external_link.rb
Overview
Instance Attribute Summary collapse
- #customer_provided_id ⇒ String? readonly
- #responder_error_masking ⇒ AWSCDK::IResolvable, ... readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(customer_provided_id: nil, responder_error_masking: nil) ⇒ LinkAttributesProperty
constructor
A new instance of LinkAttributesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(customer_provided_id: nil, responder_error_masking: nil) ⇒ LinkAttributesProperty
Returns a new instance of LinkAttributesProperty.
645 646 647 648 649 650 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 645 def initialize(customer_provided_id: nil, responder_error_masking: nil) @customer_provided_id = customer_provided_id Jsii::Type.check_type(@customer_provided_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "customerProvidedId") unless @customer_provided_id.nil? @responder_error_masking = responder_error_masking Jsii::Type.check_type(@responder_error_masking, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfcnRiZmFicmljLkNmbkluYm91bmRFeHRlcm5hbExpbmsuUmVzcG9uZGVyRXJyb3JNYXNraW5nRm9ySHR0cENvZGVQcm9wZXJ0eSJ9XX19LCJraW5kIjoiYXJyYXkifX1dfX0=")), "responderErrorMasking") unless @responder_error_masking.nil? end |
Instance Attribute Details
#customer_provided_id ⇒ String? (readonly)
654 655 656 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 654 def customer_provided_id @customer_provided_id end |
#responder_error_masking ⇒ AWSCDK::IResolvable, ... (readonly)
657 658 659 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 657 def responder_error_masking @responder_error_masking end |
Class Method Details
.jsii_properties ⇒ Object
659 660 661 662 663 664 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 659 def self.jsii_properties { :customer_provided_id => "customerProvidedId", :responder_error_masking => "responderErrorMasking", } end |
Instance Method Details
#to_jsii ⇒ Object
666 667 668 669 670 671 672 673 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 666 def to_jsii result = {} result.merge!({ "customerProvidedId" => @customer_provided_id, "responderErrorMasking" => @responder_error_masking, }) result.compact end |