servicecatalog

package module
v0.26.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 30, 2020 License: Apache-2.0 Imports: 28 Imported by: 0

Documentation

Index

Constants

View Source
const ServiceAPIVersion = "2015-12-10"
View Source
const ServiceID = "Service Catalog"

Variables

This section is empty.

Functions

func AddResolveEndpointMiddleware

func AddResolveEndpointMiddleware(stack *middleware.Stack, options ResolveEndpointMiddlewareOptions)

func NewDefaultEndpointResolver

func NewDefaultEndpointResolver() *internalendpoints.Resolver

NewDefaultEndpointResolver constructs a new service endpoint resolver

func RemoveResolveEndpointMiddleware

func RemoveResolveEndpointMiddleware(stack *middleware.Stack) error

Types

type AcceptPortfolioShareInput

type AcceptPortfolioShareInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The type of shared portfolios to accept. The default is to accept imported
	// portfolios.
	//
	//     * AWS_ORGANIZATIONS - Accept portfolios shared by the master
	// account of your organization.
	//
	//     * IMPORTED - Accept imported portfolios.
	//
	//
	// * AWS_SERVICECATALOG - Not supported. (Throws ResourceNotFoundException.)
	//
	// For
	// example, aws servicecatalog accept-portfolio-share --portfolio-id
	// "port-2qwzkwxt3y5fk" --portfolio-share-type AWS_ORGANIZATIONS
	PortfolioShareType types.PortfolioShareType
	// The portfolio identifier.
	PortfolioId *string
}

type AcceptPortfolioShareOutput

type AcceptPortfolioShareOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type AssociateBudgetWithResourceInput

type AssociateBudgetWithResourceInput struct {
	// The name of the budget you want to associate.
	BudgetName *string
	// The resource identifier. Either a portfolio-id or a product-id.
	ResourceId *string
}

type AssociateBudgetWithResourceOutput

type AssociateBudgetWithResourceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type AssociatePrincipalWithPortfolioInput

type AssociatePrincipalWithPortfolioInput struct {
	// The principal type. The supported value is IAM.
	PrincipalType types.PrincipalType
	// The ARN of the principal (IAM user, role, or group).
	PrincipalARN *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The portfolio identifier.
	PortfolioId *string
}

type AssociatePrincipalWithPortfolioOutput

type AssociatePrincipalWithPortfolioOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type AssociateProductWithPortfolioInput

type AssociateProductWithPortfolioInput struct {
	// The identifier of the source portfolio.
	SourcePortfolioId *string
	// The portfolio identifier.
	PortfolioId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The product identifier.
	ProductId *string
}

type AssociateProductWithPortfolioOutput

type AssociateProductWithPortfolioOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type AssociateServiceActionWithProvisioningArtifactInput

type AssociateServiceActionWithProvisioningArtifactInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The product identifier. For example, prod-abcdzk7xy33qa.
	ProductId *string
	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	ServiceActionId *string
	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	ProvisioningArtifactId *string
}

type AssociateServiceActionWithProvisioningArtifactOutput

type AssociateServiceActionWithProvisioningArtifactOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type AssociateTagOptionWithResourceInput

type AssociateTagOptionWithResourceInput struct {
	// The TagOption identifier.
	TagOptionId *string
	// The resource identifier.
	ResourceId *string
}

type AssociateTagOptionWithResourceOutput

type AssociateTagOptionWithResourceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type BatchAssociateServiceActionWithProvisioningArtifactInput

type BatchAssociateServiceActionWithProvisioningArtifactInput struct {
	// One or more associations, each consisting of the Action ID, the Product ID, and
	// the Provisioning Artifact ID.
	ServiceActionAssociations []*types.ServiceActionAssociation
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type BatchAssociateServiceActionWithProvisioningArtifactOutput

type BatchAssociateServiceActionWithProvisioningArtifactOutput struct {
	// An object that contains a list of errors, along with information to help you
	// identify the self-service action.
	FailedServiceActionAssociations []*types.FailedServiceActionAssociation

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type BatchDisassociateServiceActionFromProvisioningArtifactInput

type BatchDisassociateServiceActionFromProvisioningArtifactInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// One or more associations, each consisting of the Action ID, the Product ID, and
	// the Provisioning Artifact ID.
	ServiceActionAssociations []*types.ServiceActionAssociation
}

type BatchDisassociateServiceActionFromProvisioningArtifactOutput

type BatchDisassociateServiceActionFromProvisioningArtifactOutput struct {
	// An object that contains a list of errors, along with information to help you
	// identify the self-service action.
	FailedServiceActionAssociations []*types.FailedServiceActionAssociation

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type Client

type Client struct {
	// contains filtered or unexported fields
}

AWS Service Catalog AWS Service Catalog (https://aws.amazon.com/servicecatalog/) enables organizations to create and manage catalogs of IT services that are approved for use on AWS. To get the most out of this documentation, you should be familiar with the terminology discussed in AWS Service Catalog Concepts (http://docs.aws.amazon.com/servicecatalog/latest/adminguide/what-is_concepts.html).

func New

func New(options Options, optFns ...func(*Options)) *Client

New returns an initialized Client based on the functional options. Provide additional functional options to further configure the behavior of the client, such as changing the client's endpoint or adding custom middleware behavior.

func NewFromConfig

func NewFromConfig(cfg aws.Config, optFns ...func(*Options)) *Client

NewFromConfig returns a new client from the provided config.

func (*Client) AcceptPortfolioShare

func (c *Client) AcceptPortfolioShare(ctx context.Context, params *AcceptPortfolioShareInput, optFns ...func(*Options)) (*AcceptPortfolioShareOutput, error)

Accepts an offer to share the specified portfolio.

func (*Client) AssociateBudgetWithResource

func (c *Client) AssociateBudgetWithResource(ctx context.Context, params *AssociateBudgetWithResourceInput, optFns ...func(*Options)) (*AssociateBudgetWithResourceOutput, error)

Associates the specified budget with the specified resource.

func (*Client) AssociatePrincipalWithPortfolio

func (c *Client) AssociatePrincipalWithPortfolio(ctx context.Context, params *AssociatePrincipalWithPortfolioInput, optFns ...func(*Options)) (*AssociatePrincipalWithPortfolioOutput, error)

Associates the specified principal ARN with the specified portfolio.

func (*Client) AssociateProductWithPortfolio

func (c *Client) AssociateProductWithPortfolio(ctx context.Context, params *AssociateProductWithPortfolioInput, optFns ...func(*Options)) (*AssociateProductWithPortfolioOutput, error)

Associates the specified product with the specified portfolio. A delegated admin is authorized to invoke this command.

func (*Client) AssociateServiceActionWithProvisioningArtifact

func (c *Client) AssociateServiceActionWithProvisioningArtifact(ctx context.Context, params *AssociateServiceActionWithProvisioningArtifactInput, optFns ...func(*Options)) (*AssociateServiceActionWithProvisioningArtifactOutput, error)

Associates a self-service action with a provisioning artifact.

func (*Client) AssociateTagOptionWithResource

func (c *Client) AssociateTagOptionWithResource(ctx context.Context, params *AssociateTagOptionWithResourceInput, optFns ...func(*Options)) (*AssociateTagOptionWithResourceOutput, error)

Associate the specified TagOption with the specified portfolio or product.

func (*Client) BatchAssociateServiceActionWithProvisioningArtifact

func (c *Client) BatchAssociateServiceActionWithProvisioningArtifact(ctx context.Context, params *BatchAssociateServiceActionWithProvisioningArtifactInput, optFns ...func(*Options)) (*BatchAssociateServiceActionWithProvisioningArtifactOutput, error)

Associates multiple self-service actions with provisioning artifacts.

func (*Client) BatchDisassociateServiceActionFromProvisioningArtifact

func (c *Client) BatchDisassociateServiceActionFromProvisioningArtifact(ctx context.Context, params *BatchDisassociateServiceActionFromProvisioningArtifactInput, optFns ...func(*Options)) (*BatchDisassociateServiceActionFromProvisioningArtifactOutput, error)

Disassociates a batch of self-service actions from the specified provisioning artifact.

func (*Client) CopyProduct

func (c *Client) CopyProduct(ctx context.Context, params *CopyProductInput, optFns ...func(*Options)) (*CopyProductOutput, error)

Copies the specified source product to the specified target product or a new product. You can copy a product to the same account or another account. You can copy a product to the same region or another region. This operation is performed asynchronously. To track the progress of the operation, use DescribeCopyProductStatus ().

func (*Client) CreateConstraint

func (c *Client) CreateConstraint(ctx context.Context, params *CreateConstraintInput, optFns ...func(*Options)) (*CreateConstraintOutput, error)

Creates a constraint. A delegated admin is authorized to invoke this command.

func (*Client) CreatePortfolio

func (c *Client) CreatePortfolio(ctx context.Context, params *CreatePortfolioInput, optFns ...func(*Options)) (*CreatePortfolioOutput, error)

Creates a portfolio. A delegated admin is authorized to invoke this command.

func (*Client) CreatePortfolioShare

func (c *Client) CreatePortfolioShare(ctx context.Context, params *CreatePortfolioShareInput, optFns ...func(*Options)) (*CreatePortfolioShareOutput, error)

Shares the specified portfolio with the specified account or organization node. Shares to an organization node can only be created by the master account of an organization or by a delegated administrator. You can share portfolios to an organization, an organizational unit, or a specific account. Note that if a delegated admin is de-registered, they can no longer create portfolio shares. AWSOrganizationsAccess must be enabled in order to create a portfolio share to an organization node. You can't share a shared resource. This includes portfolios that contain a shared product.

func (*Client) CreateProduct

func (c *Client) CreateProduct(ctx context.Context, params *CreateProductInput, optFns ...func(*Options)) (*CreateProductOutput, error)

Creates a product. A delegated admin is authorized to invoke this command.

func (*Client) CreateProvisionedProductPlan

func (c *Client) CreateProvisionedProductPlan(ctx context.Context, params *CreateProvisionedProductPlanInput, optFns ...func(*Options)) (*CreateProvisionedProductPlanOutput, error)

Creates a plan. A plan includes the list of resources to be created (when provisioning a new product) or modified (when updating a provisioned product) when the plan is executed. You can create one plan per provisioned product. To create a plan for an existing provisioned product, the product status must be AVAILBLE or TAINTED. To view the resource changes in the change set, use DescribeProvisionedProductPlan (). To create or modify the provisioned product, use ExecuteProvisionedProductPlan ().

func (*Client) CreateProvisioningArtifact

func (c *Client) CreateProvisioningArtifact(ctx context.Context, params *CreateProvisioningArtifactInput, optFns ...func(*Options)) (*CreateProvisioningArtifactOutput, error)

Creates a provisioning artifact (also known as a version) for the specified product. You cannot create a provisioning artifact for a product that was shared with you.

func (*Client) CreateServiceAction

func (c *Client) CreateServiceAction(ctx context.Context, params *CreateServiceActionInput, optFns ...func(*Options)) (*CreateServiceActionOutput, error)

Creates a self-service action.

func (*Client) CreateTagOption

func (c *Client) CreateTagOption(ctx context.Context, params *CreateTagOptionInput, optFns ...func(*Options)) (*CreateTagOptionOutput, error)

Creates a TagOption.

func (*Client) DeleteConstraint

func (c *Client) DeleteConstraint(ctx context.Context, params *DeleteConstraintInput, optFns ...func(*Options)) (*DeleteConstraintOutput, error)

Deletes the specified constraint. A delegated admin is authorized to invoke this command.

func (*Client) DeletePortfolio

func (c *Client) DeletePortfolio(ctx context.Context, params *DeletePortfolioInput, optFns ...func(*Options)) (*DeletePortfolioOutput, error)

Deletes the specified portfolio. You cannot delete a portfolio if it was shared with you or if it has associated products, users, constraints, or shared accounts. A delegated admin is authorized to invoke this command.

func (*Client) DeletePortfolioShare

func (c *Client) DeletePortfolioShare(ctx context.Context, params *DeletePortfolioShareInput, optFns ...func(*Options)) (*DeletePortfolioShareOutput, error)

Stops sharing the specified portfolio with the specified account or organization node. Shares to an organization node can only be deleted by the master account of an organization or by a delegated administrator. Note that if a delegated admin is de-registered, portfolio shares created from that account are removed.

func (*Client) DeleteProduct

func (c *Client) DeleteProduct(ctx context.Context, params *DeleteProductInput, optFns ...func(*Options)) (*DeleteProductOutput, error)

Deletes the specified product. You cannot delete a product if it was shared with you or is associated with a portfolio. A delegated admin is authorized to invoke this command.

func (*Client) DeleteProvisionedProductPlan

func (c *Client) DeleteProvisionedProductPlan(ctx context.Context, params *DeleteProvisionedProductPlanInput, optFns ...func(*Options)) (*DeleteProvisionedProductPlanOutput, error)

Deletes the specified plan.

func (*Client) DeleteProvisioningArtifact

func (c *Client) DeleteProvisioningArtifact(ctx context.Context, params *DeleteProvisioningArtifactInput, optFns ...func(*Options)) (*DeleteProvisioningArtifactOutput, error)

Deletes the specified provisioning artifact (also known as a version) for the specified product. You cannot delete a provisioning artifact associated with a product that was shared with you. You cannot delete the last provisioning artifact for a product, because a product must have at least one provisioning artifact.

func (*Client) DeleteServiceAction

func (c *Client) DeleteServiceAction(ctx context.Context, params *DeleteServiceActionInput, optFns ...func(*Options)) (*DeleteServiceActionOutput, error)

Deletes a self-service action.

func (*Client) DeleteTagOption

func (c *Client) DeleteTagOption(ctx context.Context, params *DeleteTagOptionInput, optFns ...func(*Options)) (*DeleteTagOptionOutput, error)

Deletes the specified TagOption. You cannot delete a TagOption if it is associated with a product or portfolio.

func (*Client) DescribeConstraint

func (c *Client) DescribeConstraint(ctx context.Context, params *DescribeConstraintInput, optFns ...func(*Options)) (*DescribeConstraintOutput, error)

Gets information about the specified constraint.

func (*Client) DescribeCopyProductStatus

func (c *Client) DescribeCopyProductStatus(ctx context.Context, params *DescribeCopyProductStatusInput, optFns ...func(*Options)) (*DescribeCopyProductStatusOutput, error)

Gets the status of the specified copy product operation.

func (*Client) DescribePortfolio

func (c *Client) DescribePortfolio(ctx context.Context, params *DescribePortfolioInput, optFns ...func(*Options)) (*DescribePortfolioOutput, error)

Gets information about the specified portfolio. A delegated admin is authorized to invoke this command.

func (*Client) DescribePortfolioShareStatus

func (c *Client) DescribePortfolioShareStatus(ctx context.Context, params *DescribePortfolioShareStatusInput, optFns ...func(*Options)) (*DescribePortfolioShareStatusOutput, error)

Gets the status of the specified portfolio share operation. This API can only be called by the master account in the organization or by a delegated admin.

func (*Client) DescribeProduct

func (c *Client) DescribeProduct(ctx context.Context, params *DescribeProductInput, optFns ...func(*Options)) (*DescribeProductOutput, error)

Gets information about the specified product.

func (*Client) DescribeProductAsAdmin

func (c *Client) DescribeProductAsAdmin(ctx context.Context, params *DescribeProductAsAdminInput, optFns ...func(*Options)) (*DescribeProductAsAdminOutput, error)

Gets information about the specified product. This operation is run with administrator access.

func (*Client) DescribeProductView

func (c *Client) DescribeProductView(ctx context.Context, params *DescribeProductViewInput, optFns ...func(*Options)) (*DescribeProductViewOutput, error)

Gets information about the specified product.

func (*Client) DescribeProvisionedProduct

func (c *Client) DescribeProvisionedProduct(ctx context.Context, params *DescribeProvisionedProductInput, optFns ...func(*Options)) (*DescribeProvisionedProductOutput, error)

Gets information about the specified provisioned product.

func (*Client) DescribeProvisionedProductPlan

func (c *Client) DescribeProvisionedProductPlan(ctx context.Context, params *DescribeProvisionedProductPlanInput, optFns ...func(*Options)) (*DescribeProvisionedProductPlanOutput, error)

Gets information about the resource changes for the specified plan.

func (*Client) DescribeProvisioningArtifact

func (c *Client) DescribeProvisioningArtifact(ctx context.Context, params *DescribeProvisioningArtifactInput, optFns ...func(*Options)) (*DescribeProvisioningArtifactOutput, error)

Gets information about the specified provisioning artifact (also known as a version) for the specified product.

func (*Client) DescribeProvisioningParameters

func (c *Client) DescribeProvisioningParameters(ctx context.Context, params *DescribeProvisioningParametersInput, optFns ...func(*Options)) (*DescribeProvisioningParametersOutput, error)

Gets information about the configuration required to provision the specified product using the specified provisioning artifact. If the output contains a TagOption key with an empty list of values, there is a TagOption conflict for that key. The end user cannot take action to fix the conflict, and launch is not blocked. In subsequent calls to ProvisionProduct (), do not include conflicted TagOption keys as tags, or this causes the error "Parameter validation failed: Missing required parameter in Tags[N]:Value". Tag the provisioned product with the value sc-tagoption-conflict-portfolioId-productId.

func (*Client) DescribeRecord

func (c *Client) DescribeRecord(ctx context.Context, params *DescribeRecordInput, optFns ...func(*Options)) (*DescribeRecordOutput, error)

Gets information about the specified request operation. Use this operation after calling a request operation (for example, ProvisionProduct (), TerminateProvisionedProduct (), or UpdateProvisionedProduct ()). If a provisioned product was transferred to a new owner using UpdateProvisionedProductProperties (), the new owner will be able to describe all past records for that product. The previous owner will no longer be able to describe the records, but will be able to use ListRecordHistory () to see the product's history from when he was the owner.

func (*Client) DescribeServiceAction

func (c *Client) DescribeServiceAction(ctx context.Context, params *DescribeServiceActionInput, optFns ...func(*Options)) (*DescribeServiceActionOutput, error)

Describes a self-service action.

func (*Client) DescribeServiceActionExecutionParameters

func (c *Client) DescribeServiceActionExecutionParameters(ctx context.Context, params *DescribeServiceActionExecutionParametersInput, optFns ...func(*Options)) (*DescribeServiceActionExecutionParametersOutput, error)

Finds the default parameters for a specific self-service action on a specific provisioned product and returns a map of the results to the user.

func (*Client) DescribeTagOption

func (c *Client) DescribeTagOption(ctx context.Context, params *DescribeTagOptionInput, optFns ...func(*Options)) (*DescribeTagOptionOutput, error)

Gets information about the specified TagOption.

func (*Client) DisableAWSOrganizationsAccess

func (c *Client) DisableAWSOrganizationsAccess(ctx context.Context, params *DisableAWSOrganizationsAccessInput, optFns ...func(*Options)) (*DisableAWSOrganizationsAccessOutput, error)

Disable portfolio sharing through AWS Organizations feature. This feature will not delete your current shares but it will prevent you from creating new shares throughout your organization. Current shares will not be in sync with your organization structure if it changes after calling this API. This API can only be called by the master account in the organization. This API can't be invoked if there are active delegated administrators in the organization. Note that a delegated administrator is not authorized to invoke DisableAWSOrganizationsAccess.

func (*Client) DisassociateBudgetFromResource

func (c *Client) DisassociateBudgetFromResource(ctx context.Context, params *DisassociateBudgetFromResourceInput, optFns ...func(*Options)) (*DisassociateBudgetFromResourceOutput, error)

Disassociates the specified budget from the specified resource.

func (*Client) DisassociatePrincipalFromPortfolio

func (c *Client) DisassociatePrincipalFromPortfolio(ctx context.Context, params *DisassociatePrincipalFromPortfolioInput, optFns ...func(*Options)) (*DisassociatePrincipalFromPortfolioOutput, error)

Disassociates a previously associated principal ARN from a specified portfolio.

func (*Client) DisassociateProductFromPortfolio

func (c *Client) DisassociateProductFromPortfolio(ctx context.Context, params *DisassociateProductFromPortfolioInput, optFns ...func(*Options)) (*DisassociateProductFromPortfolioOutput, error)

Disassociates the specified product from the specified portfolio. A delegated admin is authorized to invoke this command.

func (*Client) DisassociateServiceActionFromProvisioningArtifact

func (c *Client) DisassociateServiceActionFromProvisioningArtifact(ctx context.Context, params *DisassociateServiceActionFromProvisioningArtifactInput, optFns ...func(*Options)) (*DisassociateServiceActionFromProvisioningArtifactOutput, error)

Disassociates the specified self-service action association from the specified provisioning artifact.

func (*Client) DisassociateTagOptionFromResource

func (c *Client) DisassociateTagOptionFromResource(ctx context.Context, params *DisassociateTagOptionFromResourceInput, optFns ...func(*Options)) (*DisassociateTagOptionFromResourceOutput, error)

Disassociates the specified TagOption from the specified resource.

func (*Client) EnableAWSOrganizationsAccess

func (c *Client) EnableAWSOrganizationsAccess(ctx context.Context, params *EnableAWSOrganizationsAccessInput, optFns ...func(*Options)) (*EnableAWSOrganizationsAccessOutput, error)

Enable portfolio sharing feature through AWS Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the master account in the organization. By calling this API Service Catalog will make a call to organizations:EnableAWSServiceAccess on your behalf so that your shares can be in sync with any changes in your AWS Organizations structure. Note that a delegated administrator is not authorized to invoke EnableAWSOrganizationsAccess.

func (*Client) ExecuteProvisionedProductPlan

func (c *Client) ExecuteProvisionedProductPlan(ctx context.Context, params *ExecuteProvisionedProductPlanInput, optFns ...func(*Options)) (*ExecuteProvisionedProductPlanOutput, error)

Provisions or modifies a product based on the resource changes for the specified plan.

func (*Client) ExecuteProvisionedProductServiceAction

func (c *Client) ExecuteProvisionedProductServiceAction(ctx context.Context, params *ExecuteProvisionedProductServiceActionInput, optFns ...func(*Options)) (*ExecuteProvisionedProductServiceActionOutput, error)

Executes a self-service action against a provisioned product.

func (*Client) GetAWSOrganizationsAccessStatus

func (c *Client) GetAWSOrganizationsAccessStatus(ctx context.Context, params *GetAWSOrganizationsAccessStatusInput, optFns ...func(*Options)) (*GetAWSOrganizationsAccessStatusOutput, error)

Get the Access Status for AWS Organization portfolio share feature. This API can only be called by the master account in the organization or by a delegated admin.

func (*Client) ListAcceptedPortfolioShares

func (c *Client) ListAcceptedPortfolioShares(ctx context.Context, params *ListAcceptedPortfolioSharesInput, optFns ...func(*Options)) (*ListAcceptedPortfolioSharesOutput, error)

Lists all portfolios for which sharing was accepted by this account.

func (*Client) ListBudgetsForResource

func (c *Client) ListBudgetsForResource(ctx context.Context, params *ListBudgetsForResourceInput, optFns ...func(*Options)) (*ListBudgetsForResourceOutput, error)

Lists all the budgets associated to the specified resource.

func (*Client) ListConstraintsForPortfolio

func (c *Client) ListConstraintsForPortfolio(ctx context.Context, params *ListConstraintsForPortfolioInput, optFns ...func(*Options)) (*ListConstraintsForPortfolioOutput, error)

Lists the constraints for the specified portfolio and product.

func (*Client) ListLaunchPaths

func (c *Client) ListLaunchPaths(ctx context.Context, params *ListLaunchPathsInput, optFns ...func(*Options)) (*ListLaunchPathsOutput, error)

Lists the paths to the specified product. A path is how the user has access to a specified product, and is necessary when provisioning a product. A path also determines the constraints put on the product.

func (*Client) ListOrganizationPortfolioAccess

func (c *Client) ListOrganizationPortfolioAccess(ctx context.Context, params *ListOrganizationPortfolioAccessInput, optFns ...func(*Options)) (*ListOrganizationPortfolioAccessOutput, error)

Lists the organization nodes that have access to the specified portfolio. This API can only be called by the master account in the organization or by a delegated admin. If a delegated admin is de-registered, they can no longer perform this operation.

func (*Client) ListPortfolioAccess

func (c *Client) ListPortfolioAccess(ctx context.Context, params *ListPortfolioAccessInput, optFns ...func(*Options)) (*ListPortfolioAccessOutput, error)

Lists the account IDs that have access to the specified portfolio. A delegated admin can list the accounts that have access to the shared portfolio. Note that if a delegated admin is de-registered, they can no longer perform this operation.

func (*Client) ListPortfolios

func (c *Client) ListPortfolios(ctx context.Context, params *ListPortfoliosInput, optFns ...func(*Options)) (*ListPortfoliosOutput, error)

Lists all portfolios in the catalog.

func (*Client) ListPortfoliosForProduct

func (c *Client) ListPortfoliosForProduct(ctx context.Context, params *ListPortfoliosForProductInput, optFns ...func(*Options)) (*ListPortfoliosForProductOutput, error)

Lists all portfolios that the specified product is associated with.

func (*Client) ListPrincipalsForPortfolio

func (c *Client) ListPrincipalsForPortfolio(ctx context.Context, params *ListPrincipalsForPortfolioInput, optFns ...func(*Options)) (*ListPrincipalsForPortfolioOutput, error)

Lists all principal ARNs associated with the specified portfolio.

func (*Client) ListProvisionedProductPlans

func (c *Client) ListProvisionedProductPlans(ctx context.Context, params *ListProvisionedProductPlansInput, optFns ...func(*Options)) (*ListProvisionedProductPlansOutput, error)

Lists the plans for the specified provisioned product or all plans to which the user has access.

func (*Client) ListProvisioningArtifacts

func (c *Client) ListProvisioningArtifacts(ctx context.Context, params *ListProvisioningArtifactsInput, optFns ...func(*Options)) (*ListProvisioningArtifactsOutput, error)

Lists all provisioning artifacts (also known as versions) for the specified product.

func (*Client) ListProvisioningArtifactsForServiceAction

func (c *Client) ListProvisioningArtifactsForServiceAction(ctx context.Context, params *ListProvisioningArtifactsForServiceActionInput, optFns ...func(*Options)) (*ListProvisioningArtifactsForServiceActionOutput, error)

Lists all provisioning artifacts (also known as versions) for the specified self-service action.

func (*Client) ListRecordHistory

func (c *Client) ListRecordHistory(ctx context.Context, params *ListRecordHistoryInput, optFns ...func(*Options)) (*ListRecordHistoryOutput, error)

Lists the specified requests or all performed requests.

func (*Client) ListResourcesForTagOption

func (c *Client) ListResourcesForTagOption(ctx context.Context, params *ListResourcesForTagOptionInput, optFns ...func(*Options)) (*ListResourcesForTagOptionOutput, error)

Lists the resources associated with the specified TagOption.

func (*Client) ListServiceActions

func (c *Client) ListServiceActions(ctx context.Context, params *ListServiceActionsInput, optFns ...func(*Options)) (*ListServiceActionsOutput, error)

Lists all self-service actions.

func (*Client) ListServiceActionsForProvisioningArtifact

func (c *Client) ListServiceActionsForProvisioningArtifact(ctx context.Context, params *ListServiceActionsForProvisioningArtifactInput, optFns ...func(*Options)) (*ListServiceActionsForProvisioningArtifactOutput, error)

Returns a paginated list of self-service actions associated with the specified Product ID and Provisioning Artifact ID.

func (*Client) ListStackInstancesForProvisionedProduct

func (c *Client) ListStackInstancesForProvisionedProduct(ctx context.Context, params *ListStackInstancesForProvisionedProductInput, optFns ...func(*Options)) (*ListStackInstancesForProvisionedProductOutput, error)

Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific AWS account name or region.

func (*Client) ListTagOptions

func (c *Client) ListTagOptions(ctx context.Context, params *ListTagOptionsInput, optFns ...func(*Options)) (*ListTagOptionsOutput, error)

Lists the specified TagOptions or all TagOptions.

func (*Client) ProvisionProduct

func (c *Client) ProvisionProduct(ctx context.Context, params *ProvisionProductInput, optFns ...func(*Options)) (*ProvisionProductOutput, error)

Provisions the specified product. A provisioned product is a resourced instance of a product. For example, provisioning a product based on a CloudFormation template launches a CloudFormation stack and its underlying resources. You can check the status of this request using DescribeRecord (). If the request contains a tag key with an empty list of values, there is a tag conflict for that key. Do not include conflicted keys as tags, or this causes the error "Parameter validation failed: Missing required parameter in Tags[N]:Value".

func (*Client) RejectPortfolioShare

func (c *Client) RejectPortfolioShare(ctx context.Context, params *RejectPortfolioShareInput, optFns ...func(*Options)) (*RejectPortfolioShareOutput, error)

Rejects an offer to share the specified portfolio.

func (*Client) ScanProvisionedProducts

func (c *Client) ScanProvisionedProducts(ctx context.Context, params *ScanProvisionedProductsInput, optFns ...func(*Options)) (*ScanProvisionedProductsOutput, error)

Lists the provisioned products that are available (not terminated). To use additional filtering, see SearchProvisionedProducts ().

func (*Client) SearchProducts

func (c *Client) SearchProducts(ctx context.Context, params *SearchProductsInput, optFns ...func(*Options)) (*SearchProductsOutput, error)

Gets information about the products to which the caller has access.

func (*Client) SearchProductsAsAdmin

func (c *Client) SearchProductsAsAdmin(ctx context.Context, params *SearchProductsAsAdminInput, optFns ...func(*Options)) (*SearchProductsAsAdminOutput, error)

Gets information about the products for the specified portfolio or all products.

func (*Client) SearchProvisionedProducts

func (c *Client) SearchProvisionedProducts(ctx context.Context, params *SearchProvisionedProductsInput, optFns ...func(*Options)) (*SearchProvisionedProductsOutput, error)

Gets information about the provisioned products that meet the specified criteria.

func (*Client) TerminateProvisionedProduct

func (c *Client) TerminateProvisionedProduct(ctx context.Context, params *TerminateProvisionedProductInput, optFns ...func(*Options)) (*TerminateProvisionedProductOutput, error)

Terminates the specified provisioned product. This operation does not delete any records associated with the provisioned product. You can check the status of this request using DescribeRecord ().

func (*Client) UpdateConstraint

func (c *Client) UpdateConstraint(ctx context.Context, params *UpdateConstraintInput, optFns ...func(*Options)) (*UpdateConstraintOutput, error)

Updates the specified constraint.

func (*Client) UpdatePortfolio

func (c *Client) UpdatePortfolio(ctx context.Context, params *UpdatePortfolioInput, optFns ...func(*Options)) (*UpdatePortfolioOutput, error)

Updates the specified portfolio. You cannot update a product that was shared with you.

func (*Client) UpdateProduct

func (c *Client) UpdateProduct(ctx context.Context, params *UpdateProductInput, optFns ...func(*Options)) (*UpdateProductOutput, error)

Updates the specified product.

func (*Client) UpdateProvisionedProduct

func (c *Client) UpdateProvisionedProduct(ctx context.Context, params *UpdateProvisionedProductInput, optFns ...func(*Options)) (*UpdateProvisionedProductOutput, error)

Requests updates to the configuration of the specified provisioned product. If there are tags associated with the object, they cannot be updated or added. Depending on the specific updates requested, this operation can update with no interruption, with some interruption, or replace the provisioned product entirely. You can check the status of this request using DescribeRecord ().

func (*Client) UpdateProvisionedProductProperties

func (c *Client) UpdateProvisionedProductProperties(ctx context.Context, params *UpdateProvisionedProductPropertiesInput, optFns ...func(*Options)) (*UpdateProvisionedProductPropertiesOutput, error)

Requests updates to the properties of the specified provisioned product.

func (*Client) UpdateProvisioningArtifact

func (c *Client) UpdateProvisioningArtifact(ctx context.Context, params *UpdateProvisioningArtifactInput, optFns ...func(*Options)) (*UpdateProvisioningArtifactOutput, error)

Updates the specified provisioning artifact (also known as a version) for the specified product. You cannot update a provisioning artifact for a product that was shared with you.

func (*Client) UpdateServiceAction

func (c *Client) UpdateServiceAction(ctx context.Context, params *UpdateServiceActionInput, optFns ...func(*Options)) (*UpdateServiceActionOutput, error)

Updates a self-service action.

func (*Client) UpdateTagOption

func (c *Client) UpdateTagOption(ctx context.Context, params *UpdateTagOptionInput, optFns ...func(*Options)) (*UpdateTagOptionOutput, error)

Updates the specified TagOption.

type CopyProductInput

type CopyProductInput struct {
	// The Amazon Resource Name (ARN) of the source product.
	SourceProductArn *string
	// A name for the target product. The default is the name of the source product.
	TargetProductName *string
	// The identifiers of the provisioning artifacts (also known as versions) of the
	// product to copy. By default, all provisioning artifacts are copied.
	SourceProvisioningArtifactIdentifiers []map[string]*string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The copy options. If the value is CopyTags, the tags from the source product are
	// copied to the target product.
	CopyOptions []types.CopyOption
	// The identifier of the target product. By default, a new product is created.
	TargetProductId *string
	// A unique identifier that you provide to ensure idempotency. If multiple requests
	// differ only by the idempotency token, the same response is returned for each
	// repeated request.
	IdempotencyToken *string
}

type CopyProductOutput

type CopyProductOutput struct {
	// The token to use to track the progress of the operation.
	CopyProductToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreateConstraintInput

type CreateConstraintInput struct {
	// The constraint parameters, in JSON format. The syntax depends on the constraint
	// type as follows: LAUNCH You are required to specify either the RoleArn or the
	// LocalRoleName but can't use both. Specify the RoleArn property as follows:
	// {"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"} Specify the
	// LocalRoleName property as follows: {"LocalRoleName": "SCBasicLaunchRole"} If you
	// specify the LocalRoleName property, when an account uses the launch constraint,
	// the IAM role with that name in the account will be used. This allows launch-role
	// constraints to be account-agnostic so the administrator can create fewer
	// resources per shared account. The given role name must exist in the account used
	// to create the launch constraint and the account of the user who launches a
	// product with this launch constraint. You cannot have both a LAUNCH and a
	// STACKSET constraint. You also cannot have more than one LAUNCH constraint on a
	// product and portfolio. NOTIFICATION Specify the NotificationArns property as
	// follows: {"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]}
	// RESOURCE_UPDATE Specify the TagUpdatesOnProvisionedProduct property as follows:
	// {"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}} The
	// TagUpdatesOnProvisionedProduct property accepts a string value of ALLOWED or
	// NOT_ALLOWED. STACKSET Specify the Parameters property as follows: {"Version":
	// "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String"
	// ], "AdminRole": "String", "ExecutionRole": "String"}} You cannot have both a
	// LAUNCH and a STACKSET constraint. You also cannot have more than one STACKSET
	// constraint on a product and portfolio. Products with a STACKSET constraint will
	// launch an AWS CloudFormation stack set. TEMPLATE Specify the Rules property. For
	// more information, see Template Constraint Rules
	// (http://docs.aws.amazon.com/servicecatalog/latest/adminguide/reference-template_constraint_rules.html).
	Parameters *string
	// The description of the constraint.
	Description *string
	// The type of constraint.
	//
	//     * LAUNCH
	//
	//     * NOTIFICATION
	//
	//     *
	// RESOURCE_UPDATE
	//
	//     * STACKSET
	//
	//     * TEMPLATE
	Type *string
	// A unique identifier that you provide to ensure idempotency. If multiple requests
	// differ only by the idempotency token, the same response is returned for each
	// repeated request.
	IdempotencyToken *string
	// The portfolio identifier.
	PortfolioId *string
	// The product identifier.
	ProductId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type CreateConstraintOutput

type CreateConstraintOutput struct {
	// The constraint parameters.
	ConstraintParameters *string
	// Information about the constraint.
	ConstraintDetail *types.ConstraintDetail
	// The status of the current request.
	Status types.Status

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreatePortfolioInput

type CreatePortfolioInput struct {
	// The name of the portfolio provider.
	ProviderName *string
	// The description of the portfolio.
	Description *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The name to use for display purposes.
	DisplayName *string
	// A unique identifier that you provide to ensure idempotency. If multiple requests
	// differ only by the idempotency token, the same response is returned for each
	// repeated request.
	IdempotencyToken *string
	// One or more tags.
	Tags []*types.Tag
}

type CreatePortfolioOutput

type CreatePortfolioOutput struct {
	// Information about the portfolio.
	PortfolioDetail *types.PortfolioDetail
	// Information about the tags associated with the portfolio.
	Tags []*types.Tag

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreatePortfolioShareInput

type CreatePortfolioShareInput struct {
	// The AWS account ID. For example, 123456789012.
	AccountId *string
	// 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.
	OrganizationNode *types.OrganizationNode
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The portfolio identifier.
	PortfolioId *string
}

type CreatePortfolioShareOutput

type CreatePortfolioShareOutput struct {
	// The portfolio share unique identifier. This will only be returned if portfolio
	// is shared to an organization node.
	PortfolioShareToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreateProductInput

type CreateProductInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The contact URL for product support.
	SupportUrl *string
	// The configuration of the provisioning artifact.
	ProvisioningArtifactParameters *types.ProvisioningArtifactProperties
	// The name of the product.
	Name *string
	// The contact email for product support.
	SupportEmail *string
	// The type of product.
	ProductType types.ProductType
	// The distributor of the product.
	Distributor *string
	// The support information about the product.
	SupportDescription *string
	// The description of the product.
	Description *string
	// A unique identifier that you provide to ensure idempotency. If multiple requests
	// differ only by the idempotency token, the same response is returned for each
	// repeated request.
	IdempotencyToken *string
	// One or more tags.
	Tags []*types.Tag
	// The owner of the product.
	Owner *string
}

type CreateProductOutput

type CreateProductOutput struct {
	// Information about the tags associated with the product.
	Tags []*types.Tag
	// Information about the product view.
	ProductViewDetail *types.ProductViewDetail
	// Information about the provisioning artifact.
	ProvisioningArtifactDetail *types.ProvisioningArtifactDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreateProvisionedProductPlanInput

type CreateProvisionedProductPlanInput struct {
	// A unique identifier that you provide to ensure idempotency. If multiple requests
	// differ only by the idempotency token, the same response is returned for each
	// repeated request.
	IdempotencyToken *string
	// A user-friendly name for the provisioned product. This value must be unique for
	// the AWS account and cannot be updated after the product is provisioned.
	ProvisionedProductName *string
	// One or more tags. If the plan is for an existing provisioned product, the
	// product must have a RESOURCE_UPDATE constraint with
	// TagUpdatesOnProvisionedProduct set to ALLOWED to allow tag updates.
	Tags []*types.Tag
	// The path identifier of the product. This value is optional if the product has a
	// default path, and required if the product has more than one path. To list the
	// paths for a product, use ListLaunchPaths ().
	PathId *string
	// Parameters specified by the administrator that are required for provisioning the
	// product.
	ProvisioningParameters []*types.UpdateProvisioningParameter
	// The product identifier.
	ProductId *string
	// The name of the plan.
	PlanName *string
	// The plan type.
	PlanType types.ProvisionedProductPlanType
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string
	// Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related
	// events.
	NotificationArns []*string
}

type CreateProvisionedProductPlanOutput

type CreateProvisionedProductPlanOutput struct {
	// The name of the plan.
	PlanName *string
	// The user-friendly name of the provisioned product.
	ProvisionedProductName *string
	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string
	// The plan identifier.
	PlanId *string
	// The product identifier.
	ProvisionProductId *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreateProvisioningArtifactInput

type CreateProvisioningArtifactInput struct {
	// A unique identifier that you provide to ensure idempotency. If multiple requests
	// differ only by the idempotency token, the same response is returned for each
	// repeated request.
	IdempotencyToken *string
	// The configuration for the provisioning artifact.
	Parameters *types.ProvisioningArtifactProperties
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The product identifier.
	ProductId *string
}

type CreateProvisioningArtifactOutput

type CreateProvisioningArtifactOutput struct {
	// The URL of the CloudFormation template in Amazon S3, in JSON format.
	Info map[string]*string
	// Information about the provisioning artifact.
	ProvisioningArtifactDetail *types.ProvisioningArtifactDetail
	// The status of the current request.
	Status types.Status

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreateServiceActionInput

type CreateServiceActionInput struct {
	// The self-service action description.
	Description *string
	// The self-service action name.
	Name *string
	// A unique identifier that you provide to ensure idempotency. If multiple requests
	// differ only by the idempotency token, the same response is returned for each
	// repeated request.
	IdempotencyToken *string
	// The self-service action definition. Can be one of the following: Name The name
	// of the AWS Systems Manager document (SSM document). For example,
	// AWS-RestartEC2Instance. If you are using a shared SSM document, you must provide
	// the ARN instead of the name. Version The AWS Systems Manager automation document
	// version. For example, "Version": "1" AssumeRole The Amazon Resource Name (ARN)
	// of the role that performs the self-service actions on your behalf. For example,
	// "AssumeRole": "arn:aws:iam::12345678910:role/ActionRole". To reuse the
	// provisioned product launch role, set to "AssumeRole": "LAUNCH_ROLE". Parameters
	// The list of parameters in JSON format. For example:
	// [{\"Name\":\"InstanceId\",\"Type\":\"TARGET\"}] or
	// [{\"Name\":\"InstanceId\",\"Type\":\"TEXT_VALUE\"}].
	Definition map[string]*string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The service action definition type. For example, SSM_AUTOMATION.
	DefinitionType types.ServiceActionDefinitionType
}

type CreateServiceActionOutput

type CreateServiceActionOutput struct {
	// An object containing information about the self-service action.
	ServiceActionDetail *types.ServiceActionDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreateTagOptionInput

type CreateTagOptionInput struct {
	// The TagOption value.
	Value *string
	// The TagOption key.
	Key *string
}

type CreateTagOptionOutput

type CreateTagOptionOutput struct {
	// Information about the TagOption.
	TagOptionDetail *types.TagOptionDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeleteConstraintInput

type DeleteConstraintInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The identifier of the constraint.
	Id *string
}

type DeleteConstraintOutput

type DeleteConstraintOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeletePortfolioInput

type DeletePortfolioInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The portfolio identifier.
	Id *string
}

type DeletePortfolioOutput

type DeletePortfolioOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeletePortfolioShareInput

type DeletePortfolioShareInput struct {
	// The AWS account ID.
	AccountId *string
	// The organization node to whom you are going to stop sharing.
	OrganizationNode *types.OrganizationNode
	// The portfolio identifier.
	PortfolioId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type DeletePortfolioShareOutput

type DeletePortfolioShareOutput struct {
	// The portfolio share unique identifier. This will only be returned if delete is
	// made to an organization node.
	PortfolioShareToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeleteProductInput

type DeleteProductInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The product identifier.
	Id *string
}

type DeleteProductOutput

type DeleteProductOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeleteProvisionedProductPlanInput

type DeleteProvisionedProductPlanInput struct {
	// If set to true, AWS Service Catalog stops managing the specified provisioned
	// product even if it cannot delete the underlying resources.
	IgnoreErrors *bool
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The plan identifier.
	PlanId *string
}

type DeleteProvisionedProductPlanOutput

type DeleteProvisionedProductPlanOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeleteProvisioningArtifactInput

type DeleteProvisioningArtifactInput struct {
	// The product identifier.
	ProductId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string
}

type DeleteProvisioningArtifactOutput

type DeleteProvisioningArtifactOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeleteServiceActionInput

type DeleteServiceActionInput struct {
	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	Id *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type DeleteServiceActionOutput

type DeleteServiceActionOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeleteTagOptionInput

type DeleteTagOptionInput struct {
	// The TagOption identifier.
	Id *string
}

type DeleteTagOptionOutput

type DeleteTagOptionOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeConstraintInput

type DescribeConstraintInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The identifier of the constraint.
	Id *string
}

type DescribeConstraintOutput

type DescribeConstraintOutput struct {
	// The constraint parameters.
	ConstraintParameters *string
	// The status of the current request.
	Status types.Status
	// Information about the constraint.
	ConstraintDetail *types.ConstraintDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeCopyProductStatusInput

type DescribeCopyProductStatusInput struct {
	// The token for the copy product operation. This token is returned by CopyProduct
	// ().
	CopyProductToken *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type DescribeCopyProductStatusOutput

type DescribeCopyProductStatusOutput struct {
	// The identifier of the copied product.
	TargetProductId *string
	// The status of the copy product operation.
	CopyProductStatus types.CopyProductStatus
	// The status message.
	StatusDetail *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribePortfolioInput

type DescribePortfolioInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The portfolio identifier.
	Id *string
}

type DescribePortfolioOutput

type DescribePortfolioOutput struct {
	// Information about the associated budgets.
	Budgets []*types.BudgetDetail
	// Information about the TagOptions associated with the portfolio.
	TagOptions []*types.TagOptionDetail
	// Information about the tags associated with the portfolio.
	Tags []*types.Tag
	// Information about the portfolio.
	PortfolioDetail *types.PortfolioDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribePortfolioShareStatusInput

type DescribePortfolioShareStatusInput struct {
	// The token for the portfolio share operation. This token is returned either by
	// CreatePortfolioShare or by DeletePortfolioShare.
	PortfolioShareToken *string
}

type DescribePortfolioShareStatusOutput

type DescribePortfolioShareStatusOutput struct {
	// Organization node identifier. It can be either account id, organizational unit
	// id or organization id.
	OrganizationNodeValue *string
	// The portfolio identifier.
	PortfolioId *string
	// Information about the portfolio share operation.
	ShareDetails *types.ShareDetails
	// The token for the portfolio share operation. For example, share-6v24abcdefghi.
	PortfolioShareToken *string
	// Status of the portfolio share operation.
	Status types.ShareStatus

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeProductAsAdminInput

type DescribeProductAsAdminInput struct {
	// The product identifier.
	Id *string
	// The product name.
	Name *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type DescribeProductAsAdminOutput

type DescribeProductAsAdminOutput struct {
	// Information about the associated budgets.
	Budgets []*types.BudgetDetail
	// Information about the provisioning artifacts (also known as versions) for the
	// specified product.
	ProvisioningArtifactSummaries []*types.ProvisioningArtifactSummary
	// Information about the tags associated with the product.
	Tags []*types.Tag
	// Information about the TagOptions associated with the product.
	TagOptions []*types.TagOptionDetail
	// Information about the product view.
	ProductViewDetail *types.ProductViewDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeProductInput

type DescribeProductInput struct {
	// The product name.
	Name *string
	// The product identifier.
	Id *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type DescribeProductOutput

type DescribeProductOutput struct {
	// Summary information about the product view.
	ProductViewSummary *types.ProductViewSummary
	// Information about the provisioning artifacts for the specified product.
	ProvisioningArtifacts []*types.ProvisioningArtifact
	// Information about the associated launch paths.
	LaunchPaths []*types.LaunchPath
	// Information about the associated budgets.
	Budgets []*types.BudgetDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeProductViewInput

type DescribeProductViewInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The product view identifier.
	Id *string
}

type DescribeProductViewOutput

type DescribeProductViewOutput struct {
	// Information about the provisioning artifacts for the product.
	ProvisioningArtifacts []*types.ProvisioningArtifact
	// Summary information about the product.
	ProductViewSummary *types.ProductViewSummary

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeProvisionedProductInput

type DescribeProvisionedProductInput struct {
	// The provisioned product identifier.
	Id *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type DescribeProvisionedProductOutput

type DescribeProvisionedProductOutput struct {
	// Any CloudWatch dashboards that were created when provisioning the product.
	CloudWatchDashboards []*types.CloudWatchDashboard
	// Information about the provisioned product.
	ProvisionedProductDetail *types.ProvisionedProductDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeProvisionedProductPlanInput

type DescribeProvisionedProductPlanInput struct {
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The plan identifier.
	PlanId *string
}

type DescribeProvisionedProductPlanOutput

type DescribeProvisionedProductPlanOutput struct {
	// Information about the resource changes that will occur when the plan is
	// executed.
	ResourceChanges []*types.ResourceChange
	// Information about the plan.
	ProvisionedProductPlanDetails *types.ProvisionedProductPlanDetails
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeProvisioningArtifactInput

type DescribeProvisioningArtifactInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string
	// The product identifier.
	ProductId *string
	// The product name.
	ProductName *string
	// Indicates whether a verbose level of detail is enabled.
	Verbose *bool
	// The provisioning artifact name.
	ProvisioningArtifactName *string
}

type DescribeProvisioningArtifactOutput

type DescribeProvisioningArtifactOutput struct {
	// The status of the current request.
	Status types.Status
	// The URL of the CloudFormation template in Amazon S3.
	Info map[string]*string
	// Information about the provisioning artifact.
	ProvisioningArtifactDetail *types.ProvisioningArtifactDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeProvisioningParametersInput

type DescribeProvisioningParametersInput struct {
	// The identifier of the provisioning artifact. You must provide the name or ID,
	// but not both.
	ProvisioningArtifactId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The name of the path. You must provide the name or ID, but not both.
	PathName *string
	// The name of the provisioning artifact. You must provide the name or ID, but not
	// both.
	ProvisioningArtifactName *string
	// The product identifier. You must provide the product name or ID, but not both.
	ProductId *string
	// The name of the product. You must provide the name or ID, but not both.
	ProductName *string
	// The path identifier of the product. This value is optional if the product has a
	// default path, and required if the product has more than one path. To list the
	// paths for a product, use ListLaunchPaths (). You must provide the name or ID,
	// but not both.
	PathId *string
}

type DescribeProvisioningParametersOutput

type DescribeProvisioningParametersOutput struct {
	// Information about the constraints used to provision the product.
	ConstraintSummaries []*types.ConstraintSummary
	// Information about the parameters used to provision the product.
	ProvisioningArtifactParameters []*types.ProvisioningArtifactParameter
	// An object that contains information about preferences, such as regions and
	// accounts, for the provisioning artifact.
	ProvisioningArtifactPreferences *types.ProvisioningArtifactPreferences
	// Information about the TagOptions associated with the resource.
	TagOptions []*types.TagOptionSummary
	// The output of the provisioning artifact.
	ProvisioningArtifactOutputs []*types.ProvisioningArtifactOutput
	// Any additional metadata specifically related to the provisioning of the product.
	// For example, see the Version field of the CloudFormation template.
	UsageInstructions []*types.UsageInstruction

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeRecordInput

type DescribeRecordInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The record identifier of the provisioned product. This identifier is returned by
	// the request operation.
	Id *string
}

type DescribeRecordOutput

type DescribeRecordOutput struct {
	// Information about the product.
	RecordDetail *types.RecordDetail
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// Information about the product created as the result of a request. For example,
	// the output for a CloudFormation-backed product that creates an S3 bucket would
	// include the S3 bucket URL.
	RecordOutputs []*types.RecordOutput

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeServiceActionExecutionParametersInput

type DescribeServiceActionExecutionParametersInput struct {
	// The self-service action identifier.
	ServiceActionId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The identifier of the provisioned product.
	ProvisionedProductId *string
}

type DescribeServiceActionExecutionParametersOutput

type DescribeServiceActionExecutionParametersOutput struct {
	// The parameters of the self-service action.
	ServiceActionParameters []*types.ExecutionParameter

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeServiceActionInput

type DescribeServiceActionInput struct {
	// The self-service action identifier.
	Id *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type DescribeServiceActionOutput

type DescribeServiceActionOutput struct {
	// Detailed information about the self-service action.
	ServiceActionDetail *types.ServiceActionDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeTagOptionInput

type DescribeTagOptionInput struct {
	// The TagOption identifier.
	Id *string
}

type DescribeTagOptionOutput

type DescribeTagOptionOutput struct {
	// Information about the TagOption.
	TagOptionDetail *types.TagOptionDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DisableAWSOrganizationsAccessInput

type DisableAWSOrganizationsAccessInput struct {
}

type DisableAWSOrganizationsAccessOutput

type DisableAWSOrganizationsAccessOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DisassociateBudgetFromResourceInput

type DisassociateBudgetFromResourceInput struct {
	// The name of the budget you want to disassociate.
	BudgetName *string
	// The resource identifier you want to disassociate from. Either a portfolio-id or
	// a product-id.
	ResourceId *string
}

type DisassociateBudgetFromResourceOutput

type DisassociateBudgetFromResourceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DisassociatePrincipalFromPortfolioInput

type DisassociatePrincipalFromPortfolioInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The portfolio identifier.
	PortfolioId *string
	// The ARN of the principal (IAM user, role, or group).
	PrincipalARN *string
}

type DisassociatePrincipalFromPortfolioOutput

type DisassociatePrincipalFromPortfolioOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DisassociateProductFromPortfolioInput

type DisassociateProductFromPortfolioInput struct {
	// The portfolio identifier.
	PortfolioId *string
	// The product identifier.
	ProductId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type DisassociateProductFromPortfolioOutput

type DisassociateProductFromPortfolioOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DisassociateServiceActionFromProvisioningArtifactInput

type DisassociateServiceActionFromProvisioningArtifactInput struct {
	// The product identifier. For example, prod-abcdzk7xy33qa.
	ProductId *string
	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	ProvisioningArtifactId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	ServiceActionId *string
}

type DisassociateServiceActionFromProvisioningArtifactOutput

type DisassociateServiceActionFromProvisioningArtifactOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DisassociateTagOptionFromResourceInput

type DisassociateTagOptionFromResourceInput struct {
	// The TagOption identifier.
	TagOptionId *string
	// The resource identifier.
	ResourceId *string
}

type DisassociateTagOptionFromResourceOutput

type DisassociateTagOptionFromResourceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type EnableAWSOrganizationsAccessInput

type EnableAWSOrganizationsAccessInput struct {
}

type EnableAWSOrganizationsAccessOutput

type EnableAWSOrganizationsAccessOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type EndpointResolver

type EndpointResolver interface {
	ResolveEndpoint(region string, options ResolverOptions) (aws.Endpoint, error)
}

EndpointResolver interface for resolving service endpoints.

func WithEndpointResolver

func WithEndpointResolver(awsResolver aws.EndpointResolver, fallbackResolver EndpointResolver) EndpointResolver

WithEndpointResolver returns an EndpointResolver that first delegates endpoint resolution to the awsResolver. If awsResolver returns aws.EndpointNotFoundError error, the resolver will use the the provided fallbackResolver for resolution. awsResolver and fallbackResolver must not be nil

type EndpointResolverFunc

type EndpointResolverFunc func(region string, options ResolverOptions) (aws.Endpoint, error)

EndpointResolverFunc is a helper utility that wraps a function so it satisfies the EndpointResolver interface. This is useful when you want to add additional endpoint resolving logic, or stub out specific endpoints with custom values.

func (EndpointResolverFunc) ResolveEndpoint

func (fn EndpointResolverFunc) ResolveEndpoint(region string, options ResolverOptions) (endpoint aws.Endpoint, err error)

type ExecuteProvisionedProductPlanInput

type ExecuteProvisionedProductPlanInput struct {
	// The plan identifier.
	PlanId *string
	// A unique identifier that you provide to ensure idempotency. If multiple requests
	// differ only by the idempotency token, the same response is returned for each
	// repeated request.
	IdempotencyToken *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type ExecuteProvisionedProductPlanOutput

type ExecuteProvisionedProductPlanOutput struct {
	// Information about the result of provisioning the product.
	RecordDetail *types.RecordDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ExecuteProvisionedProductServiceActionInput

type ExecuteProvisionedProductServiceActionInput struct {
	// A map of all self-service action parameters and their values. If a provided
	// parameter is of a special type, such as TARGET, the provided value will override
	// the default value generated by AWS Service Catalog. If the parameters field is
	// not provided, no additional parameters are passed and default values will be
	// used for any special parameters such as TARGET.
	Parameters map[string][]*string
	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	ServiceActionId *string
	// An idempotency token that uniquely identifies the execute request.
	ExecuteToken *string
	// The identifier of the provisioned product.
	ProvisionedProductId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type ExecuteProvisionedProductServiceActionOutput

type ExecuteProvisionedProductServiceActionOutput struct {
	// An object containing detailed information about the result of provisioning the
	// product.
	RecordDetail *types.RecordDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type GetAWSOrganizationsAccessStatusInput

type GetAWSOrganizationsAccessStatusInput struct {
}

type GetAWSOrganizationsAccessStatusOutput

type GetAWSOrganizationsAccessStatusOutput struct {
	// The status of the portfolio share feature.
	AccessStatus types.AccessStatus

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HTTPClient

type HTTPClient interface {
	Do(*http.Request) (*http.Response, error)
}

type HTTPSignerV4

type HTTPSignerV4 interface {
	SignHTTP(ctx context.Context, credentials aws.Credentials, r *http.Request, payloadHash string, service string, region string, signingTime time.Time) error
}

type IdempotencyTokenProvider

type IdempotencyTokenProvider interface {
	GetIdempotencyToken() (string, error)
}

IdempotencyTokenProvider interface for providing idempotency token

type ListAcceptedPortfolioSharesInput

type ListAcceptedPortfolioSharesInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The type of shared portfolios to list. The default is to list imported
	// portfolios.
	//
	//     * AWS_ORGANIZATIONS - List portfolios shared by the master
	// account of your organization
	//
	//     * AWS_SERVICECATALOG - List default
	// portfolios
	//
	//     * IMPORTED - List imported portfolios
	PortfolioShareType types.PortfolioShareType
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
}

type ListAcceptedPortfolioSharesOutput

type ListAcceptedPortfolioSharesOutput struct {
	// Information about the portfolios.
	PortfolioDetails []*types.PortfolioDetail
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListBudgetsForResourceInput

type ListBudgetsForResourceInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The resource identifier.
	ResourceId *string
}

type ListBudgetsForResourceOutput

type ListBudgetsForResourceOutput struct {
	// Information about the associated budgets.
	Budgets []*types.BudgetDetail
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListConstraintsForPortfolioInput

type ListConstraintsForPortfolioInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The portfolio identifier.
	PortfolioId *string
	// The product identifier.
	ProductId *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
}

type ListConstraintsForPortfolioOutput

type ListConstraintsForPortfolioOutput struct {
	// Information about the constraints.
	ConstraintDetails []*types.ConstraintDetail
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListLaunchPathsInput

type ListLaunchPathsInput struct {
	// The product identifier.
	ProductId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The maximum number of items to return with this call.
	PageSize *int32
}

type ListLaunchPathsOutput

type ListLaunchPathsOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// Information about the launch path.
	LaunchPathSummaries []*types.LaunchPathSummary

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListOrganizationPortfolioAccessInput

type ListOrganizationPortfolioAccessInput struct {
	// The organization node type that will be returned in the output.
	//
	//     *
	// ORGANIZATION - Organization that has access to the portfolio.
	//
	//     *
	// ORGANIZATIONAL_UNIT - Organizational unit that has access to the portfolio
	// within your organization.
	//
	//     * ACCOUNT - Account that has access to the
	// portfolio within your organization.
	OrganizationNodeType types.OrganizationNodeType
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The portfolio identifier. For example, port-2abcdext3y5fk.
	PortfolioId *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type ListOrganizationPortfolioAccessOutput

type ListOrganizationPortfolioAccessOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// Displays information about the organization nodes.
	OrganizationNodes []*types.OrganizationNode

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListPortfolioAccessInput

type ListPortfolioAccessInput struct {
	// The maximum number of items to return with this call.
	PageSize *int32
	// The portfolio identifier.
	PortfolioId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The ID of an organization node the portfolio is shared with. All children of
	// this node with an inherited portfolio share will be returned.
	OrganizationParentId *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
}

type ListPortfolioAccessOutput

type ListPortfolioAccessOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// Information about the AWS accounts with access to the portfolio.
	AccountIds []*string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListPortfoliosForProductInput

type ListPortfoliosForProductInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The product identifier.
	ProductId *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
}

type ListPortfoliosForProductOutput

type ListPortfoliosForProductOutput struct {
	// Information about the portfolios.
	PortfolioDetails []*types.PortfolioDetail
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListPortfoliosInput

type ListPortfoliosInput struct {
	// The maximum number of items to return with this call.
	PageSize *int32
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type ListPortfoliosOutput

type ListPortfoliosOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// Information about the portfolios.
	PortfolioDetails []*types.PortfolioDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListPrincipalsForPortfolioInput

type ListPrincipalsForPortfolioInput struct {
	// The maximum number of items to return with this call.
	PageSize *int32
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The portfolio identifier.
	PortfolioId *string
}

type ListPrincipalsForPortfolioOutput

type ListPrincipalsForPortfolioOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// The IAM principals (users or roles) associated with the portfolio.
	Principals []*types.Principal

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListProvisionedProductPlansInput

type ListProvisionedProductPlansInput struct {
	// The access level to use to obtain results. The default is User.
	AccessLevelFilter *types.AccessLevelFilter
	// The maximum number of items to return with this call.
	PageSize *int32
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The product identifier.
	ProvisionProductId *string
}

type ListProvisionedProductPlansOutput

type ListProvisionedProductPlansOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// Information about the plans.
	ProvisionedProductPlans []*types.ProvisionedProductPlanSummary

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListProvisioningArtifactsForServiceActionInput

type ListProvisioningArtifactsForServiceActionInput struct {
	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	ServiceActionId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The maximum number of items to return with this call.
	PageSize *int32
}

type ListProvisioningArtifactsForServiceActionOutput

type ListProvisioningArtifactsForServiceActionOutput struct {
	// An array of objects with information about product views and provisioning
	// artifacts.
	ProvisioningArtifactViews []*types.ProvisioningArtifactView
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListProvisioningArtifactsInput

type ListProvisioningArtifactsInput struct {
	// The product identifier.
	ProductId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type ListProvisioningArtifactsOutput

type ListProvisioningArtifactsOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// Information about the provisioning artifacts.
	ProvisioningArtifactDetails []*types.ProvisioningArtifactDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListRecordHistoryInput

type ListRecordHistoryInput struct {
	// The access level to use to obtain results. The default is User.
	AccessLevelFilter *types.AccessLevelFilter
	// The maximum number of items to return with this call.
	PageSize *int32
	// The search filter to scope the results.
	SearchFilter *types.ListRecordHistorySearchFilter
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
}

type ListRecordHistoryOutput

type ListRecordHistoryOutput struct {
	// The records, in reverse chronological order.
	RecordDetails []*types.RecordDetail
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListResourcesForTagOptionInput

type ListResourcesForTagOptionInput struct {
	// The TagOption identifier.
	TagOptionId *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The resource type.
	//
	//     * Portfolio
	//
	//     * Product
	ResourceType *string
}

type ListResourcesForTagOptionOutput

type ListResourcesForTagOptionOutput struct {
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// Information about the resources.
	ResourceDetails []*types.ResourceDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListServiceActionsForProvisioningArtifactInput

type ListServiceActionsForProvisioningArtifactInput struct {
	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	ProvisioningArtifactId *string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The product identifier. For example, prod-abcdzk7xy33qa.
	ProductId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The maximum number of items to return with this call.
	PageSize *int32
}

type ListServiceActionsForProvisioningArtifactOutput

type ListServiceActionsForProvisioningArtifactOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// An object containing information about the self-service actions associated with
	// the provisioning artifact.
	ServiceActionSummaries []*types.ServiceActionSummary

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListServiceActionsInput

type ListServiceActionsInput struct {
	// The maximum number of items to return with this call.
	PageSize *int32
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type ListServiceActionsOutput

type ListServiceActionsOutput struct {
	// An object containing information about the service actions associated with the
	// provisioning artifact.
	ServiceActionSummaries []*types.ServiceActionSummary
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListStackInstancesForProvisionedProductInput

type ListStackInstancesForProvisionedProductInput struct {
	// The identifier of the provisioned product.
	ProvisionedProductId *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type ListStackInstancesForProvisionedProductOutput

type ListStackInstancesForProvisionedProductOutput struct {
	// List of stack instances.
	StackInstances []*types.StackInstance
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListTagOptionsInput

type ListTagOptionsInput struct {
	// The search filters. If no search filters are specified, the output includes all
	// TagOptions.
	Filters *types.ListTagOptionsFilters
	// The maximum number of items to return with this call.
	PageSize *int32
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
}

type ListTagOptionsOutput

type ListTagOptionsOutput struct {
	// Information about the TagOptions.
	TagOptionDetails []*types.TagOptionDetail
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type Options

type Options struct {
	// Set of options to modify how an operation is invoked. These apply to all
	// operations invoked for this client. Use functional options on operation call to
	// modify this list for per operation behavior.
	APIOptions []func(*middleware.Stack) error

	// The credentials object to use when signing requests.
	Credentials aws.CredentialsProvider

	// The endpoint options to be used when attempting to resolve an endpoint.
	EndpointOptions ResolverOptions

	// The service endpoint resolver.
	EndpointResolver EndpointResolver

	// Signature Version 4 (SigV4) Signer
	HTTPSignerV4 HTTPSignerV4

	// Provides idempotency tokens values that will be automatically populated into
	// idempotent API operations.
	IdempotencyTokenProvider IdempotencyTokenProvider

	// The region to send requests to. (Required)
	Region string

	// Retryer guides how HTTP requests should be retried in case of recoverable
	// failures. When nil the API client will use a default retryer.
	Retryer retry.Retryer

	// The HTTP client to invoke API calls with. Defaults to client's default HTTP
	// implementation if nil.
	HTTPClient HTTPClient
}

func (Options) Copy

func (o Options) Copy() Options

Copy creates a clone where the APIOptions list is deep copied.

func (Options) GetCredentials

func (o Options) GetCredentials() aws.CredentialsProvider

func (Options) GetEndpointOptions

func (o Options) GetEndpointOptions() ResolverOptions

func (Options) GetEndpointResolver

func (o Options) GetEndpointResolver() EndpointResolver

func (Options) GetHTTPSignerV4

func (o Options) GetHTTPSignerV4() HTTPSignerV4

func (Options) GetIdempotencyTokenProvider

func (o Options) GetIdempotencyTokenProvider() IdempotencyTokenProvider

func (Options) GetRegion

func (o Options) GetRegion() string

func (Options) GetRetryer

func (o Options) GetRetryer() retry.Retryer

type ProvisionProductInput

type ProvisionProductInput struct {
	// An idempotency token that uniquely identifies the provisioning request.
	ProvisionToken *string
	// Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related
	// events.
	NotificationArns []*string
	// The name of the product. You must provide the name or ID, but not both.
	ProductName *string
	// Parameters specified by the administrator that are required for provisioning the
	// product.
	ProvisioningParameters []*types.ProvisioningParameter
	// An object that contains information about the provisioning preferences for a
	// stack set.
	ProvisioningPreferences *types.ProvisioningPreferences
	// A user-friendly name for the provisioned product. This value must be unique for
	// the AWS account and cannot be updated after the product is provisioned.
	ProvisionedProductName *string
	// The identifier of the provisioning artifact. You must provide the name or ID,
	// but not both.
	ProvisioningArtifactId *string
	// One or more tags.
	Tags []*types.Tag
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The name of the path. You must provide the name or ID, but not both.
	PathName *string
	// The name of the provisioning artifact. You must provide the name or ID, but not
	// both.
	ProvisioningArtifactName *string
	// The product identifier. You must provide the name or ID, but not both.
	ProductId *string
	// The path identifier of the product. This value is optional if the product has a
	// default path, and required if the product has more than one path. To list the
	// paths for a product, use ListLaunchPaths (). You must provide the name or ID,
	// but not both.
	PathId *string
}

type ProvisionProductOutput

type ProvisionProductOutput struct {
	// Information about the result of provisioning the product.
	RecordDetail *types.RecordDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type RejectPortfolioShareInput

type RejectPortfolioShareInput struct {
	// The portfolio identifier.
	PortfolioId *string
	// The type of shared portfolios to reject. The default is to reject imported
	// portfolios.
	//
	//     * AWS_ORGANIZATIONS - Reject portfolios shared by the master
	// account of your organization.
	//
	//     * IMPORTED - Reject imported portfolios.
	//
	//
	// * AWS_SERVICECATALOG - Not supported. (Throws ResourceNotFoundException.)
	//
	// For
	// example, aws servicecatalog reject-portfolio-share --portfolio-id
	// "port-2qwzkwxt3y5fk" --portfolio-share-type AWS_ORGANIZATIONS
	PortfolioShareType types.PortfolioShareType
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type RejectPortfolioShareOutput

type RejectPortfolioShareOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ResolveEndpoint

type ResolveEndpoint struct {
	Resolver EndpointResolver
	Options  ResolverOptions
}

func (*ResolveEndpoint) HandleSerialize

func (*ResolveEndpoint) ID

func (*ResolveEndpoint) ID() string

type ResolveEndpointMiddlewareOptions

type ResolveEndpointMiddlewareOptions interface {
	GetEndpointResolver() EndpointResolver
	GetEndpointOptions() ResolverOptions
}

type ResolverOptions

type ResolverOptions = internalendpoints.Options

ResolverOptions is the service endpoint resolver options

type ScanProvisionedProductsInput

type ScanProvisionedProductsInput struct {
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The access level to use to obtain results. The default is User.
	AccessLevelFilter *types.AccessLevelFilter
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The maximum number of items to return with this call.
	PageSize *int32
}

type ScanProvisionedProductsOutput

type ScanProvisionedProductsOutput struct {
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// Information about the provisioned products.
	ProvisionedProducts []*types.ProvisionedProductDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type SearchProductsAsAdminInput

type SearchProductsAsAdminInput struct {
	// The maximum number of items to return with this call.
	PageSize *int32
	// The portfolio identifier.
	PortfolioId *string
	// Access level of the source of the product.
	ProductSource types.ProductSource
	// The search filters. If no search filters are specified, the output includes all
	// products to which the administrator has access.
	Filters map[string][]*string
	// The sort order. If no value is specified, the results are not sorted.
	SortOrder types.SortOrder
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The sort field. If no value is specified, the results are not sorted.
	SortBy types.ProductViewSortBy
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type SearchProductsAsAdminOutput

type SearchProductsAsAdminOutput struct {
	// Information about the product views.
	ProductViewDetails []*types.ProductViewDetail
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type SearchProductsInput

type SearchProductsInput struct {
	// The search filters. If no search filters are specified, the output includes all
	// products to which the caller has access.
	Filters map[string][]*string
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The maximum number of items to return with this call.
	PageSize *int32
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The sort order. If no value is specified, the results are not sorted.
	SortOrder types.SortOrder
	// The sort field. If no value is specified, the results are not sorted.
	SortBy types.ProductViewSortBy
}

type SearchProductsOutput

type SearchProductsOutput struct {
	// Information about the product views.
	ProductViewSummaries []*types.ProductViewSummary
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string
	// The product view aggregations.
	ProductViewAggregations map[string][]*types.ProductViewAggregationValue

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type SearchProvisionedProductsInput

type SearchProvisionedProductsInput struct {
	// The maximum number of items to return with this call.
	PageSize *int32
	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string
	// The sort order. If no value is specified, the results are not sorted.
	SortOrder types.SortOrder
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The sort field. If no value is specified, the results are not sorted. The valid
	// values are arn, id, name, and lastRecordId.
	SortBy *string
	// The search filters. When the key is SearchQuery, the searchable fields are arn,
	// createdTime, id, lastRecordId, idempotencyToken, name, physicalId, productId,
	// provisioningArtifact, type, status, tags, userArn, and userArnSession. Example:
	// "SearchQuery":["status:AVAILABLE"]
	Filters map[string][]*string
	// The access level to use to obtain results. The default is User.
	AccessLevelFilter *types.AccessLevelFilter
}

type SearchProvisionedProductsOutput

type SearchProvisionedProductsOutput struct {
	// The number of provisioned products found.
	TotalResultsCount *int32
	// Information about the provisioned products.
	ProvisionedProducts []*types.ProvisionedProductAttribute
	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type TerminateProvisionedProductInput

type TerminateProvisionedProductInput struct {
	// An idempotency token that uniquely identifies the termination request. This
	// token is only valid during the termination process. After the provisioned
	// product is terminated, subsequent requests to terminate the same provisioned
	// product always return ResourceNotFound.
	TerminateToken *string
	// The identifier of the provisioned product. You cannot specify both
	// ProvisionedProductName and ProvisionedProductId.
	ProvisionedProductId *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// If set to true, AWS Service Catalog stops managing the specified provisioned
	// product even if it cannot delete the underlying resources.
	IgnoreErrors *bool
	// The name of the provisioned product. You cannot specify both
	// ProvisionedProductName and ProvisionedProductId.
	ProvisionedProductName *string
}

type TerminateProvisionedProductOutput

type TerminateProvisionedProductOutput struct {
	// Information about the result of this request.
	RecordDetail *types.RecordDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateConstraintInput

type UpdateConstraintInput struct {
	// The constraint parameters, in JSON format. The syntax depends on the constraint
	// type as follows: LAUNCH You are required to specify either the RoleArn or the
	// LocalRoleName but can't use both. Specify the RoleArn property as follows:
	// {"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"} Specify the
	// LocalRoleName property as follows: {"LocalRoleName": "SCBasicLaunchRole"} If you
	// specify the LocalRoleName property, when an account uses the launch constraint,
	// the IAM role with that name in the account will be used. This allows launch-role
	// constraints to be account-agnostic so the administrator can create fewer
	// resources per shared account. The given role name must exist in the account used
	// to create the launch constraint and the account of the user who launches a
	// product with this launch constraint. You cannot have both a LAUNCH and a
	// STACKSET constraint. You also cannot have more than one LAUNCH constraint on a
	// product and portfolio. NOTIFICATION Specify the NotificationArns property as
	// follows: {"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]}
	// RESOURCE_UPDATE Specify the TagUpdatesOnProvisionedProduct property as follows:
	// {"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}} The
	// TagUpdatesOnProvisionedProduct property accepts a string value of ALLOWED or
	// NOT_ALLOWED. STACKSET Specify the Parameters property as follows: {"Version":
	// "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String"
	// ], "AdminRole": "String", "ExecutionRole": "String"}} You cannot have both a
	// LAUNCH and a STACKSET constraint. You also cannot have more than one STACKSET
	// constraint on a product and portfolio. Products with a STACKSET constraint will
	// launch an AWS CloudFormation stack set. TEMPLATE Specify the Rules property. For
	// more information, see Template Constraint Rules
	// (http://docs.aws.amazon.com/servicecatalog/latest/adminguide/reference-template_constraint_rules.html).
	Parameters *string
	// The identifier of the constraint.
	Id *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The updated description of the constraint.
	Description *string
}

type UpdateConstraintOutput

type UpdateConstraintOutput struct {
	// Information about the constraint.
	ConstraintDetail *types.ConstraintDetail
	// The constraint parameters.
	ConstraintParameters *string
	// The status of the current request.
	Status types.Status

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdatePortfolioInput

type UpdatePortfolioInput struct {
	// The tags to remove.
	RemoveTags []*string
	// The portfolio identifier.
	Id *string
	// The updated description of the portfolio.
	Description *string
	// The updated name of the portfolio provider.
	ProviderName *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The name to use for display purposes.
	DisplayName *string
	// The tags to add.
	AddTags []*types.Tag
}

type UpdatePortfolioOutput

type UpdatePortfolioOutput struct {
	// Information about the portfolio.
	PortfolioDetail *types.PortfolioDetail
	// Information about the tags associated with the portfolio.
	Tags []*types.Tag

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateProductInput

type UpdateProductInput struct {
	// The product identifier.
	Id *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The updated description of the product.
	Description *string
	// The updated support description for the product.
	SupportDescription *string
	// The updated support URL for the product.
	SupportUrl *string
	// The updated product name.
	Name *string
	// The tags to add to the product.
	AddTags []*types.Tag
	// The updated owner of the product.
	Owner *string
	// The updated support email for the product.
	SupportEmail *string
	// The updated distributor of the product.
	Distributor *string
	// The tags to remove from the product.
	RemoveTags []*string
}

type UpdateProductOutput

type UpdateProductOutput struct {
	// Information about the tags associated with the product.
	Tags []*types.Tag
	// Information about the product view.
	ProductViewDetail *types.ProductViewDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateProvisionedProductInput

type UpdateProvisionedProductInput struct {
	// The name of the provisioned product. You cannot specify both
	// ProvisionedProductName and ProvisionedProductId.
	ProvisionedProductName *string
	// The name of the provisioning artifact. You must provide the name or ID, but not
	// both.
	ProvisioningArtifactName *string
	// The path identifier. This value is optional if the product has a default path,
	// and required if the product has more than one path. You must provide the name or
	// ID, but not both.
	PathId *string
	// The identifier of the provisioned product. You must provide the name or ID, but
	// not both.
	ProvisionedProductId *string
	// An object that contains information about the provisioning preferences for a
	// stack set.
	ProvisioningPreferences *types.UpdateProvisioningPreferences
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The name of the path. You must provide the name or ID, but not both.
	PathName *string
	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string
	// The new parameters.
	ProvisioningParameters []*types.UpdateProvisioningParameter
	// One or more tags. Requires the product to have RESOURCE_UPDATE constraint with
	// TagUpdatesOnProvisionedProduct set to ALLOWED to allow tag updates.
	Tags []*types.Tag
	// The name of the product. You must provide the name or ID, but not both.
	ProductName *string
	// The identifier of the product. You must provide the name or ID, but not both.
	ProductId *string
	// The idempotency token that uniquely identifies the provisioning update request.
	UpdateToken *string
}

type UpdateProvisionedProductOutput

type UpdateProvisionedProductOutput struct {
	// Information about the result of the request.
	RecordDetail *types.RecordDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateProvisionedProductPropertiesInput

type UpdateProvisionedProductPropertiesInput struct {
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// A map that contains the provisioned product properties to be updated. The OWNER
	// key accepts user ARNs and role ARNs. The owner is the user that is allowed to
	// see, update, terminate, and execute service actions in the provisioned product.
	// The administrator can change the owner of a provisioned product to another IAM
	// user within the same account. Both end user owners and administrators can see
	// ownership history of the provisioned product using the ListRecordHistory API.
	// The new owner can describe all past records for the provisioned product using
	// the DescribeRecord API. The previous owner can no longer use DescribeRecord, but
	// can still see the product's history from when he was an owner using
	// ListRecordHistory. If a provisioned product ownership is assigned to an end
	// user, they can see and perform any action through the API or Service Catalog
	// console such as update, terminate, and execute service actions. If an end user
	// provisions a product and the owner is updated to someone else, they will no
	// longer be able to see or perform any actions through API or the Service Catalog
	// console on that provisioned product.
	ProvisionedProductProperties map[string]*string
	// The identifier of the provisioned product.
	ProvisionedProductId *string
	// The idempotency token that uniquely identifies the provisioning product update
	// request.
	IdempotencyToken *string
}

type UpdateProvisionedProductPropertiesOutput

type UpdateProvisionedProductPropertiesOutput struct {
	// A map that contains the properties updated.
	ProvisionedProductProperties map[string]*string
	// The provisioned product identifier.
	ProvisionedProductId *string
	// The identifier of the record.
	RecordId *string
	// The status of the request.
	Status types.RecordStatus

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateProvisioningArtifactInput

type UpdateProvisioningArtifactInput struct {
	// The product identifier.
	ProductId *string
	// The updated description of the provisioning artifact.
	Description *string
	// Information set by the administrator to provide guidance to end users about
	// which provisioning artifacts to use. The DEFAULT value indicates that the
	// product version is active. The administrator can set the guidance to DEPRECATED
	// to inform users that the product version is deprecated. Users are able to make
	// updates to a provisioned product of a deprecated version but cannot launch new
	// provisioned products using a deprecated version.
	Guidance types.ProvisioningArtifactGuidance
	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string
	// The updated name of the provisioning artifact.
	Name *string
	// Indicates whether the product version is active. Inactive provisioning artifacts
	// are invisible to end users. End users cannot launch or update a provisioned
	// product from an inactive provisioning artifact.
	Active *bool
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
}

type UpdateProvisioningArtifactOutput

type UpdateProvisioningArtifactOutput struct {
	// The status of the current request.
	Status types.Status
	// Information about the provisioning artifact.
	ProvisioningArtifactDetail *types.ProvisioningArtifactDetail
	// The URL of the CloudFormation template in Amazon S3.
	Info map[string]*string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateServiceActionInput

type UpdateServiceActionInput struct {
	// The self-service action name.
	Name *string
	// The language code.
	//
	//     * en - English (default)
	//
	//     * jp - Japanese
	//
	//     * zh
	// - Chinese
	AcceptLanguage *string
	// The self-service action description.
	Description *string
	// A map that defines the self-service action.
	Definition map[string]*string
	// The self-service action identifier.
	Id *string
}

type UpdateServiceActionOutput

type UpdateServiceActionOutput struct {
	// Detailed information about the self-service action.
	ServiceActionDetail *types.ServiceActionDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateTagOptionInput

type UpdateTagOptionInput struct {
	// The TagOption identifier.
	Id *string
	// The updated active state.
	Active *bool
	// The updated value.
	Value *string
}

type UpdateTagOptionOutput

type UpdateTagOptionOutput struct {
	// Information about the TagOption.
	TagOptionDetail *types.TagOptionDetail

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

Source Files

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL