com.pulumi.aws.datasync.inputs.TaskTaskReportConfigS3DestinationArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.datasync.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class TaskTaskReportConfigS3DestinationArgs extends com.pulumi.resources.ResourceArgs {
public static final TaskTaskReportConfigS3DestinationArgs Empty = new TaskTaskReportConfigS3DestinationArgs();
/**
* Specifies the Amazon Resource Name (ARN) of the IAM policy that allows DataSync to upload a task report to your S3 bucket.
*
*/
@Import(name="bucketAccessRoleArn", required=true)
private Output bucketAccessRoleArn;
/**
* @return Specifies the Amazon Resource Name (ARN) of the IAM policy that allows DataSync to upload a task report to your S3 bucket.
*
*/
public Output bucketAccessRoleArn() {
return this.bucketAccessRoleArn;
}
/**
* Specifies the ARN of the S3 bucket where DataSync uploads your report.
*
*/
@Import(name="s3BucketArn", required=true)
private Output s3BucketArn;
/**
* @return Specifies the ARN of the S3 bucket where DataSync uploads your report.
*
*/
public Output s3BucketArn() {
return this.s3BucketArn;
}
/**
* Specifies a bucket prefix for your report.
*
*/
@Import(name="subdirectory")
private @Nullable Output subdirectory;
/**
* @return Specifies a bucket prefix for your report.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy