interface JobAttachmentSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnQueuePropsMixin.JobAttachmentSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnQueuePropsMixin_JobAttachmentSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnQueuePropsMixin.JobAttachmentSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnQueuePropsMixin.JobAttachmentSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnQueuePropsMixin » JobAttachmentSettingsProperty |
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 { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const jobAttachmentSettingsProperty: deadline.CfnQueuePropsMixin.JobAttachmentSettingsProperty = {
rootPrefix: 'rootPrefix',
s3BucketName: 's3BucketName',
};
Properties
| Name | Type | Description |
|---|---|---|
| root | string | The root prefix. |
| s3 | string | The Amazon S3 bucket name. |
rootPrefix?
Type:
string
(optional)
The root prefix.
s3BucketName?
Type:
string
(optional)
The Amazon S3 bucket name.

.NET
Go
Java
Python
TypeScript