Class: Aws::ElasticTranscoder::Types::Warning
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticTranscoder::Types::Warning
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elastictranscoder/types.rb
Overview
Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.
Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The code of the cross-regional warning.
-
#message ⇒ String
The message explaining what resources are in a different region from the pipeline.
Instance Attribute Details
#code ⇒ String
The code of the cross-regional warning.
4266 4267 4268 4269 4270 4271 |
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 4266 class Warning < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The message explaining what resources are in a different region from the pipeline.
<note markdown=“1”> AWS KMS keys must be in the same region as the pipeline.
</note>
4266 4267 4268 4269 4270 4271 |
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 4266 class Warning < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |