MailManagerIngressPointReference
- class aws_cdk.interfaces.aws_ses.MailManagerIngressPointReference(*, ingress_point_arn, ingress_point_id)
Bases:
objectA reference to a MailManagerIngressPoint resource.
- Parameters:
ingress_point_arn (
str) – The ARN of the MailManagerIngressPoint resource.ingress_point_id (
str) – The IngressPointId of the MailManagerIngressPoint resource.
- 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.interfaces import aws_ses as interfaces_ses mail_manager_ingress_point_reference = interfaces_ses.MailManagerIngressPointReference( ingress_point_arn="ingressPointArn", ingress_point_id="ingressPointId" )
Attributes
- ingress_point_arn
The ARN of the MailManagerIngressPoint resource.
- ingress_point_id
The IngressPointId of the MailManagerIngressPoint resource.