Interface CfnQueue.JobAttachmentSettingsProperty

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

@Stability(Stable) public static interface CfnQueue.JobAttachmentSettingsProperty extends software.amazon.jsii.JsiiSerializable
The job attachment settings.

These are the Amazon S3 bucket name and the Amazon S3 prefix.

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.deadline.*;
 JobAttachmentSettingsProperty jobAttachmentSettingsProperty = JobAttachmentSettingsProperty.builder()
         .rootPrefix("rootPrefix")
         .s3BucketName("s3BucketName")
         .build();
 

See Also: