Class: Aws::BedrockAgentCoreControl::Types::SelfManagedLatticeResource

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

Overview

Note:

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

Note:

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

Configuration for a self-managed VPC Lattice resource. You create and manage the VPC Lattice resource gateway and resource configuration, then provide the resource configuration identifier.

Defined Under Namespace

Classes: ResourceConfigurationIdentifier, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_configuration_identifierString

The ARN or ID of the VPC Lattice resource configuration.

Returns:

  • (String)


14337
14338
14339
14340
14341
14342
14343
14344
14345
14346
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 14337

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

  class ResourceConfigurationIdentifier < SelfManagedLatticeResource; end
  class Unknown < SelfManagedLatticeResource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



14337
14338
14339
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 14337

def unknown
  @unknown
end