Class: AWSCDK::SES::CfnConfigurationSet::DashboardOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::SES::CfnConfigurationSet::DashboardOptionsProperty
- Defined in:
- ses/cfn_configuration_set.rb
Overview
An object containing additional settings for your VDM configuration as applicable to the Dashboard.
Instance Attribute Summary collapse
-
#engagement_metrics ⇒ String
readonly
Specifies the status of your VDM engagement metrics collection.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(engagement_metrics:) ⇒ DashboardOptionsProperty
constructor
A new instance of DashboardOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(engagement_metrics:) ⇒ DashboardOptionsProperty
Returns a new instance of DashboardOptionsProperty.
725 726 727 728 |
# File 'ses/cfn_configuration_set.rb', line 725 def initialize(engagement_metrics:) @engagement_metrics = engagement_metrics Jsii::Type.check_type(@engagement_metrics, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "engagementMetrics") end |
Instance Attribute Details
#engagement_metrics ⇒ String (readonly)
Specifies the status of your VDM engagement metrics collection. Can be one of the following:.
ENABLED– Amazon SES enables engagement metrics for the configuration set.DISABLED– Amazon SES disables engagement metrics for the configuration set.
737 738 739 |
# File 'ses/cfn_configuration_set.rb', line 737 def engagement_metrics @engagement_metrics end |
Class Method Details
.jsii_properties ⇒ Object
739 740 741 742 743 |
# File 'ses/cfn_configuration_set.rb', line 739 def self.jsii_properties { :engagement_metrics => "engagementMetrics", } end |
Instance Method Details
#to_jsii ⇒ Object
745 746 747 748 749 750 751 |
# File 'ses/cfn_configuration_set.rb', line 745 def to_jsii result = {} result.merge!({ "engagementMetrics" => @engagement_metrics, }) result.compact end |