Class: Aws::ElementalInference::Types::TemplateGroup

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

A name for the template group.

Returns:

  • (String)


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_urisArray<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.

Returns:

  • (Array<String>)


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