Class: AWSCDK::Interfaces::AWSPcaconnectorad::TemplateGroupAccessControlEntryReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/aws_pcaconnectorad/template_group_access_control_entry_reference.rb

Overview

A reference to a TemplateGroupAccessControlEntry resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(group_security_identifier:, template_arn:) ⇒ TemplateGroupAccessControlEntryReference

Returns a new instance of TemplateGroupAccessControlEntryReference.

Parameters:

  • group_security_identifier (String)

    The GroupSecurityIdentifier of the TemplateGroupAccessControlEntry resource.

  • template_arn (String)

    The TemplateArn of the TemplateGroupAccessControlEntry resource.



9
10
11
12
13
14
# File 'interfaces/aws_pcaconnectorad/template_group_access_control_entry_reference.rb', line 9

def initialize(group_security_identifier:, template_arn:)
  @group_security_identifier = group_security_identifier
  Jsii::Type.check_type(@group_security_identifier, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "groupSecurityIdentifier")
  @template_arn = template_arn
  Jsii::Type.check_type(@template_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "templateArn")
end

Instance Attribute Details

#group_security_identifierString (readonly)

The GroupSecurityIdentifier of the TemplateGroupAccessControlEntry resource.

Returns:

  • (String)


19
20
21
# File 'interfaces/aws_pcaconnectorad/template_group_access_control_entry_reference.rb', line 19

def group_security_identifier
  @group_security_identifier
end

#template_arnString (readonly)

The TemplateArn of the TemplateGroupAccessControlEntry resource.

Returns:

  • (String)


23
24
25
# File 'interfaces/aws_pcaconnectorad/template_group_access_control_entry_reference.rb', line 23

def template_arn
  @template_arn
end

Class Method Details

.jsii_propertiesObject



25
26
27
28
29
30
# File 'interfaces/aws_pcaconnectorad/template_group_access_control_entry_reference.rb', line 25

def self.jsii_properties
  {
    :group_security_identifier => "groupSecurityIdentifier",
    :template_arn => "templateArn",
  }
end

Instance Method Details

#to_jsiiObject



32
33
34
35
36
37
38
39
# File 'interfaces/aws_pcaconnectorad/template_group_access_control_entry_reference.rb', line 32

def to_jsii
  result = {}
  result.merge!({
    "groupSecurityIdentifier" => @group_security_identifier,
    "templateArn" => @template_arn,
  })
  result.compact
end