Interface CfnJobPropsMixin.PresignedUrlConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobPropsMixin.PresignedUrlConfigProperty.Jsii$Proxy
- Enclosing class:
CfnJobPropsMixin
@Stability(Stable)
public static interface CfnJobPropsMixin.PresignedUrlConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.iot.*;
PresignedUrlConfigProperty presignedUrlConfigProperty = PresignedUrlConfigProperty.builder()
.expiresInSec(123)
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobPropsMixin.PresignedUrlConfigPropertystatic final classAn implementation forCfnJobPropsMixin.PresignedUrlConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExpiresInSec
How long (in seconds) pre-signed URLs are valid.Valid values are 60 - 3600, the default value is 3600 seconds.
- See Also:
-
getRoleArn
The ARN of an IAM role that grants permission to download files from the S3 bucket where the job data/updates are stored.- See Also:
-
builder
-