Class: AWSCDK::Glue::CfnCatalog::TargetRedshiftCatalogProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
glue/cfn_catalog.rb

Overview

A structure that describes a target catalog for resource linking.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(catalog_arn:) ⇒ TargetRedshiftCatalogProperty

Returns a new instance of TargetRedshiftCatalogProperty.

Parameters:

  • catalog_arn (String)

    The Amazon Resource Name (ARN) of the catalog resource.



964
965
966
967
# File 'glue/cfn_catalog.rb', line 964

def initialize(catalog_arn:)
  @catalog_arn = catalog_arn
  Jsii::Type.check_type(@catalog_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "catalogArn")
end

Instance Attribute Details

#catalog_arnString (readonly)

The Amazon Resource Name (ARN) of the catalog resource.



973
974
975
# File 'glue/cfn_catalog.rb', line 973

def catalog_arn
  @catalog_arn
end

Class Method Details

.jsii_propertiesObject



975
976
977
978
979
# File 'glue/cfn_catalog.rb', line 975

def self.jsii_properties
  {
    :catalog_arn => "catalogArn",
  }
end

Instance Method Details

#to_jsiiObject



981
982
983
984
985
986
987
# File 'glue/cfn_catalog.rb', line 981

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