interface PresignedUrlConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJob.PresignedUrlConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJob_PresignedUrlConfigProperty |
Java | software.amazon.awscdk.services.iot.CfnJob.PresignedUrlConfigProperty |
Python | aws_cdk.aws_iot.CfnJob.PresignedUrlConfigProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnJob » PresignedUrlConfigProperty |
Configuration for pre-signed S3 URLs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from 'aws-cdk-lib';
const presignedUrlConfigProperty: iot.CfnJob.PresignedUrlConfigProperty = {
expiresInSec: 123,
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| expires | number | How long (in seconds) pre-signed URLs are valid. |
| role | string | The ARN of an IAM role that grants permission to download files from the S3 bucket where the job data/updates are stored. |
expiresInSec?
Type:
number
(optional)
How long (in seconds) pre-signed URLs are valid.
Valid values are 60 - 3600, the default value is 3600 seconds.
roleArn?
Type:
string
(optional)
The ARN of an IAM role that grants permission to download files from the S3 bucket where the job data/updates are stored.

.NET
Go
Java
Python
TypeScript