Class: Aws::DevOpsAgent::Types::CreateAgentSpaceInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb

Overview

Input for creating a new AgentSpace.

Constant Summary collapse

SENSITIVE =
[:description]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

Client-provided token to ensure request idempotency. When the same token is provided in subsequent calls, the same response is returned within a 8-hour window.

A suitable default value is auto-generated. You should normally not need to pass this option.

Returns:

  • (String)


495
496
497
498
499
500
501
502
503
504
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 495

class CreateAgentSpaceInput < Struct.new(
  :name,
  :description,
  :locale,
  :kms_key_arn,
  :client_token,
  :tags)
  SENSITIVE = [:description]
  include Aws::Structure
end

#descriptionString

The description of the AgentSpace.

Returns:

  • (String)


495
496
497
498
499
500
501
502
503
504
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 495

class CreateAgentSpaceInput < Struct.new(
  :name,
  :description,
  :locale,
  :kms_key_arn,
  :client_token,
  :tags)
  SENSITIVE = [:description]
  include Aws::Structure
end

#kms_key_arnString

The ARN of the AWS Key Management Service (AWS KMS) customer managed key that's used to encrypt resources.

Returns:

  • (String)


495
496
497
498
499
500
501
502
503
504
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 495

class CreateAgentSpaceInput < Struct.new(
  :name,
  :description,
  :locale,
  :kms_key_arn,
  :client_token,
  :tags)
  SENSITIVE = [:description]
  include Aws::Structure
end

#localeString

The locale for the AgentSpace, which determines the language used in agent responses.

Returns:

  • (String)


495
496
497
498
499
500
501
502
503
504
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 495

class CreateAgentSpaceInput < Struct.new(
  :name,
  :description,
  :locale,
  :kms_key_arn,
  :client_token,
  :tags)
  SENSITIVE = [:description]
  include Aws::Structure
end

#nameString

The name of the AgentSpace.

Returns:

  • (String)


495
496
497
498
499
500
501
502
503
504
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 495

class CreateAgentSpaceInput < Struct.new(
  :name,
  :description,
  :locale,
  :kms_key_arn,
  :client_token,
  :tags)
  SENSITIVE = [:description]
  include Aws::Structure
end

#tagsHash<String,String>

Tags to add to the AgentSpace at creation time.

Returns:

  • (Hash<String,String>)


495
496
497
498
499
500
501
502
503
504
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 495

class CreateAgentSpaceInput < Struct.new(
  :name,
  :description,
  :locale,
  :kms_key_arn,
  :client_token,
  :tags)
  SENSITIVE = [:description]
  include Aws::Structure
end