Class: AWSCDK::Glue::CfnCatalog::TargetRedshiftCatalogProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Glue::CfnCatalog::TargetRedshiftCatalogProperty
- Defined in:
- glue/cfn_catalog.rb
Overview
A structure that describes a target catalog for resource linking.
Instance Attribute Summary collapse
-
#catalog_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the catalog resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(catalog_arn:) ⇒ TargetRedshiftCatalogProperty
constructor
A new instance of TargetRedshiftCatalogProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(catalog_arn:) ⇒ TargetRedshiftCatalogProperty
Returns a new instance of TargetRedshiftCatalogProperty.
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_arn ⇒ String (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_properties ⇒ Object
975 976 977 978 979 |
# File 'glue/cfn_catalog.rb', line 975 def self.jsii_properties { :catalog_arn => "catalogArn", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |