Class: AWSCDK::SES::CfnMailManagerTrafficPolicy::IngressIpv6ToEvaluateProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
ses/cfn_mail_manager_traffic_policy.rb

Overview

The structure for an IPv6 based condition matching on the incoming mail.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attribute:) ⇒ IngressIpv6ToEvaluateProperty

Returns a new instance of IngressIpv6ToEvaluateProperty.

Parameters:

  • attribute (String)

    An enum type representing the allowed attribute types for an IPv6 condition.



871
872
873
874
# File 'ses/cfn_mail_manager_traffic_policy.rb', line 871

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

Instance Attribute Details

#attributeString (readonly)

An enum type representing the allowed attribute types for an IPv6 condition.



880
881
882
# File 'ses/cfn_mail_manager_traffic_policy.rb', line 880

def attribute
  @attribute
end

Class Method Details

.jsii_propertiesObject



882
883
884
885
886
# File 'ses/cfn_mail_manager_traffic_policy.rb', line 882

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

Instance Method Details

#to_jsiiObject



888
889
890
891
892
893
894
# File 'ses/cfn_mail_manager_traffic_policy.rb', line 888

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