Class: Aws::ServiceCatalog::Types::OrganizationNode

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

Overview

Note:

When making an API call, you may pass OrganizationNode data as a hash:

{
  type: "ORGANIZATION", # accepts ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT
  value: "OrganizationNodeValue",
}

Information about the organization node.

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

The organization node type.

Returns:

  • (String)


3747
3748
3749
3750
3751
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3747

class OrganizationNode < Struct.new(
  :type,
  :value)
  include Aws::Structure
end

#valueString

The identifier of the organization node.

Returns:

  • (String)


3747
3748
3749
3750
3751
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3747

class OrganizationNode < Struct.new(
  :type,
  :value)
  include Aws::Structure
end