Class: AWSCDK::EntityResolution::CfnIdNamespace::IdNamespaceInputSourceProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::EntityResolution::CfnIdNamespace::IdNamespaceInputSourceProperty
- Defined in:
- entity_resolution/cfn_id_namespace.rb
Overview
An object containing inputSourceARN and schemaName .
Instance Attribute Summary collapse
-
#input_source_arn ⇒ String
readonly
An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.
-
#schema_name ⇒ String?
readonly
The name of the schema.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(input_source_arn:, schema_name: nil) ⇒ IdNamespaceInputSourceProperty
constructor
A new instance of IdNamespaceInputSourceProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(input_source_arn:, schema_name: nil) ⇒ IdNamespaceInputSourceProperty
Returns a new instance of IdNamespaceInputSourceProperty.
695 696 697 698 699 700 |
# File 'entity_resolution/cfn_id_namespace.rb', line 695 def initialize(input_source_arn:, schema_name: nil) @input_source_arn = input_source_arn Jsii::Type.check_type(@input_source_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "inputSourceArn") @schema_name = schema_name Jsii::Type.check_type(@schema_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "schemaName") unless @schema_name.nil? end |
Instance Attribute Details
#input_source_arn ⇒ String (readonly)
An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.
706 707 708 |
# File 'entity_resolution/cfn_id_namespace.rb', line 706 def input_source_arn @input_source_arn end |
#schema_name ⇒ String? (readonly)
The name of the schema.
711 712 713 |
# File 'entity_resolution/cfn_id_namespace.rb', line 711 def schema_name @schema_name end |
Class Method Details
.jsii_properties ⇒ Object
713 714 715 716 717 718 |
# File 'entity_resolution/cfn_id_namespace.rb', line 713 def self.jsii_properties { :input_source_arn => "inputSourceArn", :schema_name => "schemaName", } end |
Instance Method Details
#to_jsii ⇒ Object
720 721 722 723 724 725 726 727 |
# File 'entity_resolution/cfn_id_namespace.rb', line 720 def to_jsii result = {} result.merge!({ "inputSourceArn" => @input_source_arn, "schemaName" => @schema_name, }) result.compact end |