Class: Aws::ServiceCatalog::Types::CreatePortfolioShareInput

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 CreatePortfolioShareInput data as a hash:

{
  accept_language: "AcceptLanguage",
  portfolio_id: "Id", # required
  account_id: "AccountId",
  organization_node: {
    type: "ORGANIZATION", # accepts ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT
    value: "OrganizationNodeValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


784
785
786
787
788
789
790
# File 'lib/aws-sdk-servicecatalog/types.rb', line 784

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node)
  include Aws::Structure
end

#account_idString

The AWS account ID. For example, ‘123456789012`.

Returns:

  • (String)


784
785
786
787
788
789
790
# File 'lib/aws-sdk-servicecatalog/types.rb', line 784

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node)
  include Aws::Structure
end

#organization_nodeTypes::OrganizationNode

The organization node to whom you are going to share. If ‘OrganizationNode` is passed in, `PortfolioShare` will be created for the node and its children (when applies), and a `PortfolioShareToken` will be returned in the output in order for the administrator to monitor the status of the `PortfolioShare` creation process.



784
785
786
787
788
789
790
# File 'lib/aws-sdk-servicecatalog/types.rb', line 784

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node)
  include Aws::Structure
end

#portfolio_idString

The portfolio identifier.

Returns:

  • (String)


784
785
786
787
788
789
790
# File 'lib/aws-sdk-servicecatalog/types.rb', line 784

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node)
  include Aws::Structure
end