Class: Aws::DevOpsAgent::Types::UpdateAgentSpaceInput

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

Overview

Input for updating an existing AgentSpace's properties. All fields except agentSpaceId are optional for partial updates.

Constant Summary collapse

SENSITIVE =
[:description]

Instance Attribute Summary collapse

Instance Attribute Details

#agent_space_idString

The unique identifier of the AgentSpace

Returns:

  • (String)


6582
6583
6584
6585
6586
6587
6588
6589
6590
# File 'lib/aws-sdk-devopsagent/types.rb', line 6582

class UpdateAgentSpaceInput < Struct.new(
  :agent_space_id,
  :name,
  :description,
  :locale,
  :preferences)
  SENSITIVE = [:description]
  include Aws::Structure
end

#descriptionString

The updated description of the AgentSpace.

Returns:

  • (String)


6582
6583
6584
6585
6586
6587
6588
6589
6590
# File 'lib/aws-sdk-devopsagent/types.rb', line 6582

class UpdateAgentSpaceInput < Struct.new(
  :agent_space_id,
  :name,
  :description,
  :locale,
  :preferences)
  SENSITIVE = [:description]
  include Aws::Structure
end

#localeString

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

Returns:

  • (String)


6582
6583
6584
6585
6586
6587
6588
6589
6590
# File 'lib/aws-sdk-devopsagent/types.rb', line 6582

class UpdateAgentSpaceInput < Struct.new(
  :agent_space_id,
  :name,
  :description,
  :locale,
  :preferences)
  SENSITIVE = [:description]
  include Aws::Structure
end

#nameString

The updated name of the AgentSpace.

Returns:

  • (String)


6582
6583
6584
6585
6586
6587
6588
6589
6590
# File 'lib/aws-sdk-devopsagent/types.rb', line 6582

class UpdateAgentSpaceInput < Struct.new(
  :agent_space_id,
  :name,
  :description,
  :locale,
  :preferences)
  SENSITIVE = [:description]
  include Aws::Structure
end

#preferencesHash<String,Boolean>

The preferences to configure on the agent space. When provided, this replaces the full set of configured preferences; preferences not included revert to their default values. When omitted, the current preferences are left unchanged.

Returns:

  • (Hash<String,Boolean>)


6582
6583
6584
6585
6586
6587
6588
6589
6590
# File 'lib/aws-sdk-devopsagent/types.rb', line 6582

class UpdateAgentSpaceInput < Struct.new(
  :agent_space_id,
  :name,
  :description,
  :locale,
  :preferences)
  SENSITIVE = [:description]
  include Aws::Structure
end