Class: AWSCDK::DataZone::CfnOwner::OwnerGroupPropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataZone::CfnOwner::OwnerGroupPropertiesProperty
- Defined in:
- data_zone/cfn_owner.rb
Overview
The properties of the domain unit owners group.
Instance Attribute Summary collapse
-
#group_identifier ⇒ String?
readonly
The ID of the domain unit owners group.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(group_identifier: nil) ⇒ OwnerGroupPropertiesProperty
constructor
A new instance of OwnerGroupPropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(group_identifier: nil) ⇒ OwnerGroupPropertiesProperty
Returns a new instance of OwnerGroupPropertiesProperty.
548 549 550 551 |
# File 'data_zone/cfn_owner.rb', line 548 def initialize(group_identifier: nil) @group_identifier = group_identifier Jsii::Type.check_type(@group_identifier, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "groupIdentifier") unless @group_identifier.nil? end |
Instance Attribute Details
#group_identifier ⇒ String? (readonly)
The ID of the domain unit owners group.
557 558 559 |
# File 'data_zone/cfn_owner.rb', line 557 def group_identifier @group_identifier end |
Class Method Details
.jsii_properties ⇒ Object
559 560 561 562 563 |
# File 'data_zone/cfn_owner.rb', line 559 def self.jsii_properties { :group_identifier => "groupIdentifier", } end |
Instance Method Details
#to_jsii ⇒ Object
565 566 567 568 569 570 571 |
# File 'data_zone/cfn_owner.rb', line 565 def to_jsii result = {} result.merge!({ "groupIdentifier" => @group_identifier, }) result.compact end |