Class: Aws::ResourceGroupsTaggingAPI::Types::DescribeReportCreationOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroupsTaggingAPI::Types::DescribeReportCreationOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resourcegroupstaggingapi/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_message ⇒ String
Details of the common errors that all operations return.
-
#s3_location ⇒ String
The path to the Amazon S3 bucket where the report was stored on creation.
-
#status ⇒ String
Reports the status of the operation.
Instance Attribute Details
#error_message ⇒ String
Details of the common errors that all operations return.
122 123 124 125 126 127 128 |
# File 'lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 122 class DescribeReportCreationOutput < Struct.new( :status, :s3_location, :error_message) SENSITIVE = [] include Aws::Structure end |
#s3_location ⇒ String
The path to the Amazon S3 bucket where the report was stored on creation.
122 123 124 125 126 127 128 |
# File 'lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 122 class DescribeReportCreationOutput < Struct.new( :status, :s3_location, :error_message) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Reports the status of the operation.
The operation status can be one of the following:
-
‘RUNNING` - Report creation is in progress.
-
‘SUCCEEDED` - Report creation is complete. You can open the report from the Amazon S3 bucket that you specified when you ran `StartReportCreation`.
-
‘FAILED` - Report creation timed out or the Amazon S3 bucket is not accessible.
-
‘NO REPORT` - No report was generated in the last 90 days.
122 123 124 125 126 127 128 |
# File 'lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 122 class DescribeReportCreationOutput < Struct.new( :status, :s3_location, :error_message) SENSITIVE = [] include Aws::Structure end |