CfnConfigurationSetMixinProps
- class aws_cdk.mixins_preview.aws_pinpointemail.mixins.CfnConfigurationSetMixinProps(*, delivery_options=None, name=None, reputation_options=None, sending_options=None, tags=None, tracking_options=None)
Bases:
objectProperties for CfnConfigurationSetPropsMixin.
- Parameters:
delivery_options (
Union[IResolvable,DeliveryOptionsProperty,Dict[str,Any],None]) – An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.name (
Optional[str]) – The name of the configuration set.reputation_options (
Union[IResolvable,ReputationOptionsProperty,Dict[str,Any],None]) – An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails that you send that use the configuration set.sending_options (
Union[IResolvable,SendingOptionsProperty,Dict[str,Any],None]) – An object that defines whether or not Amazon Pinpoint can send email that you send using the configuration set.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An object that defines the tags (keys and values) that you want to associate with the configuration set.tracking_options (
Union[IResolvable,TrackingOptionsProperty,Dict[str,Any],None]) – An object that defines the open and click tracking options for emails that you send using the configuration set.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_pinpointemail import mixins as pinpointemail_mixins cfn_configuration_set_mixin_props = pinpointemail_mixins.CfnConfigurationSetMixinProps( delivery_options=pinpointemail_mixins.CfnConfigurationSetPropsMixin.DeliveryOptionsProperty( sending_pool_name="sendingPoolName" ), name="name", reputation_options=pinpointemail_mixins.CfnConfigurationSetPropsMixin.ReputationOptionsProperty( reputation_metrics_enabled=False ), sending_options=pinpointemail_mixins.CfnConfigurationSetPropsMixin.SendingOptionsProperty( sending_enabled=False ), tags=[CfnTag( key="key", value="value" )], tracking_options=pinpointemail_mixins.CfnConfigurationSetPropsMixin.TrackingOptionsProperty( custom_redirect_domain="customRedirectDomain" ) )
Attributes
- delivery_options
An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- name
The name of the configuration set.
- reputation_options
An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails that you send that use the configuration set.
- sending_options
An object that defines whether or not Amazon Pinpoint can send email that you send using the configuration set.
- tags
An object that defines the tags (keys and values) that you want to associate with the configuration set.
- tracking_options
An object that defines the open and click tracking options for emails that you send using the configuration set.