Class: AWSCDK::DataZone::CfnOwner::OwnerGroupPropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
data_zone/cfn_owner.rb

Overview

The properties of the domain unit owners group.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(group_identifier: nil) ⇒ OwnerGroupPropertiesProperty

Returns a new instance of OwnerGroupPropertiesProperty.

Parameters:

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

    The ID of the domain unit owners group.



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_identifierString? (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_propertiesObject



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_jsiiObject



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