interface PresignedUrlConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnJobPropsMixin.PresignedUrlConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnJobPropsMixin_PresignedUrlConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnJobPropsMixin.PresignedUrlConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnJobPropsMixin.PresignedUrlConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnJobPropsMixin » 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/cfn-property-mixins';
const presignedUrlConfigProperty: iot.CfnJobPropsMixin.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