Class: AWSCDK::EntityResolution::CfnIdNamespace::IdNamespaceInputSourceProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
entity_resolution/cfn_id_namespace.rb

Overview

An object containing inputSourceARN and schemaName .

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(input_source_arn:, schema_name: nil) ⇒ IdNamespaceInputSourceProperty

Returns a new instance of IdNamespaceInputSourceProperty.

Parameters:

  • input_source_arn (String)

    An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.

  • schema_name (String, nil) (defaults to: nil)

    The name of the schema.



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



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_jsiiObject



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