Interface CfnDocument.AttachmentsSourceProperty

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

@Stability(Stable) public static interface CfnDocument.AttachmentsSourceProperty extends software.amazon.jsii.JsiiSerializable
Identifying information about a document attachment, including the file name and a key-value pair that identifies the location of an attachment to a document.

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.ssm.*;
 AttachmentsSourceProperty attachmentsSourceProperty = AttachmentsSourceProperty.builder()
         .key("key")
         .name("name")
         .values(List.of("values"))
         .build();
 

See Also: