Class: Aws::ElementalInference::Types::TemplateGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElementalInference::Types::TemplateGroup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elementalinference/types.rb
Overview
A named set of graphics-compositing templates used by the crop feature, specified in the templateGroups array of a CroppingConfig.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A name for the template group.
-
#template_uris ⇒ Array<String>
An array of Amazon S3 URIs that point to the graphics-compositing templates for this group.
Instance Attribute Details
#name ⇒ String
A name for the template group.
1249 1250 1251 1252 1253 1254 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 1249 class TemplateGroup < Struct.new( :name, :template_uris) SENSITIVE = [] include Aws::Structure end |
#template_uris ⇒ Array<String>
An array of Amazon S3 URIs that point to the graphics-compositing
templates for this group. You can specify 1 or 2 URIs. Each URI must
be in the form s3://bucket-name/key. Elemental Inference reads
these templates using the IAM role that you specify in
accessRoleArn.
1249 1250 1251 1252 1253 1254 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 1249 class TemplateGroup < Struct.new( :name, :template_uris) SENSITIVE = [] include Aws::Structure end |