Interface CfnJob.PresignedUrlConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJob.PresignedUrlConfigProperty.Jsii$Proxy
- Enclosing class:
CfnJob
@Stability(Stable)
public static interface CfnJob.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.services.iot.*;
PresignedUrlConfigProperty presignedUrlConfigProperty = PresignedUrlConfigProperty.builder()
.expiresInSec(123)
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJob.PresignedUrlConfigPropertystatic final classAn implementation forCfnJob.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
-