Class: AWSCDK::DataZone::CfnConnection::AthenaPropertiesInputProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataZone::CfnConnection::AthenaPropertiesInputProperty
- Defined in:
- data_zone/cfn_connection.rb
Overview
The Amazon Athena properties of a connection.
Instance Attribute Summary collapse
-
#workgroup_name ⇒ String
readonly
The Amazon Athena workgroup name of a connection.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(workgroup_name:) ⇒ AthenaPropertiesInputProperty
constructor
A new instance of AthenaPropertiesInputProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(workgroup_name:) ⇒ AthenaPropertiesInputProperty
Returns a new instance of AthenaPropertiesInputProperty.
718 719 720 721 |
# File 'data_zone/cfn_connection.rb', line 718 def initialize(workgroup_name:) @workgroup_name = workgroup_name Jsii::Type.check_type(@workgroup_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "workgroupName") end |
Instance Attribute Details
#workgroup_name ⇒ String (readonly)
The Amazon Athena workgroup name of a connection.
727 728 729 |
# File 'data_zone/cfn_connection.rb', line 727 def workgroup_name @workgroup_name end |
Class Method Details
.jsii_properties ⇒ Object
729 730 731 732 733 |
# File 'data_zone/cfn_connection.rb', line 729 def self.jsii_properties { :workgroup_name => "workgroupName", } end |
Instance Method Details
#to_jsii ⇒ Object
735 736 737 738 739 740 741 |
# File 'data_zone/cfn_connection.rb', line 735 def to_jsii result = {} result.merge!({ "workgroupName" => @workgroup_name, }) result.compact end |