Class: AWSCDK::Interfaces::AWSSES::MailManagerIngressPointReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSSES::MailManagerIngressPointReference
- Defined in:
- interfaces/awsses/mail_manager_ingress_point_reference.rb
Overview
A reference to a MailManagerIngressPoint resource.
Instance Attribute Summary collapse
-
#ingress_point_arn ⇒ String
readonly
The ARN of the MailManagerIngressPoint resource.
-
#ingress_point_id ⇒ String
readonly
The IngressPointId of the MailManagerIngressPoint resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(ingress_point_arn:, ingress_point_id:) ⇒ MailManagerIngressPointReference
constructor
A new instance of MailManagerIngressPointReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(ingress_point_arn:, ingress_point_id:) ⇒ MailManagerIngressPointReference
Returns a new instance of MailManagerIngressPointReference.
9 10 11 12 13 14 |
# File 'interfaces/awsses/mail_manager_ingress_point_reference.rb', line 9 def initialize(ingress_point_arn:, ingress_point_id:) @ingress_point_arn = ingress_point_arn Jsii::Type.check_type(@ingress_point_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "ingressPointArn") @ingress_point_id = ingress_point_id Jsii::Type.check_type(@ingress_point_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "ingressPointId") end |
Instance Attribute Details
#ingress_point_arn ⇒ String (readonly)
The ARN of the MailManagerIngressPoint resource.
19 20 21 |
# File 'interfaces/awsses/mail_manager_ingress_point_reference.rb', line 19 def ingress_point_arn @ingress_point_arn end |
#ingress_point_id ⇒ String (readonly)
The IngressPointId of the MailManagerIngressPoint resource.
23 24 25 |
# File 'interfaces/awsses/mail_manager_ingress_point_reference.rb', line 23 def ingress_point_id @ingress_point_id end |
Class Method Details
.jsii_properties ⇒ Object
25 26 27 28 29 30 |
# File 'interfaces/awsses/mail_manager_ingress_point_reference.rb', line 25 def self.jsii_properties { :ingress_point_arn => "ingressPointArn", :ingress_point_id => "ingressPointId", } end |
Instance Method Details
#to_jsii ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'interfaces/awsses/mail_manager_ingress_point_reference.rb', line 32 def to_jsii result = {} result.merge!({ "ingressPointArn" => @ingress_point_arn, "ingressPointId" => @ingress_point_id, }) result.compact end |