interface JobAttachmentSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnQueue.JobAttachmentSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnQueue_JobAttachmentSettingsProperty |
Java | software.amazon.awscdk.services.deadline.CfnQueue.JobAttachmentSettingsProperty |
Python | aws_cdk.aws_deadline.CfnQueue.JobAttachmentSettingsProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnQueue » 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-lib';
const jobAttachmentSettingsProperty: deadline.CfnQueue.JobAttachmentSettingsProperty = {
rootPrefix: 'rootPrefix',
s3BucketName: 's3BucketName',
};
Properties
| Name | Type | Description |
|---|---|---|
| root | string | The root prefix. |
| s3 | string | The Amazon S3 bucket name. |
rootPrefix
Type:
string
The root prefix.
s3BucketName
Type:
string
The Amazon S3 bucket name.

.NET
Go
Java
Python
TypeScript