Interface CfnMessageTemplate.MessageTemplateAttachmentProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMessageTemplate.MessageTemplateAttachmentProperty.Jsii$Proxy
Enclosing class:
CfnMessageTemplate

@Stability(Stable) public static interface CfnMessageTemplate.MessageTemplateAttachmentProperty extends software.amazon.jsii.JsiiSerializable
Information about the message template attachment.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.wisdom.*;
 MessageTemplateAttachmentProperty messageTemplateAttachmentProperty = MessageTemplateAttachmentProperty.builder()
         .attachmentName("attachmentName")
         .s3PresignedUrl("s3PresignedUrl")
         // the properties below are optional
         .attachmentId("attachmentId")
         .build();
 

See Also: