Class: AWSCDK::Connect::CfnTaskTemplate::FieldIdentifierProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
connect/cfn_task_template.rb

Overview

The identifier of the task template field.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:) ⇒ FieldIdentifierProperty

Returns a new instance of FieldIdentifierProperty.

Parameters:

  • name (String)

    The name of the task template field.



743
744
745
746
# File 'connect/cfn_task_template.rb', line 743

def initialize(name:)
  @name = name
  Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name")
end

Instance Attribute Details

#nameString (readonly)

The name of the task template field.



752
753
754
# File 'connect/cfn_task_template.rb', line 752

def name
  @name
end

Class Method Details

.jsii_propertiesObject



754
755
756
757
758
# File 'connect/cfn_task_template.rb', line 754

def self.jsii_properties
  {
    :name => "name",
  }
end

Instance Method Details

#to_jsiiObject



760
761
762
763
764
765
766
# File 'connect/cfn_task_template.rb', line 760

def to_jsii
  result = {}
  result.merge!({
    "name" => @name,
  })
  result.compact
end