Class: AWSCDK::Interfaces::AWSSES::VdmAttributesReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/awsses/vdm_attributes_reference.rb

Overview

A reference to a VdmAttributes resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(vdm_attributes_resource_id:) ⇒ VdmAttributesReference

Returns a new instance of VdmAttributesReference.

Parameters:

  • vdm_attributes_resource_id (String)

    The VdmAttributesResourceId of the VdmAttributes resource.



8
9
10
11
# File 'interfaces/awsses/vdm_attributes_reference.rb', line 8

def initialize(vdm_attributes_resource_id:)
  @vdm_attributes_resource_id = vdm_attributes_resource_id
  Jsii::Type.check_type(@vdm_attributes_resource_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "vdmAttributesResourceId")
end

Instance Attribute Details

#vdm_attributes_resource_idString (readonly)

The VdmAttributesResourceId of the VdmAttributes resource.

Returns:

  • (String)


16
17
18
# File 'interfaces/awsses/vdm_attributes_reference.rb', line 16

def vdm_attributes_resource_id
  @vdm_attributes_resource_id
end

Class Method Details

.jsii_propertiesObject



18
19
20
21
22
# File 'interfaces/awsses/vdm_attributes_reference.rb', line 18

def self.jsii_properties
  {
    :vdm_attributes_resource_id => "vdmAttributesResourceId",
  }
end

Instance Method Details

#to_jsiiObject



24
25
26
27
28
29
30
# File 'interfaces/awsses/vdm_attributes_reference.rb', line 24

def to_jsii
  result = {}
  result.merge!({
    "vdmAttributesResourceId" => @vdm_attributes_resource_id,
  })
  result.compact
end