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",
  },
  share_tag_options: false,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


899
900
901
902
903
904
905
906
907
# File 'lib/aws-sdk-servicecatalog/types.rb', line 899

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node,
  :share_tag_options)
  SENSITIVE = []
  include Aws::Structure
end

#account_idString

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

Returns:

  • (String)


899
900
901
902
903
904
905
906
907
# File 'lib/aws-sdk-servicecatalog/types.rb', line 899

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node,
  :share_tag_options)
  SENSITIVE = []
  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 an ListOrganizationPortfolioAccessd 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.



899
900
901
902
903
904
905
906
907
# File 'lib/aws-sdk-servicecatalog/types.rb', line 899

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node,
  :share_tag_options)
  SENSITIVE = []
  include Aws::Structure
end

#portfolio_idString

The portfolio identifier.

Returns:

  • (String)


899
900
901
902
903
904
905
906
907
# File 'lib/aws-sdk-servicecatalog/types.rb', line 899

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node,
  :share_tag_options)
  SENSITIVE = []
  include Aws::Structure
end

#share_tag_optionsBoolean

Enables or disables ‘TagOptions ` sharing when creating the portfolio share. If this flag is not provided, TagOptions sharing is disabled.

Returns:

  • (Boolean)


899
900
901
902
903
904
905
906
907
# File 'lib/aws-sdk-servicecatalog/types.rb', line 899

class CreatePortfolioShareInput < Struct.new(
  :accept_language,
  :portfolio_id,
  :account_id,
  :organization_node,
  :share_tag_options)
  SENSITIVE = []
  include Aws::Structure
end