Class: Aws::ServiceCatalog::Types::CreatePortfolioShareInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::CreatePortfolioShareInput
- Defined in:
- gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb
Overview
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
-
#accept_language ⇒ String
The language code.
-
#account_id ⇒ String
The AWS account ID.
-
#organization_node ⇒ Types::OrganizationNode
The organization node to whom you are going to share.
-
#portfolio_id ⇒ String
The portfolio identifier.
-
#share_tag_options ⇒ Boolean
Enables or disables
TagOptions
sharing when creating the portfolio share.
Instance Attribute Details
#accept_language ⇒ String
The language code.
en
- English (default)jp
- Japanesezh
- Chinese
899 900 901 902 903 904 905 906 907 |
# File 'gems/aws-sdk-servicecatalog/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_id ⇒ String
The AWS account ID. For example, 123456789012
.
899 900 901 902 903 904 905 906 907 |
# File 'gems/aws-sdk-servicecatalog/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_node ⇒ Types::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 'gems/aws-sdk-servicecatalog/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_id ⇒ String
The portfolio identifier.
899 900 901 902 903 904 905 906 907 |
# File 'gems/aws-sdk-servicecatalog/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_options ⇒ Boolean
Enables or disables TagOptions
sharing when creating the
portfolio share. If this flag is not provided, TagOptions sharing is
disabled.
899 900 901 902 903 904 905 906 907 |
# File 'gems/aws-sdk-servicecatalog/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 |