Class: Aws::BedrockAgentCoreControl::Types::ComputeConfiguration

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

Overview

Note:

ComputeConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

ComputeConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ComputeConfiguration corresponding to the set member.

The compute configuration for a capacity provider. This structure defines the type and settings of the compute resources used to launch instances.

Defined Under Namespace

Classes: Ec2Configuration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ec2_configuration ⇒ Types::Ec2Configuration

The Amazon EC2 compute configuration for the capacity provider.



1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1658

class ComputeConfiguration < Struct.new(
  :ec2_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Ec2Configuration < ComputeConfiguration; end
  class Unknown < ComputeConfiguration; end
end

#unknown ⇒ Object

Returns the value of attribute unknown

Returns:

  • (Object) —

    the current value of unknown



1658
1659
1660
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1658

def unknown
  @unknown
end