Class: Aws::Connect::Types::CreateViewRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:name]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

A unique Id for each create view request to avoid duplicate view creation. For example, the view is idempotent ClientToken is provided.

Returns:

  • (String)


3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-connect/types.rb', line 3797

class CreateViewRequest < Struct.new(
  :instance_id,
  :client_token,
  :status,
  :content,
  :description,
  :name,
  :tags)
  SENSITIVE = [:name]
  include Aws::Structure
end

#contentTypes::ViewInputContent

View content containing all content necessary to render a view except for runtime input data.

The total uncompressed content has a maximum file size of 400kB.



3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-connect/types.rb', line 3797

class CreateViewRequest < Struct.new(
  :instance_id,
  :client_token,
  :status,
  :content,
  :description,
  :name,
  :tags)
  SENSITIVE = [:name]
  include Aws::Structure
end

#descriptionString

The description of the view.

Returns:

  • (String)


3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-connect/types.rb', line 3797

class CreateViewRequest < Struct.new(
  :instance_id,
  :client_token,
  :status,
  :content,
  :description,
  :name,
  :tags)
  SENSITIVE = [:name]
  include Aws::Structure
end

#instance_idString

The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.

Returns:

  • (String)


3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-connect/types.rb', line 3797

class CreateViewRequest < Struct.new(
  :instance_id,
  :client_token,
  :status,
  :content,
  :description,
  :name,
  :tags)
  SENSITIVE = [:name]
  include Aws::Structure
end

#nameString

The name of the view.

Returns:

  • (String)


3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-connect/types.rb', line 3797

class CreateViewRequest < Struct.new(
  :instance_id,
  :client_token,
  :status,
  :content,
  :description,
  :name,
  :tags)
  SENSITIVE = [:name]
  include Aws::Structure
end

#statusString

Indicates the view status as either ‘SAVED` or `PUBLISHED`. The `PUBLISHED` status will initiate validation on the content.

Returns:

  • (String)


3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-connect/types.rb', line 3797

class CreateViewRequest < Struct.new(
  :instance_id,
  :client_token,
  :status,
  :content,
  :description,
  :name,
  :tags)
  SENSITIVE = [:name]
  include Aws::Structure
end

#tagsHash<String,String>

The tags associated with the view resource (not specific to view version).These tags can be used to organize, track, or control access for this resource. For example, \{ “tags”: {“key1”:“value1”, “key2”:“value2”\} \}.

Returns:

  • (Hash<String,String>)


3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-connect/types.rb', line 3797

class CreateViewRequest < Struct.new(
  :instance_id,
  :client_token,
  :status,
  :content,
  :description,
  :name,
  :tags)
  SENSITIVE = [:name]
  include Aws::Structure
end