Class: Aws::DataSync::Types::ReportDestinationS3
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DataSync::Types::ReportDestinationS3
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-datasync/types.rb
 
Overview
Specifies the Amazon S3 bucket where DataSync uploads your [task report].
[1]: docs.aws.amazon.com/datasync/latest/userguide/task-reports.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bucket_access_role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the Amazon Resource Name (ARN) of the IAM policy that allows DataSync to upload a task report to your S3 bucket.
 - 
  
    
      #s3_bucket_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the ARN of the S3 bucket where DataSync uploads your report.
 - 
  
    
      #subdirectory  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies a bucket prefix for your report.
 
Instance Attribute Details
#bucket_access_role_arn ⇒ String
Specifies the Amazon Resource Name (ARN) of the IAM policy that allows DataSync to upload a task report to your S3 bucket. For more information, see [Allowing DataSync to upload a task report to an Amazon S3 bucket].
[1]: docs.aws.amazon.com/datasync/latest/userguide/task-reports.html
      4701 4702 4703 4704 4705 4706 4707  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 4701 class ReportDestinationS3 < Struct.new( :subdirectory, :s3_bucket_arn, :bucket_access_role_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#s3_bucket_arn ⇒ String
Specifies the ARN of the S3 bucket where DataSync uploads your report.
      4701 4702 4703 4704 4705 4706 4707  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 4701 class ReportDestinationS3 < Struct.new( :subdirectory, :s3_bucket_arn, :bucket_access_role_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#subdirectory ⇒ String
Specifies a bucket prefix for your report.
      4701 4702 4703 4704 4705 4706 4707  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 4701 class ReportDestinationS3 < Struct.new( :subdirectory, :s3_bucket_arn, :bucket_access_role_arn) SENSITIVE = [] include Aws::Structure end  |