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.
1004 1005 1006 1007 1008 1009 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 1004 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.
1004 1005 1006 1007 1008 1009 |
# File 'lib/aws-sdk-elementalinference/types.rb', line 1004 class TemplateGroup < Struct.new( :name, :template_uris) SENSITIVE = [] include Aws::Structure end |