interface SendingOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PinpointEmail.CfnConfigurationSetPropsMixin.SendingOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspinpointemail#CfnConfigurationSetPropsMixin_SendingOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pinpointemail.CfnConfigurationSetPropsMixin.SendingOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_pinpointemail.CfnConfigurationSetPropsMixin.SendingOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pinpointemail » CfnConfigurationSetPropsMixin » SendingOptionsProperty |
Used to enable or disable email sending for messages that use this configuration set in the current AWS Region.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpointemail as pinpointemail } from '@aws-cdk/cfn-property-mixins';
const sendingOptionsProperty: pinpointemail.CfnConfigurationSetPropsMixin.SendingOptionsProperty = {
sendingEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| sending | boolean | IResolvable | If true , email sending is enabled for the configuration set. |
sendingEnabled?
Type:
boolean | IResolvable
(optional)
If true , email sending is enabled for the configuration set.
If false , email sending is disabled for the configuration set.

.NET
Go
Java
Python
TypeScript