Class: AWSCDK::Interfaces::AWSPcaconnectorad::TemplateGroupAccessControlEntryReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSPcaconnectorad::TemplateGroupAccessControlEntryReference
- Defined in:
- interfaces/aws_pcaconnectorad/template_group_access_control_entry_reference.rb
Overview
A reference to a TemplateGroupAccessControlEntry resource.
Instance Attribute Summary collapse
-
#group_security_identifier ⇒ String
readonly
The GroupSecurityIdentifier of the TemplateGroupAccessControlEntry resource.
-
#template_arn ⇒ String
readonly
The TemplateArn of the TemplateGroupAccessControlEntry resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(group_security_identifier:, template_arn:) ⇒ TemplateGroupAccessControlEntryReference
constructor
A new instance of TemplateGroupAccessControlEntryReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(group_security_identifier:, template_arn:) ⇒ TemplateGroupAccessControlEntryReference
Returns a new instance of TemplateGroupAccessControlEntryReference.
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_identifier ⇒ String (readonly)
The GroupSecurityIdentifier of the TemplateGroupAccessControlEntry resource.
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_arn ⇒ String (readonly)
The TemplateArn of the TemplateGroupAccessControlEntry resource.
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_properties ⇒ Object
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_jsii ⇒ Object
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 |