servicecatalog

package
v0.24.0 Latest Latest
Warning

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

Go to latest
Published: Jul 22, 2020 License: Apache-2.0 Imports: 8 Imported by: 42

Documentation

Overview

Package servicecatalog provides the client and types for making API requests to 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).

See https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10 for more information on this service.

See servicecatalog package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/servicecatalog/

Using the Client

To use AWS Service Catalog with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the AWS Service Catalog client for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/servicecatalog/#New

Index

Constants

View Source
const (
	ServiceName = "AWS Service Catalog" // Service's name
	ServiceID   = "ServiceCatalog"      // Service's identifier
	EndpointsID = "servicecatalog"      // Service's Endpoint identifier
)
View Source
const (

	// ErrCodeDuplicateResourceException for service response error code
	// "DuplicateResourceException".
	//
	// The specified resource is a duplicate.
	ErrCodeDuplicateResourceException = "DuplicateResourceException"

	// ErrCodeInvalidParametersException for service response error code
	// "InvalidParametersException".
	//
	// One or more parameters provided to the operation are not valid.
	ErrCodeInvalidParametersException = "InvalidParametersException"

	// ErrCodeInvalidStateException for service response error code
	// "InvalidStateException".
	//
	// An attempt was made to modify a resource that is in a state that is not valid.
	// Check your resources to ensure that they are in valid states before retrying
	// the operation.
	ErrCodeInvalidStateException = "InvalidStateException"

	// ErrCodeLimitExceededException for service response error code
	// "LimitExceededException".
	//
	// The current limits of the service would have been exceeded by this operation.
	// Decrease your resource use or increase your service limits and retry the
	// operation.
	ErrCodeLimitExceededException = "LimitExceededException"

	// ErrCodeOperationNotSupportedException for service response error code
	// "OperationNotSupportedException".
	//
	// The operation is not supported.
	ErrCodeOperationNotSupportedException = "OperationNotSupportedException"

	// ErrCodeResourceInUseException for service response error code
	// "ResourceInUseException".
	//
	// A resource that is currently in use. Ensure that the resource is not in use
	// and retry the operation.
	ErrCodeResourceInUseException = "ResourceInUseException"

	// ErrCodeResourceNotFoundException for service response error code
	// "ResourceNotFoundException".
	//
	// The specified resource was not found.
	ErrCodeResourceNotFoundException = "ResourceNotFoundException"

	// ErrCodeTagOptionNotMigratedException for service response error code
	// "TagOptionNotMigratedException".
	//
	// An operation requiring TagOptions failed because the TagOptions migration
	// process has not been performed for this account. Please use the AWS console
	// to perform the migration process before retrying the operation.
	ErrCodeTagOptionNotMigratedException = "TagOptionNotMigratedException"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AcceptPortfolioShareInput

type AcceptPortfolioShareInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`

	// 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 PortfolioShareType `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (AcceptPortfolioShareInput) String

func (s AcceptPortfolioShareInput) String() string

String returns the string representation

func (*AcceptPortfolioShareInput) Validate

func (s *AcceptPortfolioShareInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AcceptPortfolioShareOutput

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

func (AcceptPortfolioShareOutput) String

String returns the string representation

type AcceptPortfolioShareRequest

type AcceptPortfolioShareRequest struct {
	*aws.Request
	Input *AcceptPortfolioShareInput
	Copy  func(*AcceptPortfolioShareInput) AcceptPortfolioShareRequest
}

AcceptPortfolioShareRequest is the request type for the AcceptPortfolioShare API operation.

func (AcceptPortfolioShareRequest) Send

Send marshals and sends the AcceptPortfolioShare API request.

type AcceptPortfolioShareResponse added in v0.9.0

type AcceptPortfolioShareResponse struct {
	*AcceptPortfolioShareOutput
	// contains filtered or unexported fields
}

AcceptPortfolioShareResponse is the response type for the AcceptPortfolioShare API operation.

func (*AcceptPortfolioShareResponse) SDKResponseMetdata added in v0.9.0

func (r *AcceptPortfolioShareResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AcceptPortfolioShare request.

type AccessLevelFilter

type AccessLevelFilter struct {

	// The access level.
	//
	//    * Account - Filter results based on the account.
	//
	//    * Role - Filter results based on the federated role of the specified user.
	//
	//    * User - Filter results based on the specified user.
	Key AccessLevelFilterKey `type:"string" enum:"true"`

	// The user to which the access level applies. The only supported value is Self.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

The access level to use to filter results.

func (AccessLevelFilter) String

func (s AccessLevelFilter) String() string

String returns the string representation

type AccessLevelFilterKey

type AccessLevelFilterKey string
const (
	AccessLevelFilterKeyAccount AccessLevelFilterKey = "Account"
	AccessLevelFilterKeyRole    AccessLevelFilterKey = "Role"
	AccessLevelFilterKeyUser    AccessLevelFilterKey = "User"
)

Enum values for AccessLevelFilterKey

func (AccessLevelFilterKey) MarshalValue added in v0.3.0

func (enum AccessLevelFilterKey) MarshalValue() (string, error)

func (AccessLevelFilterKey) MarshalValueBuf added in v0.3.0

func (enum AccessLevelFilterKey) MarshalValueBuf(b []byte) ([]byte, error)

type AccessStatus added in v0.6.0

type AccessStatus string
const (
	AccessStatusEnabled     AccessStatus = "ENABLED"
	AccessStatusUnderChange AccessStatus = "UNDER_CHANGE"
	AccessStatusDisabled    AccessStatus = "DISABLED"
)

Enum values for AccessStatus

func (AccessStatus) MarshalValue added in v0.6.0

func (enum AccessStatus) MarshalValue() (string, error)

func (AccessStatus) MarshalValueBuf added in v0.6.0

func (enum AccessStatus) MarshalValueBuf(b []byte) ([]byte, error)

type AssociateBudgetWithResourceInput added in v0.9.0

type AssociateBudgetWithResourceInput struct {

	// The name of the budget you want to associate.
	//
	// BudgetName is a required field
	BudgetName *string `min:"1" type:"string" required:"true"`

	// The resource identifier. Either a portfolio-id or a product-id.
	//
	// ResourceId is a required field
	ResourceId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (AssociateBudgetWithResourceInput) String added in v0.9.0

String returns the string representation

func (*AssociateBudgetWithResourceInput) Validate added in v0.9.0

Validate inspects the fields of the type to determine if they are valid.

type AssociateBudgetWithResourceOutput added in v0.9.0

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

func (AssociateBudgetWithResourceOutput) String added in v0.9.0

String returns the string representation

type AssociateBudgetWithResourceRequest added in v0.9.0

type AssociateBudgetWithResourceRequest struct {
	*aws.Request
	Input *AssociateBudgetWithResourceInput
	Copy  func(*AssociateBudgetWithResourceInput) AssociateBudgetWithResourceRequest
}

AssociateBudgetWithResourceRequest is the request type for the AssociateBudgetWithResource API operation.

func (AssociateBudgetWithResourceRequest) Send added in v0.9.0

Send marshals and sends the AssociateBudgetWithResource API request.

type AssociateBudgetWithResourceResponse added in v0.9.0

type AssociateBudgetWithResourceResponse struct {
	*AssociateBudgetWithResourceOutput
	// contains filtered or unexported fields
}

AssociateBudgetWithResourceResponse is the response type for the AssociateBudgetWithResource API operation.

func (*AssociateBudgetWithResourceResponse) SDKResponseMetdata added in v0.9.0

func (r *AssociateBudgetWithResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AssociateBudgetWithResource request.

type AssociatePrincipalWithPortfolioInput

type AssociatePrincipalWithPortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`

	// The ARN of the principal (IAM user, role, or group).
	//
	// PrincipalARN is a required field
	PrincipalARN *string `min:"1" type:"string" required:"true"`

	// The principal type. The supported value is IAM.
	//
	// PrincipalType is a required field
	PrincipalType PrincipalType `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

func (AssociatePrincipalWithPortfolioInput) String

String returns the string representation

func (*AssociatePrincipalWithPortfolioInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type AssociatePrincipalWithPortfolioOutput

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

func (AssociatePrincipalWithPortfolioOutput) String

String returns the string representation

type AssociatePrincipalWithPortfolioRequest

type AssociatePrincipalWithPortfolioRequest struct {
	*aws.Request
	Input *AssociatePrincipalWithPortfolioInput
	Copy  func(*AssociatePrincipalWithPortfolioInput) AssociatePrincipalWithPortfolioRequest
}

AssociatePrincipalWithPortfolioRequest is the request type for the AssociatePrincipalWithPortfolio API operation.

func (AssociatePrincipalWithPortfolioRequest) Send

Send marshals and sends the AssociatePrincipalWithPortfolio API request.

type AssociatePrincipalWithPortfolioResponse added in v0.9.0

type AssociatePrincipalWithPortfolioResponse struct {
	*AssociatePrincipalWithPortfolioOutput
	// contains filtered or unexported fields
}

AssociatePrincipalWithPortfolioResponse is the response type for the AssociatePrincipalWithPortfolio API operation.

func (*AssociatePrincipalWithPortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *AssociatePrincipalWithPortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AssociatePrincipalWithPortfolio request.

type AssociateProductWithPortfolioInput

type AssociateProductWithPortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The identifier of the source portfolio.
	SourcePortfolioId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (AssociateProductWithPortfolioInput) String

String returns the string representation

func (*AssociateProductWithPortfolioInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type AssociateProductWithPortfolioOutput

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

func (AssociateProductWithPortfolioOutput) String

String returns the string representation

type AssociateProductWithPortfolioRequest

type AssociateProductWithPortfolioRequest struct {
	*aws.Request
	Input *AssociateProductWithPortfolioInput
	Copy  func(*AssociateProductWithPortfolioInput) AssociateProductWithPortfolioRequest
}

AssociateProductWithPortfolioRequest is the request type for the AssociateProductWithPortfolio API operation.

func (AssociateProductWithPortfolioRequest) Send

Send marshals and sends the AssociateProductWithPortfolio API request.

type AssociateProductWithPortfolioResponse added in v0.9.0

type AssociateProductWithPortfolioResponse struct {
	*AssociateProductWithPortfolioOutput
	// contains filtered or unexported fields
}

AssociateProductWithPortfolioResponse is the response type for the AssociateProductWithPortfolio API operation.

func (*AssociateProductWithPortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *AssociateProductWithPortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AssociateProductWithPortfolio request.

type AssociateServiceActionWithProvisioningArtifactInput added in v0.6.0

type AssociateServiceActionWithProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product identifier. For example, prod-abcdzk7xy33qa.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`

	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	//
	// ServiceActionId is a required field
	ServiceActionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (AssociateServiceActionWithProvisioningArtifactInput) String added in v0.6.0

String returns the string representation

func (*AssociateServiceActionWithProvisioningArtifactInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type AssociateServiceActionWithProvisioningArtifactOutput added in v0.6.0

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

func (AssociateServiceActionWithProvisioningArtifactOutput) String added in v0.6.0

String returns the string representation

type AssociateServiceActionWithProvisioningArtifactRequest added in v0.6.0

AssociateServiceActionWithProvisioningArtifactRequest is the request type for the AssociateServiceActionWithProvisioningArtifact API operation.

func (AssociateServiceActionWithProvisioningArtifactRequest) Send added in v0.6.0

Send marshals and sends the AssociateServiceActionWithProvisioningArtifact API request.

type AssociateServiceActionWithProvisioningArtifactResponse added in v0.9.0

type AssociateServiceActionWithProvisioningArtifactResponse struct {
	*AssociateServiceActionWithProvisioningArtifactOutput
	// contains filtered or unexported fields
}

AssociateServiceActionWithProvisioningArtifactResponse is the response type for the AssociateServiceActionWithProvisioningArtifact API operation.

func (*AssociateServiceActionWithProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the AssociateServiceActionWithProvisioningArtifact request.

type AssociateTagOptionWithResourceInput

type AssociateTagOptionWithResourceInput struct {

	// The resource identifier.
	//
	// ResourceId is a required field
	ResourceId *string `type:"string" required:"true"`

	// The TagOption identifier.
	//
	// TagOptionId is a required field
	TagOptionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (AssociateTagOptionWithResourceInput) String

String returns the string representation

func (*AssociateTagOptionWithResourceInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type AssociateTagOptionWithResourceOutput

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

func (AssociateTagOptionWithResourceOutput) String

String returns the string representation

type AssociateTagOptionWithResourceRequest

type AssociateTagOptionWithResourceRequest struct {
	*aws.Request
	Input *AssociateTagOptionWithResourceInput
	Copy  func(*AssociateTagOptionWithResourceInput) AssociateTagOptionWithResourceRequest
}

AssociateTagOptionWithResourceRequest is the request type for the AssociateTagOptionWithResource API operation.

func (AssociateTagOptionWithResourceRequest) Send

Send marshals and sends the AssociateTagOptionWithResource API request.

type AssociateTagOptionWithResourceResponse added in v0.9.0

type AssociateTagOptionWithResourceResponse struct {
	*AssociateTagOptionWithResourceOutput
	// contains filtered or unexported fields
}

AssociateTagOptionWithResourceResponse is the response type for the AssociateTagOptionWithResource API operation.

func (*AssociateTagOptionWithResourceResponse) SDKResponseMetdata added in v0.9.0

func (r *AssociateTagOptionWithResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AssociateTagOptionWithResource request.

type BatchAssociateServiceActionWithProvisioningArtifactInput added in v0.6.0

type BatchAssociateServiceActionWithProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// One or more associations, each consisting of the Action ID, the Product ID,
	// and the Provisioning Artifact ID.
	//
	// ServiceActionAssociations is a required field
	ServiceActionAssociations []ServiceActionAssociation `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (BatchAssociateServiceActionWithProvisioningArtifactInput) String added in v0.6.0

String returns the string representation

func (*BatchAssociateServiceActionWithProvisioningArtifactInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type BatchAssociateServiceActionWithProvisioningArtifactOutput added in v0.6.0

type BatchAssociateServiceActionWithProvisioningArtifactOutput struct {

	// An object that contains a list of errors, along with information to help
	// you identify the self-service action.
	FailedServiceActionAssociations []FailedServiceActionAssociation `type:"list"`
	// contains filtered or unexported fields
}

func (BatchAssociateServiceActionWithProvisioningArtifactOutput) String added in v0.6.0

String returns the string representation

type BatchAssociateServiceActionWithProvisioningArtifactRequest added in v0.6.0

BatchAssociateServiceActionWithProvisioningArtifactRequest is the request type for the BatchAssociateServiceActionWithProvisioningArtifact API operation.

func (BatchAssociateServiceActionWithProvisioningArtifactRequest) Send added in v0.6.0

Send marshals and sends the BatchAssociateServiceActionWithProvisioningArtifact API request.

type BatchAssociateServiceActionWithProvisioningArtifactResponse added in v0.9.0

type BatchAssociateServiceActionWithProvisioningArtifactResponse struct {
	*BatchAssociateServiceActionWithProvisioningArtifactOutput
	// contains filtered or unexported fields
}

BatchAssociateServiceActionWithProvisioningArtifactResponse is the response type for the BatchAssociateServiceActionWithProvisioningArtifact API operation.

func (*BatchAssociateServiceActionWithProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the BatchAssociateServiceActionWithProvisioningArtifact request.

type BatchDisassociateServiceActionFromProvisioningArtifactInput added in v0.6.0

type BatchDisassociateServiceActionFromProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// One or more associations, each consisting of the Action ID, the Product ID,
	// and the Provisioning Artifact ID.
	//
	// ServiceActionAssociations is a required field
	ServiceActionAssociations []ServiceActionAssociation `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (BatchDisassociateServiceActionFromProvisioningArtifactInput) String added in v0.6.0

String returns the string representation

func (*BatchDisassociateServiceActionFromProvisioningArtifactInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type BatchDisassociateServiceActionFromProvisioningArtifactOutput added in v0.6.0

type BatchDisassociateServiceActionFromProvisioningArtifactOutput struct {

	// An object that contains a list of errors, along with information to help
	// you identify the self-service action.
	FailedServiceActionAssociations []FailedServiceActionAssociation `type:"list"`
	// contains filtered or unexported fields
}

func (BatchDisassociateServiceActionFromProvisioningArtifactOutput) String added in v0.6.0

String returns the string representation

type BatchDisassociateServiceActionFromProvisioningArtifactRequest added in v0.6.0

BatchDisassociateServiceActionFromProvisioningArtifactRequest is the request type for the BatchDisassociateServiceActionFromProvisioningArtifact API operation.

func (BatchDisassociateServiceActionFromProvisioningArtifactRequest) Send added in v0.6.0

Send marshals and sends the BatchDisassociateServiceActionFromProvisioningArtifact API request.

type BatchDisassociateServiceActionFromProvisioningArtifactResponse added in v0.9.0

type BatchDisassociateServiceActionFromProvisioningArtifactResponse struct {
	*BatchDisassociateServiceActionFromProvisioningArtifactOutput
	// contains filtered or unexported fields
}

BatchDisassociateServiceActionFromProvisioningArtifactResponse is the response type for the BatchDisassociateServiceActionFromProvisioningArtifact API operation.

func (*BatchDisassociateServiceActionFromProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the BatchDisassociateServiceActionFromProvisioningArtifact request.

type BudgetDetail added in v0.9.0

type BudgetDetail struct {

	// Name of the associated budget.
	BudgetName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Information about a budget.

func (BudgetDetail) String added in v0.9.0

func (s BudgetDetail) String() string

String returns the string representation

type ChangeAction added in v0.3.0

type ChangeAction string
const (
	ChangeActionAdd    ChangeAction = "ADD"
	ChangeActionModify ChangeAction = "MODIFY"
	ChangeActionRemove ChangeAction = "REMOVE"
)

Enum values for ChangeAction

func (ChangeAction) MarshalValue added in v0.3.0

func (enum ChangeAction) MarshalValue() (string, error)

func (ChangeAction) MarshalValueBuf added in v0.3.0

func (enum ChangeAction) MarshalValueBuf(b []byte) ([]byte, error)

type Client added in v0.9.0

type Client struct {
	*aws.Client
}

Client provides the API operation methods for making requests to AWS Service Catalog. See this package's package overview docs for details on the service.

The client's methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

func New

func New(config aws.Config) *Client

New creates a new instance of the client from the provided Config.

Example:

// Create a client from just a config.
svc := servicecatalog.New(myConfig)

func (*Client) AcceptPortfolioShareRequest added in v0.9.0

func (c *Client) AcceptPortfolioShareRequest(input *AcceptPortfolioShareInput) AcceptPortfolioShareRequest

AcceptPortfolioShareRequest returns a request value for making API operation for AWS Service Catalog.

Accepts an offer to share the specified portfolio.

// Example sending a request using AcceptPortfolioShareRequest.
req := client.AcceptPortfolioShareRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AcceptPortfolioShare

func (*Client) AssociateBudgetWithResourceRequest added in v0.9.0

func (c *Client) AssociateBudgetWithResourceRequest(input *AssociateBudgetWithResourceInput) AssociateBudgetWithResourceRequest

AssociateBudgetWithResourceRequest returns a request value for making API operation for AWS Service Catalog.

Associates the specified budget with the specified resource.

// Example sending a request using AssociateBudgetWithResourceRequest.
req := client.AssociateBudgetWithResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociateBudgetWithResource

func (*Client) AssociatePrincipalWithPortfolioRequest added in v0.9.0

func (c *Client) AssociatePrincipalWithPortfolioRequest(input *AssociatePrincipalWithPortfolioInput) AssociatePrincipalWithPortfolioRequest

AssociatePrincipalWithPortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Associates the specified principal ARN with the specified portfolio.

// Example sending a request using AssociatePrincipalWithPortfolioRequest.
req := client.AssociatePrincipalWithPortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociatePrincipalWithPortfolio

func (*Client) AssociateProductWithPortfolioRequest added in v0.9.0

func (c *Client) AssociateProductWithPortfolioRequest(input *AssociateProductWithPortfolioInput) AssociateProductWithPortfolioRequest

AssociateProductWithPortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Associates the specified product with the specified portfolio.

A delegated admin is authorized to invoke this command.

// Example sending a request using AssociateProductWithPortfolioRequest.
req := client.AssociateProductWithPortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociateProductWithPortfolio

func (*Client) AssociateServiceActionWithProvisioningArtifactRequest added in v0.9.0

func (c *Client) AssociateServiceActionWithProvisioningArtifactRequest(input *AssociateServiceActionWithProvisioningArtifactInput) AssociateServiceActionWithProvisioningArtifactRequest

AssociateServiceActionWithProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

Associates a self-service action with a provisioning artifact.

// Example sending a request using AssociateServiceActionWithProvisioningArtifactRequest.
req := client.AssociateServiceActionWithProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociateServiceActionWithProvisioningArtifact

func (*Client) AssociateTagOptionWithResourceRequest added in v0.9.0

func (c *Client) AssociateTagOptionWithResourceRequest(input *AssociateTagOptionWithResourceInput) AssociateTagOptionWithResourceRequest

AssociateTagOptionWithResourceRequest returns a request value for making API operation for AWS Service Catalog.

Associate the specified TagOption with the specified portfolio or product.

// Example sending a request using AssociateTagOptionWithResourceRequest.
req := client.AssociateTagOptionWithResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociateTagOptionWithResource

func (*Client) BatchAssociateServiceActionWithProvisioningArtifactRequest added in v0.9.0

func (c *Client) BatchAssociateServiceActionWithProvisioningArtifactRequest(input *BatchAssociateServiceActionWithProvisioningArtifactInput) BatchAssociateServiceActionWithProvisioningArtifactRequest

BatchAssociateServiceActionWithProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

Associates multiple self-service actions with provisioning artifacts.

// Example sending a request using BatchAssociateServiceActionWithProvisioningArtifactRequest.
req := client.BatchAssociateServiceActionWithProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/BatchAssociateServiceActionWithProvisioningArtifact

func (*Client) BatchDisassociateServiceActionFromProvisioningArtifactRequest added in v0.9.0

func (c *Client) BatchDisassociateServiceActionFromProvisioningArtifactRequest(input *BatchDisassociateServiceActionFromProvisioningArtifactInput) BatchDisassociateServiceActionFromProvisioningArtifactRequest

BatchDisassociateServiceActionFromProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using BatchDisassociateServiceActionFromProvisioningArtifactRequest.
req := client.BatchDisassociateServiceActionFromProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/BatchDisassociateServiceActionFromProvisioningArtifact

func (*Client) CopyProductRequest added in v0.9.0

func (c *Client) CopyProductRequest(input *CopyProductInput) CopyProductRequest

CopyProductRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using CopyProductRequest.
req := client.CopyProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CopyProduct

func (*Client) CreateConstraintRequest added in v0.9.0

func (c *Client) CreateConstraintRequest(input *CreateConstraintInput) CreateConstraintRequest

CreateConstraintRequest returns a request value for making API operation for AWS Service Catalog.

Creates a constraint.

A delegated admin is authorized to invoke this command.

// Example sending a request using CreateConstraintRequest.
req := client.CreateConstraintRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateConstraint

func (*Client) CreatePortfolioRequest added in v0.9.0

func (c *Client) CreatePortfolioRequest(input *CreatePortfolioInput) CreatePortfolioRequest

CreatePortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Creates a portfolio.

A delegated admin is authorized to invoke this command.

// Example sending a request using CreatePortfolioRequest.
req := client.CreatePortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreatePortfolio

func (*Client) CreatePortfolioShareRequest added in v0.9.0

func (c *Client) CreatePortfolioShareRequest(input *CreatePortfolioShareInput) CreatePortfolioShareRequest

CreatePortfolioShareRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using CreatePortfolioShareRequest.
req := client.CreatePortfolioShareRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreatePortfolioShare

func (*Client) CreateProductRequest added in v0.9.0

func (c *Client) CreateProductRequest(input *CreateProductInput) CreateProductRequest

CreateProductRequest returns a request value for making API operation for AWS Service Catalog.

Creates a product.

A delegated admin is authorized to invoke this command.

// Example sending a request using CreateProductRequest.
req := client.CreateProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateProduct

func (*Client) CreateProvisionedProductPlanRequest added in v0.9.0

func (c *Client) CreateProvisionedProductPlanRequest(input *CreateProvisionedProductPlanInput) CreateProvisionedProductPlanRequest

CreateProvisionedProductPlanRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using CreateProvisionedProductPlanRequest.
req := client.CreateProvisionedProductPlanRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateProvisionedProductPlan

func (*Client) CreateProvisioningArtifactRequest added in v0.9.0

func (c *Client) CreateProvisioningArtifactRequest(input *CreateProvisioningArtifactInput) CreateProvisioningArtifactRequest

CreateProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using CreateProvisioningArtifactRequest.
req := client.CreateProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateProvisioningArtifact

func (*Client) CreateServiceActionRequest added in v0.9.0

func (c *Client) CreateServiceActionRequest(input *CreateServiceActionInput) CreateServiceActionRequest

CreateServiceActionRequest returns a request value for making API operation for AWS Service Catalog.

Creates a self-service action.

// Example sending a request using CreateServiceActionRequest.
req := client.CreateServiceActionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateServiceAction

func (*Client) CreateTagOptionRequest added in v0.9.0

func (c *Client) CreateTagOptionRequest(input *CreateTagOptionInput) CreateTagOptionRequest

CreateTagOptionRequest returns a request value for making API operation for AWS Service Catalog.

Creates a TagOption.

// Example sending a request using CreateTagOptionRequest.
req := client.CreateTagOptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateTagOption

func (*Client) DeleteConstraintRequest added in v0.9.0

func (c *Client) DeleteConstraintRequest(input *DeleteConstraintInput) DeleteConstraintRequest

DeleteConstraintRequest returns a request value for making API operation for AWS Service Catalog.

Deletes the specified constraint.

A delegated admin is authorized to invoke this command.

// Example sending a request using DeleteConstraintRequest.
req := client.DeleteConstraintRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteConstraint

func (*Client) DeletePortfolioRequest added in v0.9.0

func (c *Client) DeletePortfolioRequest(input *DeletePortfolioInput) DeletePortfolioRequest

DeletePortfolioRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DeletePortfolioRequest.
req := client.DeletePortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeletePortfolio

func (*Client) DeletePortfolioShareRequest added in v0.9.0

func (c *Client) DeletePortfolioShareRequest(input *DeletePortfolioShareInput) DeletePortfolioShareRequest

DeletePortfolioShareRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DeletePortfolioShareRequest.
req := client.DeletePortfolioShareRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeletePortfolioShare

func (*Client) DeleteProductRequest added in v0.9.0

func (c *Client) DeleteProductRequest(input *DeleteProductInput) DeleteProductRequest

DeleteProductRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DeleteProductRequest.
req := client.DeleteProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteProduct

func (*Client) DeleteProvisionedProductPlanRequest added in v0.9.0

func (c *Client) DeleteProvisionedProductPlanRequest(input *DeleteProvisionedProductPlanInput) DeleteProvisionedProductPlanRequest

DeleteProvisionedProductPlanRequest returns a request value for making API operation for AWS Service Catalog.

Deletes the specified plan.

// Example sending a request using DeleteProvisionedProductPlanRequest.
req := client.DeleteProvisionedProductPlanRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteProvisionedProductPlan

func (*Client) DeleteProvisioningArtifactRequest added in v0.9.0

func (c *Client) DeleteProvisioningArtifactRequest(input *DeleteProvisioningArtifactInput) DeleteProvisioningArtifactRequest

DeleteProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DeleteProvisioningArtifactRequest.
req := client.DeleteProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteProvisioningArtifact

func (*Client) DeleteServiceActionRequest added in v0.9.0

func (c *Client) DeleteServiceActionRequest(input *DeleteServiceActionInput) DeleteServiceActionRequest

DeleteServiceActionRequest returns a request value for making API operation for AWS Service Catalog.

Deletes a self-service action.

// Example sending a request using DeleteServiceActionRequest.
req := client.DeleteServiceActionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteServiceAction

func (*Client) DeleteTagOptionRequest added in v0.9.0

func (c *Client) DeleteTagOptionRequest(input *DeleteTagOptionInput) DeleteTagOptionRequest

DeleteTagOptionRequest returns a request value for making API operation for AWS Service Catalog.

Deletes the specified TagOption.

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

// Example sending a request using DeleteTagOptionRequest.
req := client.DeleteTagOptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteTagOption

func (*Client) DescribeConstraintRequest added in v0.9.0

func (c *Client) DescribeConstraintRequest(input *DescribeConstraintInput) DescribeConstraintRequest

DescribeConstraintRequest returns a request value for making API operation for AWS Service Catalog.

Gets information about the specified constraint.

// Example sending a request using DescribeConstraintRequest.
req := client.DescribeConstraintRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeConstraint

func (*Client) DescribeCopyProductStatusRequest added in v0.9.0

func (c *Client) DescribeCopyProductStatusRequest(input *DescribeCopyProductStatusInput) DescribeCopyProductStatusRequest

DescribeCopyProductStatusRequest returns a request value for making API operation for AWS Service Catalog.

Gets the status of the specified copy product operation.

// Example sending a request using DescribeCopyProductStatusRequest.
req := client.DescribeCopyProductStatusRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeCopyProductStatus

func (*Client) DescribePortfolioRequest added in v0.9.0

func (c *Client) DescribePortfolioRequest(input *DescribePortfolioInput) DescribePortfolioRequest

DescribePortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Gets information about the specified portfolio.

A delegated admin is authorized to invoke this command.

// Example sending a request using DescribePortfolioRequest.
req := client.DescribePortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribePortfolio

func (*Client) DescribePortfolioShareStatusRequest added in v0.9.0

func (c *Client) DescribePortfolioShareStatusRequest(input *DescribePortfolioShareStatusInput) DescribePortfolioShareStatusRequest

DescribePortfolioShareStatusRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DescribePortfolioShareStatusRequest.
req := client.DescribePortfolioShareStatusRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribePortfolioShareStatus

func (*Client) DescribeProductAsAdminRequest added in v0.9.0

func (c *Client) DescribeProductAsAdminRequest(input *DescribeProductAsAdminInput) DescribeProductAsAdminRequest

DescribeProductAsAdminRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using DescribeProductAsAdminRequest.
req := client.DescribeProductAsAdminRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductAsAdmin

func (*Client) DescribeProductRequest added in v0.9.0

func (c *Client) DescribeProductRequest(input *DescribeProductInput) DescribeProductRequest

DescribeProductRequest returns a request value for making API operation for AWS Service Catalog.

Gets information about the specified product.

// Example sending a request using DescribeProductRequest.
req := client.DescribeProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProduct

func (*Client) DescribeProductViewRequest added in v0.9.0

func (c *Client) DescribeProductViewRequest(input *DescribeProductViewInput) DescribeProductViewRequest

DescribeProductViewRequest returns a request value for making API operation for AWS Service Catalog.

Gets information about the specified product.

// Example sending a request using DescribeProductViewRequest.
req := client.DescribeProductViewRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProductView

func (*Client) DescribeProvisionedProductPlanRequest added in v0.9.0

func (c *Client) DescribeProvisionedProductPlanRequest(input *DescribeProvisionedProductPlanInput) DescribeProvisionedProductPlanRequest

DescribeProvisionedProductPlanRequest returns a request value for making API operation for AWS Service Catalog.

Gets information about the resource changes for the specified plan.

// Example sending a request using DescribeProvisionedProductPlanRequest.
req := client.DescribeProvisionedProductPlanRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductPlan

func (*Client) DescribeProvisionedProductRequest added in v0.9.0

func (c *Client) DescribeProvisionedProductRequest(input *DescribeProvisionedProductInput) DescribeProvisionedProductRequest

DescribeProvisionedProductRequest returns a request value for making API operation for AWS Service Catalog.

Gets information about the specified provisioned product.

// Example sending a request using DescribeProvisionedProductRequest.
req := client.DescribeProvisionedProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProduct

func (*Client) DescribeProvisioningArtifactRequest added in v0.9.0

func (c *Client) DescribeProvisioningArtifactRequest(input *DescribeProvisioningArtifactInput) DescribeProvisioningArtifactRequest

DescribeProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using DescribeProvisioningArtifactRequest.
req := client.DescribeProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningArtifact

func (*Client) DescribeProvisioningParametersRequest added in v0.9.0

func (c *Client) DescribeProvisioningParametersRequest(input *DescribeProvisioningParametersInput) DescribeProvisioningParametersRequest

DescribeProvisioningParametersRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DescribeProvisioningParametersRequest.
req := client.DescribeProvisioningParametersRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParameters

func (*Client) DescribeRecordRequest added in v0.9.0

func (c *Client) DescribeRecordRequest(input *DescribeRecordInput) DescribeRecordRequest

DescribeRecordRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DescribeRecordRequest.
req := client.DescribeRecordRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeRecord

func (*Client) DescribeServiceActionExecutionParametersRequest added in v0.10.0

func (c *Client) DescribeServiceActionExecutionParametersRequest(input *DescribeServiceActionExecutionParametersInput) DescribeServiceActionExecutionParametersRequest

DescribeServiceActionExecutionParametersRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DescribeServiceActionExecutionParametersRequest.
req := client.DescribeServiceActionExecutionParametersRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionExecutionParameters

func (*Client) DescribeServiceActionRequest added in v0.9.0

func (c *Client) DescribeServiceActionRequest(input *DescribeServiceActionInput) DescribeServiceActionRequest

DescribeServiceActionRequest returns a request value for making API operation for AWS Service Catalog.

Describes a self-service action.

// Example sending a request using DescribeServiceActionRequest.
req := client.DescribeServiceActionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceAction

func (*Client) DescribeTagOptionRequest added in v0.9.0

func (c *Client) DescribeTagOptionRequest(input *DescribeTagOptionInput) DescribeTagOptionRequest

DescribeTagOptionRequest returns a request value for making API operation for AWS Service Catalog.

Gets information about the specified TagOption.

// Example sending a request using DescribeTagOptionRequest.
req := client.DescribeTagOptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeTagOption

func (*Client) DisableAWSOrganizationsAccessRequest added in v0.9.0

func (c *Client) DisableAWSOrganizationsAccessRequest(input *DisableAWSOrganizationsAccessInput) DisableAWSOrganizationsAccessRequest

DisableAWSOrganizationsAccessRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using DisableAWSOrganizationsAccessRequest.
req := client.DisableAWSOrganizationsAccessRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisableAWSOrganizationsAccess

func (*Client) DisassociateBudgetFromResourceRequest added in v0.9.0

func (c *Client) DisassociateBudgetFromResourceRequest(input *DisassociateBudgetFromResourceInput) DisassociateBudgetFromResourceRequest

DisassociateBudgetFromResourceRequest returns a request value for making API operation for AWS Service Catalog.

Disassociates the specified budget from the specified resource.

// Example sending a request using DisassociateBudgetFromResourceRequest.
req := client.DisassociateBudgetFromResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociateBudgetFromResource

func (*Client) DisassociatePrincipalFromPortfolioRequest added in v0.9.0

func (c *Client) DisassociatePrincipalFromPortfolioRequest(input *DisassociatePrincipalFromPortfolioInput) DisassociatePrincipalFromPortfolioRequest

DisassociatePrincipalFromPortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Disassociates a previously associated principal ARN from a specified portfolio.

// Example sending a request using DisassociatePrincipalFromPortfolioRequest.
req := client.DisassociatePrincipalFromPortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociatePrincipalFromPortfolio

func (*Client) DisassociateProductFromPortfolioRequest added in v0.9.0

func (c *Client) DisassociateProductFromPortfolioRequest(input *DisassociateProductFromPortfolioInput) DisassociateProductFromPortfolioRequest

DisassociateProductFromPortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Disassociates the specified product from the specified portfolio.

A delegated admin is authorized to invoke this command.

// Example sending a request using DisassociateProductFromPortfolioRequest.
req := client.DisassociateProductFromPortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociateProductFromPortfolio

func (*Client) DisassociateServiceActionFromProvisioningArtifactRequest added in v0.9.0

func (c *Client) DisassociateServiceActionFromProvisioningArtifactRequest(input *DisassociateServiceActionFromProvisioningArtifactInput) DisassociateServiceActionFromProvisioningArtifactRequest

DisassociateServiceActionFromProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using DisassociateServiceActionFromProvisioningArtifactRequest.
req := client.DisassociateServiceActionFromProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociateServiceActionFromProvisioningArtifact

func (*Client) DisassociateTagOptionFromResourceRequest added in v0.9.0

func (c *Client) DisassociateTagOptionFromResourceRequest(input *DisassociateTagOptionFromResourceInput) DisassociateTagOptionFromResourceRequest

DisassociateTagOptionFromResourceRequest returns a request value for making API operation for AWS Service Catalog.

Disassociates the specified TagOption from the specified resource.

// Example sending a request using DisassociateTagOptionFromResourceRequest.
req := client.DisassociateTagOptionFromResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociateTagOptionFromResource

func (*Client) EnableAWSOrganizationsAccessRequest added in v0.9.0

func (c *Client) EnableAWSOrganizationsAccessRequest(input *EnableAWSOrganizationsAccessInput) EnableAWSOrganizationsAccessRequest

EnableAWSOrganizationsAccessRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using EnableAWSOrganizationsAccessRequest.
req := client.EnableAWSOrganizationsAccessRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/EnableAWSOrganizationsAccess

func (*Client) ExecuteProvisionedProductPlanRequest added in v0.9.0

func (c *Client) ExecuteProvisionedProductPlanRequest(input *ExecuteProvisionedProductPlanInput) ExecuteProvisionedProductPlanRequest

ExecuteProvisionedProductPlanRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using ExecuteProvisionedProductPlanRequest.
req := client.ExecuteProvisionedProductPlanRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductPlan

func (*Client) ExecuteProvisionedProductServiceActionRequest added in v0.9.0

func (c *Client) ExecuteProvisionedProductServiceActionRequest(input *ExecuteProvisionedProductServiceActionInput) ExecuteProvisionedProductServiceActionRequest

ExecuteProvisionedProductServiceActionRequest returns a request value for making API operation for AWS Service Catalog.

Executes a self-service action against a provisioned product.

// Example sending a request using ExecuteProvisionedProductServiceActionRequest.
req := client.ExecuteProvisionedProductServiceActionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductServiceAction

func (*Client) GetAWSOrganizationsAccessStatusRequest added in v0.9.0

func (c *Client) GetAWSOrganizationsAccessStatusRequest(input *GetAWSOrganizationsAccessStatusInput) GetAWSOrganizationsAccessStatusRequest

GetAWSOrganizationsAccessStatusRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using GetAWSOrganizationsAccessStatusRequest.
req := client.GetAWSOrganizationsAccessStatusRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/GetAWSOrganizationsAccessStatus

func (*Client) ListAcceptedPortfolioSharesRequest added in v0.9.0

func (c *Client) ListAcceptedPortfolioSharesRequest(input *ListAcceptedPortfolioSharesInput) ListAcceptedPortfolioSharesRequest

ListAcceptedPortfolioSharesRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using ListAcceptedPortfolioSharesRequest.
req := client.ListAcceptedPortfolioSharesRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListAcceptedPortfolioShares

func (*Client) ListBudgetsForResourceRequest added in v0.9.0

func (c *Client) ListBudgetsForResourceRequest(input *ListBudgetsForResourceInput) ListBudgetsForResourceRequest

ListBudgetsForResourceRequest returns a request value for making API operation for AWS Service Catalog.

Lists all the budgets associated to the specified resource.

// Example sending a request using ListBudgetsForResourceRequest.
req := client.ListBudgetsForResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListBudgetsForResource

func (*Client) ListConstraintsForPortfolioRequest added in v0.9.0

func (c *Client) ListConstraintsForPortfolioRequest(input *ListConstraintsForPortfolioInput) ListConstraintsForPortfolioRequest

ListConstraintsForPortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Lists the constraints for the specified portfolio and product.

// Example sending a request using ListConstraintsForPortfolioRequest.
req := client.ListConstraintsForPortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListConstraintsForPortfolio

func (*Client) ListLaunchPathsRequest added in v0.9.0

func (c *Client) ListLaunchPathsRequest(input *ListLaunchPathsInput) ListLaunchPathsRequest

ListLaunchPathsRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using ListLaunchPathsRequest.
req := client.ListLaunchPathsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListLaunchPaths

func (*Client) ListOrganizationPortfolioAccessRequest added in v0.9.0

func (c *Client) ListOrganizationPortfolioAccessRequest(input *ListOrganizationPortfolioAccessInput) ListOrganizationPortfolioAccessRequest

ListOrganizationPortfolioAccessRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using ListOrganizationPortfolioAccessRequest.
req := client.ListOrganizationPortfolioAccessRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListOrganizationPortfolioAccess

func (*Client) ListPortfolioAccessRequest added in v0.9.0

func (c *Client) ListPortfolioAccessRequest(input *ListPortfolioAccessInput) ListPortfolioAccessRequest

ListPortfolioAccessRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using ListPortfolioAccessRequest.
req := client.ListPortfolioAccessRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListPortfolioAccess

func (*Client) ListPortfoliosForProductRequest added in v0.9.0

func (c *Client) ListPortfoliosForProductRequest(input *ListPortfoliosForProductInput) ListPortfoliosForProductRequest

ListPortfoliosForProductRequest returns a request value for making API operation for AWS Service Catalog.

Lists all portfolios that the specified product is associated with.

// Example sending a request using ListPortfoliosForProductRequest.
req := client.ListPortfoliosForProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListPortfoliosForProduct

func (*Client) ListPortfoliosRequest added in v0.9.0

func (c *Client) ListPortfoliosRequest(input *ListPortfoliosInput) ListPortfoliosRequest

ListPortfoliosRequest returns a request value for making API operation for AWS Service Catalog.

Lists all portfolios in the catalog.

// Example sending a request using ListPortfoliosRequest.
req := client.ListPortfoliosRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListPortfolios

func (*Client) ListPrincipalsForPortfolioRequest added in v0.9.0

func (c *Client) ListPrincipalsForPortfolioRequest(input *ListPrincipalsForPortfolioInput) ListPrincipalsForPortfolioRequest

ListPrincipalsForPortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Lists all principal ARNs associated with the specified portfolio.

// Example sending a request using ListPrincipalsForPortfolioRequest.
req := client.ListPrincipalsForPortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListPrincipalsForPortfolio

func (*Client) ListProvisionedProductPlansRequest added in v0.9.0

func (c *Client) ListProvisionedProductPlansRequest(input *ListProvisionedProductPlansInput) ListProvisionedProductPlansRequest

ListProvisionedProductPlansRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using ListProvisionedProductPlansRequest.
req := client.ListProvisionedProductPlansRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisionedProductPlans

func (*Client) ListProvisioningArtifactsForServiceActionRequest added in v0.9.0

func (c *Client) ListProvisioningArtifactsForServiceActionRequest(input *ListProvisioningArtifactsForServiceActionInput) ListProvisioningArtifactsForServiceActionRequest

ListProvisioningArtifactsForServiceActionRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using ListProvisioningArtifactsForServiceActionRequest.
req := client.ListProvisioningArtifactsForServiceActionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisioningArtifactsForServiceAction

func (*Client) ListProvisioningArtifactsRequest added in v0.9.0

func (c *Client) ListProvisioningArtifactsRequest(input *ListProvisioningArtifactsInput) ListProvisioningArtifactsRequest

ListProvisioningArtifactsRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using ListProvisioningArtifactsRequest.
req := client.ListProvisioningArtifactsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisioningArtifacts

func (*Client) ListRecordHistoryRequest added in v0.9.0

func (c *Client) ListRecordHistoryRequest(input *ListRecordHistoryInput) ListRecordHistoryRequest

ListRecordHistoryRequest returns a request value for making API operation for AWS Service Catalog.

Lists the specified requests or all performed requests.

// Example sending a request using ListRecordHistoryRequest.
req := client.ListRecordHistoryRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListRecordHistory

func (*Client) ListResourcesForTagOptionRequest added in v0.9.0

func (c *Client) ListResourcesForTagOptionRequest(input *ListResourcesForTagOptionInput) ListResourcesForTagOptionRequest

ListResourcesForTagOptionRequest returns a request value for making API operation for AWS Service Catalog.

Lists the resources associated with the specified TagOption.

// Example sending a request using ListResourcesForTagOptionRequest.
req := client.ListResourcesForTagOptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListResourcesForTagOption

func (*Client) ListServiceActionsForProvisioningArtifactRequest added in v0.9.0

func (c *Client) ListServiceActionsForProvisioningArtifactRequest(input *ListServiceActionsForProvisioningArtifactInput) ListServiceActionsForProvisioningArtifactRequest

ListServiceActionsForProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using ListServiceActionsForProvisioningArtifactRequest.
req := client.ListServiceActionsForProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListServiceActionsForProvisioningArtifact

func (*Client) ListServiceActionsRequest added in v0.9.0

func (c *Client) ListServiceActionsRequest(input *ListServiceActionsInput) ListServiceActionsRequest

ListServiceActionsRequest returns a request value for making API operation for AWS Service Catalog.

Lists all self-service actions.

// Example sending a request using ListServiceActionsRequest.
req := client.ListServiceActionsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListServiceActions

func (*Client) ListStackInstancesForProvisionedProductRequest added in v0.10.0

func (c *Client) ListStackInstancesForProvisionedProductRequest(input *ListStackInstancesForProvisionedProductInput) ListStackInstancesForProvisionedProductRequest

ListStackInstancesForProvisionedProductRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using ListStackInstancesForProvisionedProductRequest.
req := client.ListStackInstancesForProvisionedProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListStackInstancesForProvisionedProduct

func (*Client) ListTagOptionsRequest added in v0.9.0

func (c *Client) ListTagOptionsRequest(input *ListTagOptionsInput) ListTagOptionsRequest

ListTagOptionsRequest returns a request value for making API operation for AWS Service Catalog.

Lists the specified TagOptions or all TagOptions.

// Example sending a request using ListTagOptionsRequest.
req := client.ListTagOptionsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListTagOptions

func (*Client) ProvisionProductRequest added in v0.9.0

func (c *Client) ProvisionProductRequest(input *ProvisionProductInput) ProvisionProductRequest

ProvisionProductRequest returns a request value for making API operation for AWS Service Catalog.

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".

// Example sending a request using ProvisionProductRequest.
req := client.ProvisionProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisionProduct

func (*Client) RejectPortfolioShareRequest added in v0.9.0

func (c *Client) RejectPortfolioShareRequest(input *RejectPortfolioShareInput) RejectPortfolioShareRequest

RejectPortfolioShareRequest returns a request value for making API operation for AWS Service Catalog.

Rejects an offer to share the specified portfolio.

// Example sending a request using RejectPortfolioShareRequest.
req := client.RejectPortfolioShareRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/RejectPortfolioShare

func (*Client) ScanProvisionedProductsRequest added in v0.9.0

func (c *Client) ScanProvisionedProductsRequest(input *ScanProvisionedProductsInput) ScanProvisionedProductsRequest

ScanProvisionedProductsRequest returns a request value for making API operation for AWS Service Catalog.

Lists the provisioned products that are available (not terminated).

To use additional filtering, see SearchProvisionedProducts.

// Example sending a request using ScanProvisionedProductsRequest.
req := client.ScanProvisionedProductsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ScanProvisionedProducts

func (*Client) SearchProductsAsAdminRequest added in v0.9.0

func (c *Client) SearchProductsAsAdminRequest(input *SearchProductsAsAdminInput) SearchProductsAsAdminRequest

SearchProductsAsAdminRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using SearchProductsAsAdminRequest.
req := client.SearchProductsAsAdminRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SearchProductsAsAdmin

func (*Client) SearchProductsRequest added in v0.9.0

func (c *Client) SearchProductsRequest(input *SearchProductsInput) SearchProductsRequest

SearchProductsRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using SearchProductsRequest.
req := client.SearchProductsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SearchProducts

func (*Client) SearchProvisionedProductsRequest added in v0.9.0

func (c *Client) SearchProvisionedProductsRequest(input *SearchProvisionedProductsInput) SearchProvisionedProductsRequest

SearchProvisionedProductsRequest returns a request value for making API operation for AWS Service Catalog.

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

// Example sending a request using SearchProvisionedProductsRequest.
req := client.SearchProvisionedProductsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SearchProvisionedProducts

func (*Client) TerminateProvisionedProductRequest added in v0.9.0

func (c *Client) TerminateProvisionedProductRequest(input *TerminateProvisionedProductInput) TerminateProvisionedProductRequest

TerminateProvisionedProductRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using TerminateProvisionedProductRequest.
req := client.TerminateProvisionedProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/TerminateProvisionedProduct

func (*Client) UpdateConstraintRequest added in v0.9.0

func (c *Client) UpdateConstraintRequest(input *UpdateConstraintInput) UpdateConstraintRequest

UpdateConstraintRequest returns a request value for making API operation for AWS Service Catalog.

Updates the specified constraint.

// Example sending a request using UpdateConstraintRequest.
req := client.UpdateConstraintRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateConstraint

func (*Client) UpdatePortfolioRequest added in v0.9.0

func (c *Client) UpdatePortfolioRequest(input *UpdatePortfolioInput) UpdatePortfolioRequest

UpdatePortfolioRequest returns a request value for making API operation for AWS Service Catalog.

Updates the specified portfolio.

You cannot update a product that was shared with you.

// Example sending a request using UpdatePortfolioRequest.
req := client.UpdatePortfolioRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdatePortfolio

func (*Client) UpdateProductRequest added in v0.9.0

func (c *Client) UpdateProductRequest(input *UpdateProductInput) UpdateProductRequest

UpdateProductRequest returns a request value for making API operation for AWS Service Catalog.

Updates the specified product.

// Example sending a request using UpdateProductRequest.
req := client.UpdateProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateProduct

func (*Client) UpdateProvisionedProductPropertiesRequest added in v0.9.0

func (c *Client) UpdateProvisionedProductPropertiesRequest(input *UpdateProvisionedProductPropertiesInput) UpdateProvisionedProductPropertiesRequest

UpdateProvisionedProductPropertiesRequest returns a request value for making API operation for AWS Service Catalog.

Requests updates to the properties of the specified provisioned product.

// Example sending a request using UpdateProvisionedProductPropertiesRequest.
req := client.UpdateProvisionedProductPropertiesRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateProvisionedProductProperties

func (*Client) UpdateProvisionedProductRequest added in v0.9.0

func (c *Client) UpdateProvisionedProductRequest(input *UpdateProvisionedProductInput) UpdateProvisionedProductRequest

UpdateProvisionedProductRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using UpdateProvisionedProductRequest.
req := client.UpdateProvisionedProductRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateProvisionedProduct

func (*Client) UpdateProvisioningArtifactRequest added in v0.9.0

func (c *Client) UpdateProvisioningArtifactRequest(input *UpdateProvisioningArtifactInput) UpdateProvisioningArtifactRequest

UpdateProvisioningArtifactRequest returns a request value for making API operation for AWS Service Catalog.

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.

// Example sending a request using UpdateProvisioningArtifactRequest.
req := client.UpdateProvisioningArtifactRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateProvisioningArtifact

func (*Client) UpdateServiceActionRequest added in v0.9.0

func (c *Client) UpdateServiceActionRequest(input *UpdateServiceActionInput) UpdateServiceActionRequest

UpdateServiceActionRequest returns a request value for making API operation for AWS Service Catalog.

Updates a self-service action.

// Example sending a request using UpdateServiceActionRequest.
req := client.UpdateServiceActionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateServiceAction

func (*Client) UpdateTagOptionRequest added in v0.9.0

func (c *Client) UpdateTagOptionRequest(input *UpdateTagOptionInput) UpdateTagOptionRequest

UpdateTagOptionRequest returns a request value for making API operation for AWS Service Catalog.

Updates the specified TagOption.

// Example sending a request using UpdateTagOptionRequest.
req := client.UpdateTagOptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateTagOption

type CloudWatchDashboard added in v0.3.0

type CloudWatchDashboard struct {

	// The name of the CloudWatch dashboard.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

Information about a CloudWatch dashboard.

func (CloudWatchDashboard) String added in v0.3.0

func (s CloudWatchDashboard) String() string

String returns the string representation

type ConstraintDetail

type ConstraintDetail struct {

	// The identifier of the constraint.
	ConstraintId *string `min:"1" type:"string"`

	// The description of the constraint.
	Description *string `type:"string"`

	// The owner of the constraint.
	Owner *string `type:"string"`

	// The identifier of the portfolio the product resides in. The constraint applies
	// only to the instance of the product that lives within this portfolio.
	PortfolioId *string `min:"1" type:"string"`

	// The identifier of the product the constraint applies to. Note that a constraint
	// applies to a specific instance of a product within a certain portfolio.
	ProductId *string `min:"1" type:"string"`

	// The type of constraint.
	//
	//    * LAUNCH
	//
	//    * NOTIFICATION
	//
	//    * STACKSET
	//
	//    * TEMPLATE
	Type *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Information about a constraint.

func (ConstraintDetail) String

func (s ConstraintDetail) String() string

String returns the string representation

type ConstraintSummary

type ConstraintSummary struct {

	// The description of the constraint.
	Description *string `type:"string"`

	// The type of constraint.
	//
	//    * LAUNCH
	//
	//    * NOTIFICATION
	//
	//    * STACKSET
	//
	//    * TEMPLATE
	Type *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Summary information about a constraint.

func (ConstraintSummary) String

func (s ConstraintSummary) String() string

String returns the string representation

type CopyOption

type CopyOption string
const (
	CopyOptionCopyTags CopyOption = "CopyTags"
)

Enum values for CopyOption

func (CopyOption) MarshalValue added in v0.3.0

func (enum CopyOption) MarshalValue() (string, error)

func (CopyOption) MarshalValueBuf added in v0.3.0

func (enum CopyOption) MarshalValueBuf(b []byte) ([]byte, error)

type CopyProductInput

type CopyProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The copy options. If the value is CopyTags, the tags from the source product
	// are copied to the target product.
	CopyOptions []CopyOption `type:"list"`

	// 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 is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The Amazon Resource Name (ARN) of the source product.
	//
	// SourceProductArn is a required field
	SourceProductArn *string `min:"1" type:"string" required:"true"`

	// 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 `type:"list"`

	// The identifier of the target product. By default, a new product is created.
	TargetProductId *string `min:"1" type:"string"`

	// A name for the target product. The default is the name of the source product.
	TargetProductName *string `type:"string"`
	// contains filtered or unexported fields
}

func (CopyProductInput) String

func (s CopyProductInput) String() string

String returns the string representation

func (*CopyProductInput) Validate

func (s *CopyProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CopyProductOutput

type CopyProductOutput struct {

	// The token to use to track the progress of the operation.
	CopyProductToken *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (CopyProductOutput) String

func (s CopyProductOutput) String() string

String returns the string representation

type CopyProductRequest

type CopyProductRequest struct {
	*aws.Request
	Input *CopyProductInput
	Copy  func(*CopyProductInput) CopyProductRequest
}

CopyProductRequest is the request type for the CopyProduct API operation.

func (CopyProductRequest) Send

Send marshals and sends the CopyProduct API request.

type CopyProductResponse added in v0.9.0

type CopyProductResponse struct {
	*CopyProductOutput
	// contains filtered or unexported fields
}

CopyProductResponse is the response type for the CopyProduct API operation.

func (*CopyProductResponse) SDKResponseMetdata added in v0.9.0

func (r *CopyProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CopyProduct request.

type CopyProductStatus

type CopyProductStatus string
const (
	CopyProductStatusSucceeded  CopyProductStatus = "SUCCEEDED"
	CopyProductStatusInProgress CopyProductStatus = "IN_PROGRESS"
	CopyProductStatusFailed     CopyProductStatus = "FAILED"
)

Enum values for CopyProductStatus

func (CopyProductStatus) MarshalValue added in v0.3.0

func (enum CopyProductStatus) MarshalValue() (string, error)

func (CopyProductStatus) MarshalValueBuf added in v0.3.0

func (enum CopyProductStatus) MarshalValueBuf(b []byte) ([]byte, error)

type CreateConstraintInput

type CreateConstraintInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The description of the constraint.
	Description *string `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 is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// 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 is a required field
	Parameters *string `type:"string" required:"true"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The type of constraint.
	//
	//    * LAUNCH
	//
	//    * NOTIFICATION
	//
	//    * RESOURCE_UPDATE
	//
	//    * STACKSET
	//
	//    * TEMPLATE
	//
	// Type is a required field
	Type *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateConstraintInput) String

func (s CreateConstraintInput) String() string

String returns the string representation

func (*CreateConstraintInput) Validate

func (s *CreateConstraintInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateConstraintOutput

type CreateConstraintOutput struct {

	// Information about the constraint.
	ConstraintDetail *ConstraintDetail `type:"structure"`

	// The constraint parameters.
	ConstraintParameters *string `type:"string"`

	// The status of the current request.
	Status Status `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (CreateConstraintOutput) String

func (s CreateConstraintOutput) String() string

String returns the string representation

type CreateConstraintRequest

type CreateConstraintRequest struct {
	*aws.Request
	Input *CreateConstraintInput
	Copy  func(*CreateConstraintInput) CreateConstraintRequest
}

CreateConstraintRequest is the request type for the CreateConstraint API operation.

func (CreateConstraintRequest) Send

Send marshals and sends the CreateConstraint API request.

type CreateConstraintResponse added in v0.9.0

type CreateConstraintResponse struct {
	*CreateConstraintOutput
	// contains filtered or unexported fields
}

CreateConstraintResponse is the response type for the CreateConstraint API operation.

func (*CreateConstraintResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateConstraintResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateConstraint request.

type CreatePortfolioInput

type CreatePortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The description of the portfolio.
	Description *string `type:"string"`

	// The name to use for display purposes.
	//
	// DisplayName is a required field
	DisplayName *string `min:"1" type:"string" required:"true"`

	// 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 is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The name of the portfolio provider.
	//
	// ProviderName is a required field
	ProviderName *string `min:"1" type:"string" required:"true"`

	// One or more tags.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreatePortfolioInput) String

func (s CreatePortfolioInput) String() string

String returns the string representation

func (*CreatePortfolioInput) Validate

func (s *CreatePortfolioInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreatePortfolioOutput

type CreatePortfolioOutput struct {

	// Information about the portfolio.
	PortfolioDetail *PortfolioDetail `type:"structure"`

	// Information about the tags associated with the portfolio.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreatePortfolioOutput) String

func (s CreatePortfolioOutput) String() string

String returns the string representation

type CreatePortfolioRequest

type CreatePortfolioRequest struct {
	*aws.Request
	Input *CreatePortfolioInput
	Copy  func(*CreatePortfolioInput) CreatePortfolioRequest
}

CreatePortfolioRequest is the request type for the CreatePortfolio API operation.

func (CreatePortfolioRequest) Send

Send marshals and sends the CreatePortfolio API request.

type CreatePortfolioResponse added in v0.9.0

type CreatePortfolioResponse struct {
	*CreatePortfolioOutput
	// contains filtered or unexported fields
}

CreatePortfolioResponse is the response type for the CreatePortfolio API operation.

func (*CreatePortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *CreatePortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreatePortfolio request.

type CreatePortfolioShareInput

type CreatePortfolioShareInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The AWS account ID. For example, 123456789012.
	AccountId *string `type:"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 *OrganizationNode `type:"structure"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreatePortfolioShareInput) String

func (s CreatePortfolioShareInput) String() string

String returns the string representation

func (*CreatePortfolioShareInput) Validate

func (s *CreatePortfolioShareInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

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 `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (CreatePortfolioShareOutput) String

String returns the string representation

type CreatePortfolioShareRequest

type CreatePortfolioShareRequest struct {
	*aws.Request
	Input *CreatePortfolioShareInput
	Copy  func(*CreatePortfolioShareInput) CreatePortfolioShareRequest
}

CreatePortfolioShareRequest is the request type for the CreatePortfolioShare API operation.

func (CreatePortfolioShareRequest) Send

Send marshals and sends the CreatePortfolioShare API request.

type CreatePortfolioShareResponse added in v0.9.0

type CreatePortfolioShareResponse struct {
	*CreatePortfolioShareOutput
	// contains filtered or unexported fields
}

CreatePortfolioShareResponse is the response type for the CreatePortfolioShare API operation.

func (*CreatePortfolioShareResponse) SDKResponseMetdata added in v0.9.0

func (r *CreatePortfolioShareResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreatePortfolioShare request.

type CreateProductInput

type CreateProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The description of the product.
	Description *string `type:"string"`

	// The distributor of the product.
	Distributor *string `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 is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The name of the product.
	//
	// Name is a required field
	Name *string `type:"string" required:"true"`

	// The owner of the product.
	//
	// Owner is a required field
	Owner *string `type:"string" required:"true"`

	// The type of product.
	//
	// ProductType is a required field
	ProductType ProductType `type:"string" required:"true" enum:"true"`

	// The configuration of the provisioning artifact.
	//
	// ProvisioningArtifactParameters is a required field
	ProvisioningArtifactParameters *ProvisioningArtifactProperties `type:"structure" required:"true"`

	// The support information about the product.
	SupportDescription *string `type:"string"`

	// The contact email for product support.
	SupportEmail *string `type:"string"`

	// The contact URL for product support.
	SupportUrl *string `type:"string"`

	// One or more tags.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreateProductInput) String

func (s CreateProductInput) String() string

String returns the string representation

func (*CreateProductInput) Validate

func (s *CreateProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateProductOutput

type CreateProductOutput struct {

	// Information about the product view.
	ProductViewDetail *ProductViewDetail `type:"structure"`

	// Information about the provisioning artifact.
	ProvisioningArtifactDetail *ProvisioningArtifactDetail `type:"structure"`

	// Information about the tags associated with the product.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreateProductOutput) String

func (s CreateProductOutput) String() string

String returns the string representation

type CreateProductRequest

type CreateProductRequest struct {
	*aws.Request
	Input *CreateProductInput
	Copy  func(*CreateProductInput) CreateProductRequest
}

CreateProductRequest is the request type for the CreateProduct API operation.

func (CreateProductRequest) Send

Send marshals and sends the CreateProduct API request.

type CreateProductResponse added in v0.9.0

type CreateProductResponse struct {
	*CreateProductOutput
	// contains filtered or unexported fields
}

CreateProductResponse is the response type for the CreateProduct API operation.

func (*CreateProductResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateProduct request.

type CreateProvisionedProductPlanInput added in v0.3.0

type CreateProvisionedProductPlanInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `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 is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related
	// events.
	NotificationArns []string `type:"list"`

	// 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 `min:"1" type:"string"`

	// The name of the plan.
	//
	// PlanName is a required field
	PlanName *string `type:"string" required:"true"`

	// The plan type.
	//
	// PlanType is a required field
	PlanType ProvisionedProductPlanType `type:"string" required:"true" enum:"true"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// 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 is a required field
	ProvisionedProductName *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`

	// Parameters specified by the administrator that are required for provisioning
	// the product.
	ProvisioningParameters []UpdateProvisioningParameter `type:"list"`

	// 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 []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreateProvisionedProductPlanInput) String added in v0.3.0

String returns the string representation

func (*CreateProvisionedProductPlanInput) Validate added in v0.3.0

Validate inspects the fields of the type to determine if they are valid.

type CreateProvisionedProductPlanOutput added in v0.3.0

type CreateProvisionedProductPlanOutput struct {

	// The plan identifier.
	PlanId *string `min:"1" type:"string"`

	// The name of the plan.
	PlanName *string `type:"string"`

	// The product identifier.
	ProvisionProductId *string `min:"1" type:"string"`

	// The user-friendly name of the provisioned product.
	ProvisionedProductName *string `min:"1" type:"string"`

	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (CreateProvisionedProductPlanOutput) String added in v0.3.0

String returns the string representation

type CreateProvisionedProductPlanRequest added in v0.3.0

type CreateProvisionedProductPlanRequest struct {
	*aws.Request
	Input *CreateProvisionedProductPlanInput
	Copy  func(*CreateProvisionedProductPlanInput) CreateProvisionedProductPlanRequest
}

CreateProvisionedProductPlanRequest is the request type for the CreateProvisionedProductPlan API operation.

func (CreateProvisionedProductPlanRequest) Send added in v0.3.0

Send marshals and sends the CreateProvisionedProductPlan API request.

type CreateProvisionedProductPlanResponse added in v0.9.0

type CreateProvisionedProductPlanResponse struct {
	*CreateProvisionedProductPlanOutput
	// contains filtered or unexported fields
}

CreateProvisionedProductPlanResponse is the response type for the CreateProvisionedProductPlan API operation.

func (*CreateProvisionedProductPlanResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateProvisionedProductPlanResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateProvisionedProductPlan request.

type CreateProvisioningArtifactInput

type CreateProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `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 is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The configuration for the provisioning artifact.
	//
	// Parameters is a required field
	Parameters *ProvisioningArtifactProperties `type:"structure" required:"true"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateProvisioningArtifactInput) String

String returns the string representation

func (*CreateProvisioningArtifactInput) Validate

func (s *CreateProvisioningArtifactInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateProvisioningArtifactOutput

type CreateProvisioningArtifactOutput struct {

	// The URL of the CloudFormation template in Amazon S3, in JSON format.
	Info map[string]string `min:"1" type:"map"`

	// Information about the provisioning artifact.
	ProvisioningArtifactDetail *ProvisioningArtifactDetail `type:"structure"`

	// The status of the current request.
	Status Status `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (CreateProvisioningArtifactOutput) String

String returns the string representation

type CreateProvisioningArtifactRequest

type CreateProvisioningArtifactRequest struct {
	*aws.Request
	Input *CreateProvisioningArtifactInput
	Copy  func(*CreateProvisioningArtifactInput) CreateProvisioningArtifactRequest
}

CreateProvisioningArtifactRequest is the request type for the CreateProvisioningArtifact API operation.

func (CreateProvisioningArtifactRequest) Send

Send marshals and sends the CreateProvisioningArtifact API request.

type CreateProvisioningArtifactResponse added in v0.9.0

type CreateProvisioningArtifactResponse struct {
	*CreateProvisioningArtifactOutput
	// contains filtered or unexported fields
}

CreateProvisioningArtifactResponse is the response type for the CreateProvisioningArtifact API operation.

func (*CreateProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateProvisioningArtifactResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateProvisioningArtifact request.

type CreateServiceActionInput added in v0.6.0

type CreateServiceActionInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"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 is a required field
	Definition map[string]string `min:"1" type:"map" required:"true"`

	// The service action definition type. For example, SSM_AUTOMATION.
	//
	// DefinitionType is a required field
	DefinitionType ServiceActionDefinitionType `type:"string" required:"true" enum:"true"`

	// The self-service action description.
	Description *string `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 is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The self-service action name.
	//
	// Name is a required field
	Name *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateServiceActionInput) String added in v0.6.0

func (s CreateServiceActionInput) String() string

String returns the string representation

func (*CreateServiceActionInput) Validate added in v0.6.0

func (s *CreateServiceActionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateServiceActionOutput added in v0.6.0

type CreateServiceActionOutput struct {

	// An object containing information about the self-service action.
	ServiceActionDetail *ServiceActionDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (CreateServiceActionOutput) String added in v0.6.0

func (s CreateServiceActionOutput) String() string

String returns the string representation

type CreateServiceActionRequest added in v0.6.0

type CreateServiceActionRequest struct {
	*aws.Request
	Input *CreateServiceActionInput
	Copy  func(*CreateServiceActionInput) CreateServiceActionRequest
}

CreateServiceActionRequest is the request type for the CreateServiceAction API operation.

func (CreateServiceActionRequest) Send added in v0.6.0

Send marshals and sends the CreateServiceAction API request.

type CreateServiceActionResponse added in v0.9.0

type CreateServiceActionResponse struct {
	*CreateServiceActionOutput
	// contains filtered or unexported fields
}

CreateServiceActionResponse is the response type for the CreateServiceAction API operation.

func (*CreateServiceActionResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateServiceActionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateServiceAction request.

type CreateTagOptionInput

type CreateTagOptionInput struct {

	// The TagOption key.
	//
	// Key is a required field
	Key *string `min:"1" type:"string" required:"true"`

	// The TagOption value.
	//
	// Value is a required field
	Value *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateTagOptionInput) String

func (s CreateTagOptionInput) String() string

String returns the string representation

func (*CreateTagOptionInput) Validate

func (s *CreateTagOptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateTagOptionOutput

type CreateTagOptionOutput struct {

	// Information about the TagOption.
	TagOptionDetail *TagOptionDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (CreateTagOptionOutput) String

func (s CreateTagOptionOutput) String() string

String returns the string representation

type CreateTagOptionRequest

type CreateTagOptionRequest struct {
	*aws.Request
	Input *CreateTagOptionInput
	Copy  func(*CreateTagOptionInput) CreateTagOptionRequest
}

CreateTagOptionRequest is the request type for the CreateTagOption API operation.

func (CreateTagOptionRequest) Send

Send marshals and sends the CreateTagOption API request.

type CreateTagOptionResponse added in v0.9.0

type CreateTagOptionResponse struct {
	*CreateTagOptionOutput
	// contains filtered or unexported fields
}

CreateTagOptionResponse is the response type for the CreateTagOption API operation.

func (*CreateTagOptionResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateTagOptionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateTagOption request.

type DeleteConstraintInput

type DeleteConstraintInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The identifier of the constraint.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteConstraintInput) String

func (s DeleteConstraintInput) String() string

String returns the string representation

func (*DeleteConstraintInput) Validate

func (s *DeleteConstraintInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteConstraintOutput

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

func (DeleteConstraintOutput) String

func (s DeleteConstraintOutput) String() string

String returns the string representation

type DeleteConstraintRequest

type DeleteConstraintRequest struct {
	*aws.Request
	Input *DeleteConstraintInput
	Copy  func(*DeleteConstraintInput) DeleteConstraintRequest
}

DeleteConstraintRequest is the request type for the DeleteConstraint API operation.

func (DeleteConstraintRequest) Send

Send marshals and sends the DeleteConstraint API request.

type DeleteConstraintResponse added in v0.9.0

type DeleteConstraintResponse struct {
	*DeleteConstraintOutput
	// contains filtered or unexported fields
}

DeleteConstraintResponse is the response type for the DeleteConstraint API operation.

func (*DeleteConstraintResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteConstraintResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteConstraint request.

type DeletePortfolioInput

type DeletePortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The portfolio identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeletePortfolioInput) String

func (s DeletePortfolioInput) String() string

String returns the string representation

func (*DeletePortfolioInput) Validate

func (s *DeletePortfolioInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeletePortfolioOutput

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

func (DeletePortfolioOutput) String

func (s DeletePortfolioOutput) String() string

String returns the string representation

type DeletePortfolioRequest

type DeletePortfolioRequest struct {
	*aws.Request
	Input *DeletePortfolioInput
	Copy  func(*DeletePortfolioInput) DeletePortfolioRequest
}

DeletePortfolioRequest is the request type for the DeletePortfolio API operation.

func (DeletePortfolioRequest) Send

Send marshals and sends the DeletePortfolio API request.

type DeletePortfolioResponse added in v0.9.0

type DeletePortfolioResponse struct {
	*DeletePortfolioOutput
	// contains filtered or unexported fields
}

DeletePortfolioResponse is the response type for the DeletePortfolio API operation.

func (*DeletePortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *DeletePortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeletePortfolio request.

type DeletePortfolioShareInput

type DeletePortfolioShareInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The AWS account ID.
	AccountId *string `type:"string"`

	// The organization node to whom you are going to stop sharing.
	OrganizationNode *OrganizationNode `type:"structure"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeletePortfolioShareInput) String

func (s DeletePortfolioShareInput) String() string

String returns the string representation

func (*DeletePortfolioShareInput) Validate

func (s *DeletePortfolioShareInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

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 `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (DeletePortfolioShareOutput) String

String returns the string representation

type DeletePortfolioShareRequest

type DeletePortfolioShareRequest struct {
	*aws.Request
	Input *DeletePortfolioShareInput
	Copy  func(*DeletePortfolioShareInput) DeletePortfolioShareRequest
}

DeletePortfolioShareRequest is the request type for the DeletePortfolioShare API operation.

func (DeletePortfolioShareRequest) Send

Send marshals and sends the DeletePortfolioShare API request.

type DeletePortfolioShareResponse added in v0.9.0

type DeletePortfolioShareResponse struct {
	*DeletePortfolioShareOutput
	// contains filtered or unexported fields
}

DeletePortfolioShareResponse is the response type for the DeletePortfolioShare API operation.

func (*DeletePortfolioShareResponse) SDKResponseMetdata added in v0.9.0

func (r *DeletePortfolioShareResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeletePortfolioShare request.

type DeleteProductInput

type DeleteProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteProductInput) String

func (s DeleteProductInput) String() string

String returns the string representation

func (*DeleteProductInput) Validate

func (s *DeleteProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteProductOutput

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

func (DeleteProductOutput) String

func (s DeleteProductOutput) String() string

String returns the string representation

type DeleteProductRequest

type DeleteProductRequest struct {
	*aws.Request
	Input *DeleteProductInput
	Copy  func(*DeleteProductInput) DeleteProductRequest
}

DeleteProductRequest is the request type for the DeleteProduct API operation.

func (DeleteProductRequest) Send

Send marshals and sends the DeleteProduct API request.

type DeleteProductResponse added in v0.9.0

type DeleteProductResponse struct {
	*DeleteProductOutput
	// contains filtered or unexported fields
}

DeleteProductResponse is the response type for the DeleteProduct API operation.

func (*DeleteProductResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteProduct request.

type DeleteProvisionedProductPlanInput added in v0.3.0

type DeleteProvisionedProductPlanInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// If set to true, AWS Service Catalog stops managing the specified provisioned
	// product even if it cannot delete the underlying resources.
	IgnoreErrors *bool `type:"boolean"`

	// The plan identifier.
	//
	// PlanId is a required field
	PlanId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteProvisionedProductPlanInput) String added in v0.3.0

String returns the string representation

func (*DeleteProvisionedProductPlanInput) Validate added in v0.3.0

Validate inspects the fields of the type to determine if they are valid.

type DeleteProvisionedProductPlanOutput added in v0.3.0

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

func (DeleteProvisionedProductPlanOutput) String added in v0.3.0

String returns the string representation

type DeleteProvisionedProductPlanRequest added in v0.3.0

type DeleteProvisionedProductPlanRequest struct {
	*aws.Request
	Input *DeleteProvisionedProductPlanInput
	Copy  func(*DeleteProvisionedProductPlanInput) DeleteProvisionedProductPlanRequest
}

DeleteProvisionedProductPlanRequest is the request type for the DeleteProvisionedProductPlan API operation.

func (DeleteProvisionedProductPlanRequest) Send added in v0.3.0

Send marshals and sends the DeleteProvisionedProductPlan API request.

type DeleteProvisionedProductPlanResponse added in v0.9.0

type DeleteProvisionedProductPlanResponse struct {
	*DeleteProvisionedProductPlanOutput
	// contains filtered or unexported fields
}

DeleteProvisionedProductPlanResponse is the response type for the DeleteProvisionedProductPlan API operation.

func (*DeleteProvisionedProductPlanResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteProvisionedProductPlanResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteProvisionedProductPlan request.

type DeleteProvisioningArtifactInput

type DeleteProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteProvisioningArtifactInput) String

String returns the string representation

func (*DeleteProvisioningArtifactInput) Validate

func (s *DeleteProvisioningArtifactInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteProvisioningArtifactOutput

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

func (DeleteProvisioningArtifactOutput) String

String returns the string representation

type DeleteProvisioningArtifactRequest

type DeleteProvisioningArtifactRequest struct {
	*aws.Request
	Input *DeleteProvisioningArtifactInput
	Copy  func(*DeleteProvisioningArtifactInput) DeleteProvisioningArtifactRequest
}

DeleteProvisioningArtifactRequest is the request type for the DeleteProvisioningArtifact API operation.

func (DeleteProvisioningArtifactRequest) Send

Send marshals and sends the DeleteProvisioningArtifact API request.

type DeleteProvisioningArtifactResponse added in v0.9.0

type DeleteProvisioningArtifactResponse struct {
	*DeleteProvisioningArtifactOutput
	// contains filtered or unexported fields
}

DeleteProvisioningArtifactResponse is the response type for the DeleteProvisioningArtifact API operation.

func (*DeleteProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteProvisioningArtifactResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteProvisioningArtifact request.

type DeleteServiceActionInput added in v0.6.0

type DeleteServiceActionInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteServiceActionInput) String added in v0.6.0

func (s DeleteServiceActionInput) String() string

String returns the string representation

func (*DeleteServiceActionInput) Validate added in v0.6.0

func (s *DeleteServiceActionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteServiceActionOutput added in v0.6.0

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

func (DeleteServiceActionOutput) String added in v0.6.0

func (s DeleteServiceActionOutput) String() string

String returns the string representation

type DeleteServiceActionRequest added in v0.6.0

type DeleteServiceActionRequest struct {
	*aws.Request
	Input *DeleteServiceActionInput
	Copy  func(*DeleteServiceActionInput) DeleteServiceActionRequest
}

DeleteServiceActionRequest is the request type for the DeleteServiceAction API operation.

func (DeleteServiceActionRequest) Send added in v0.6.0

Send marshals and sends the DeleteServiceAction API request.

type DeleteServiceActionResponse added in v0.9.0

type DeleteServiceActionResponse struct {
	*DeleteServiceActionOutput
	// contains filtered or unexported fields
}

DeleteServiceActionResponse is the response type for the DeleteServiceAction API operation.

func (*DeleteServiceActionResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteServiceActionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteServiceAction request.

type DeleteTagOptionInput added in v0.3.0

type DeleteTagOptionInput struct {

	// The TagOption identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteTagOptionInput) String added in v0.3.0

func (s DeleteTagOptionInput) String() string

String returns the string representation

func (*DeleteTagOptionInput) Validate added in v0.3.0

func (s *DeleteTagOptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteTagOptionOutput added in v0.3.0

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

func (DeleteTagOptionOutput) String added in v0.3.0

func (s DeleteTagOptionOutput) String() string

String returns the string representation

type DeleteTagOptionRequest added in v0.3.0

type DeleteTagOptionRequest struct {
	*aws.Request
	Input *DeleteTagOptionInput
	Copy  func(*DeleteTagOptionInput) DeleteTagOptionRequest
}

DeleteTagOptionRequest is the request type for the DeleteTagOption API operation.

func (DeleteTagOptionRequest) Send added in v0.3.0

Send marshals and sends the DeleteTagOption API request.

type DeleteTagOptionResponse added in v0.9.0

type DeleteTagOptionResponse struct {
	*DeleteTagOptionOutput
	// contains filtered or unexported fields
}

DeleteTagOptionResponse is the response type for the DeleteTagOption API operation.

func (*DeleteTagOptionResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteTagOptionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteTagOption request.

type DescribeConstraintInput

type DescribeConstraintInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The identifier of the constraint.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeConstraintInput) String

func (s DescribeConstraintInput) String() string

String returns the string representation

func (*DescribeConstraintInput) Validate

func (s *DescribeConstraintInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeConstraintOutput

type DescribeConstraintOutput struct {

	// Information about the constraint.
	ConstraintDetail *ConstraintDetail `type:"structure"`

	// The constraint parameters.
	ConstraintParameters *string `type:"string"`

	// The status of the current request.
	Status Status `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (DescribeConstraintOutput) String

func (s DescribeConstraintOutput) String() string

String returns the string representation

type DescribeConstraintRequest

type DescribeConstraintRequest struct {
	*aws.Request
	Input *DescribeConstraintInput
	Copy  func(*DescribeConstraintInput) DescribeConstraintRequest
}

DescribeConstraintRequest is the request type for the DescribeConstraint API operation.

func (DescribeConstraintRequest) Send

Send marshals and sends the DescribeConstraint API request.

type DescribeConstraintResponse added in v0.9.0

type DescribeConstraintResponse struct {
	*DescribeConstraintOutput
	// contains filtered or unexported fields
}

DescribeConstraintResponse is the response type for the DescribeConstraint API operation.

func (*DescribeConstraintResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeConstraintResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeConstraint request.

type DescribeCopyProductStatusInput

type DescribeCopyProductStatusInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The token for the copy product operation. This token is returned by CopyProduct.
	//
	// CopyProductToken is a required field
	CopyProductToken *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeCopyProductStatusInput) String

String returns the string representation

func (*DescribeCopyProductStatusInput) Validate

func (s *DescribeCopyProductStatusInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeCopyProductStatusOutput

type DescribeCopyProductStatusOutput struct {

	// The status of the copy product operation.
	CopyProductStatus CopyProductStatus `type:"string" enum:"true"`

	// The status message.
	StatusDetail *string `type:"string"`

	// The identifier of the copied product.
	TargetProductId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (DescribeCopyProductStatusOutput) String

String returns the string representation

type DescribeCopyProductStatusRequest

type DescribeCopyProductStatusRequest struct {
	*aws.Request
	Input *DescribeCopyProductStatusInput
	Copy  func(*DescribeCopyProductStatusInput) DescribeCopyProductStatusRequest
}

DescribeCopyProductStatusRequest is the request type for the DescribeCopyProductStatus API operation.

func (DescribeCopyProductStatusRequest) Send

Send marshals and sends the DescribeCopyProductStatus API request.

type DescribeCopyProductStatusResponse added in v0.9.0

type DescribeCopyProductStatusResponse struct {
	*DescribeCopyProductStatusOutput
	// contains filtered or unexported fields
}

DescribeCopyProductStatusResponse is the response type for the DescribeCopyProductStatus API operation.

func (*DescribeCopyProductStatusResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeCopyProductStatusResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeCopyProductStatus request.

type DescribePortfolioInput

type DescribePortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The portfolio identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribePortfolioInput) String

func (s DescribePortfolioInput) String() string

String returns the string representation

func (*DescribePortfolioInput) Validate

func (s *DescribePortfolioInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribePortfolioOutput

type DescribePortfolioOutput struct {

	// Information about the associated budgets.
	Budgets []BudgetDetail `type:"list"`

	// Information about the portfolio.
	PortfolioDetail *PortfolioDetail `type:"structure"`

	// Information about the TagOptions associated with the portfolio.
	TagOptions []TagOptionDetail `type:"list"`

	// Information about the tags associated with the portfolio.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (DescribePortfolioOutput) String

func (s DescribePortfolioOutput) String() string

String returns the string representation

type DescribePortfolioRequest

type DescribePortfolioRequest struct {
	*aws.Request
	Input *DescribePortfolioInput
	Copy  func(*DescribePortfolioInput) DescribePortfolioRequest
}

DescribePortfolioRequest is the request type for the DescribePortfolio API operation.

func (DescribePortfolioRequest) Send

Send marshals and sends the DescribePortfolio API request.

type DescribePortfolioResponse added in v0.9.0

type DescribePortfolioResponse struct {
	*DescribePortfolioOutput
	// contains filtered or unexported fields
}

DescribePortfolioResponse is the response type for the DescribePortfolio API operation.

func (*DescribePortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribePortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribePortfolio request.

type DescribePortfolioShareStatusInput added in v0.6.0

type DescribePortfolioShareStatusInput struct {

	// The token for the portfolio share operation. This token is returned either
	// by CreatePortfolioShare or by DeletePortfolioShare.
	//
	// PortfolioShareToken is a required field
	PortfolioShareToken *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribePortfolioShareStatusInput) String added in v0.6.0

String returns the string representation

func (*DescribePortfolioShareStatusInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type DescribePortfolioShareStatusOutput added in v0.6.0

type DescribePortfolioShareStatusOutput struct {

	// Organization node identifier. It can be either account id, organizational
	// unit id or organization id.
	OrganizationNodeValue *string `type:"string"`

	// The portfolio identifier.
	PortfolioId *string `min:"1" type:"string"`

	// The token for the portfolio share operation. For example, share-6v24abcdefghi.
	PortfolioShareToken *string `min:"1" type:"string"`

	// Information about the portfolio share operation.
	ShareDetails *ShareDetails `type:"structure"`

	// Status of the portfolio share operation.
	Status ShareStatus `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (DescribePortfolioShareStatusOutput) String added in v0.6.0

String returns the string representation

type DescribePortfolioShareStatusRequest added in v0.6.0

type DescribePortfolioShareStatusRequest struct {
	*aws.Request
	Input *DescribePortfolioShareStatusInput
	Copy  func(*DescribePortfolioShareStatusInput) DescribePortfolioShareStatusRequest
}

DescribePortfolioShareStatusRequest is the request type for the DescribePortfolioShareStatus API operation.

func (DescribePortfolioShareStatusRequest) Send added in v0.6.0

Send marshals and sends the DescribePortfolioShareStatus API request.

type DescribePortfolioShareStatusResponse added in v0.9.0

type DescribePortfolioShareStatusResponse struct {
	*DescribePortfolioShareStatusOutput
	// contains filtered or unexported fields
}

DescribePortfolioShareStatusResponse is the response type for the DescribePortfolioShareStatus API operation.

func (*DescribePortfolioShareStatusResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribePortfolioShareStatusResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribePortfolioShareStatus request.

type DescribeProductAsAdminInput

type DescribeProductAsAdminInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product identifier.
	Id *string `min:"1" type:"string"`

	// The product name.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeProductAsAdminInput) String

String returns the string representation

func (*DescribeProductAsAdminInput) Validate

func (s *DescribeProductAsAdminInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeProductAsAdminOutput

type DescribeProductAsAdminOutput struct {

	// Information about the associated budgets.
	Budgets []BudgetDetail `type:"list"`

	// Information about the product view.
	ProductViewDetail *ProductViewDetail `type:"structure"`

	// Information about the provisioning artifacts (also known as versions) for
	// the specified product.
	ProvisioningArtifactSummaries []ProvisioningArtifactSummary `type:"list"`

	// Information about the TagOptions associated with the product.
	TagOptions []TagOptionDetail `type:"list"`

	// Information about the tags associated with the product.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeProductAsAdminOutput) String

String returns the string representation

type DescribeProductAsAdminRequest

type DescribeProductAsAdminRequest struct {
	*aws.Request
	Input *DescribeProductAsAdminInput
	Copy  func(*DescribeProductAsAdminInput) DescribeProductAsAdminRequest
}

DescribeProductAsAdminRequest is the request type for the DescribeProductAsAdmin API operation.

func (DescribeProductAsAdminRequest) Send

Send marshals and sends the DescribeProductAsAdmin API request.

type DescribeProductAsAdminResponse added in v0.9.0

type DescribeProductAsAdminResponse struct {
	*DescribeProductAsAdminOutput
	// contains filtered or unexported fields
}

DescribeProductAsAdminResponse is the response type for the DescribeProductAsAdmin API operation.

func (*DescribeProductAsAdminResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeProductAsAdminResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeProductAsAdmin request.

type DescribeProductInput

type DescribeProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product identifier.
	Id *string `min:"1" type:"string"`

	// The product name.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeProductInput) String

func (s DescribeProductInput) String() string

String returns the string representation

func (*DescribeProductInput) Validate

func (s *DescribeProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeProductOutput

type DescribeProductOutput struct {

	// Information about the associated budgets.
	Budgets []BudgetDetail `type:"list"`

	// Information about the associated launch paths.
	LaunchPaths []LaunchPath `type:"list"`

	// Summary information about the product view.
	ProductViewSummary *ProductViewSummary `type:"structure"`

	// Information about the provisioning artifacts for the specified product.
	ProvisioningArtifacts []ProvisioningArtifact `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeProductOutput) String

func (s DescribeProductOutput) String() string

String returns the string representation

type DescribeProductRequest

type DescribeProductRequest struct {
	*aws.Request
	Input *DescribeProductInput
	Copy  func(*DescribeProductInput) DescribeProductRequest
}

DescribeProductRequest is the request type for the DescribeProduct API operation.

func (DescribeProductRequest) Send

Send marshals and sends the DescribeProduct API request.

type DescribeProductResponse added in v0.9.0

type DescribeProductResponse struct {
	*DescribeProductOutput
	// contains filtered or unexported fields
}

DescribeProductResponse is the response type for the DescribeProduct API operation.

func (*DescribeProductResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeProduct request.

type DescribeProductViewInput

type DescribeProductViewInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product view identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeProductViewInput) String

func (s DescribeProductViewInput) String() string

String returns the string representation

func (*DescribeProductViewInput) Validate

func (s *DescribeProductViewInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeProductViewOutput

type DescribeProductViewOutput struct {

	// Summary information about the product.
	ProductViewSummary *ProductViewSummary `type:"structure"`

	// Information about the provisioning artifacts for the product.
	ProvisioningArtifacts []ProvisioningArtifact `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeProductViewOutput) String

func (s DescribeProductViewOutput) String() string

String returns the string representation

type DescribeProductViewRequest

type DescribeProductViewRequest struct {
	*aws.Request
	Input *DescribeProductViewInput
	Copy  func(*DescribeProductViewInput) DescribeProductViewRequest
}

DescribeProductViewRequest is the request type for the DescribeProductView API operation.

func (DescribeProductViewRequest) Send

Send marshals and sends the DescribeProductView API request.

type DescribeProductViewResponse added in v0.9.0

type DescribeProductViewResponse struct {
	*DescribeProductViewOutput
	// contains filtered or unexported fields
}

DescribeProductViewResponse is the response type for the DescribeProductView API operation.

func (*DescribeProductViewResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeProductViewResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeProductView request.

type DescribeProvisionedProductInput

type DescribeProvisionedProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The provisioned product identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeProvisionedProductInput) String

String returns the string representation

func (*DescribeProvisionedProductInput) Validate

func (s *DescribeProvisionedProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeProvisionedProductOutput

type DescribeProvisionedProductOutput struct {

	// Any CloudWatch dashboards that were created when provisioning the product.
	CloudWatchDashboards []CloudWatchDashboard `type:"list"`

	// Information about the provisioned product.
	ProvisionedProductDetail *ProvisionedProductDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (DescribeProvisionedProductOutput) String

String returns the string representation

type DescribeProvisionedProductPlanInput added in v0.3.0

type DescribeProvisionedProductPlanInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The plan identifier.
	//
	// PlanId is a required field
	PlanId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeProvisionedProductPlanInput) String added in v0.3.0

String returns the string representation

func (*DescribeProvisionedProductPlanInput) Validate added in v0.3.0

Validate inspects the fields of the type to determine if they are valid.

type DescribeProvisionedProductPlanOutput added in v0.3.0

type DescribeProvisionedProductPlanOutput 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 `type:"string"`

	// Information about the plan.
	ProvisionedProductPlanDetails *ProvisionedProductPlanDetails `type:"structure"`

	// Information about the resource changes that will occur when the plan is executed.
	ResourceChanges []ResourceChange `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeProvisionedProductPlanOutput) String added in v0.3.0

String returns the string representation

type DescribeProvisionedProductPlanRequest added in v0.3.0

type DescribeProvisionedProductPlanRequest struct {
	*aws.Request
	Input *DescribeProvisionedProductPlanInput
	Copy  func(*DescribeProvisionedProductPlanInput) DescribeProvisionedProductPlanRequest
}

DescribeProvisionedProductPlanRequest is the request type for the DescribeProvisionedProductPlan API operation.

func (DescribeProvisionedProductPlanRequest) Send added in v0.3.0

Send marshals and sends the DescribeProvisionedProductPlan API request.

type DescribeProvisionedProductPlanResponse added in v0.9.0

type DescribeProvisionedProductPlanResponse struct {
	*DescribeProvisionedProductPlanOutput
	// contains filtered or unexported fields
}

DescribeProvisionedProductPlanResponse is the response type for the DescribeProvisionedProductPlan API operation.

func (*DescribeProvisionedProductPlanResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeProvisionedProductPlanResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeProvisionedProductPlan request.

type DescribeProvisionedProductRequest

type DescribeProvisionedProductRequest struct {
	*aws.Request
	Input *DescribeProvisionedProductInput
	Copy  func(*DescribeProvisionedProductInput) DescribeProvisionedProductRequest
}

DescribeProvisionedProductRequest is the request type for the DescribeProvisionedProduct API operation.

func (DescribeProvisionedProductRequest) Send

Send marshals and sends the DescribeProvisionedProduct API request.

type DescribeProvisionedProductResponse added in v0.9.0

type DescribeProvisionedProductResponse struct {
	*DescribeProvisionedProductOutput
	// contains filtered or unexported fields
}

DescribeProvisionedProductResponse is the response type for the DescribeProvisionedProduct API operation.

func (*DescribeProvisionedProductResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeProvisionedProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeProvisionedProduct request.

type DescribeProvisioningArtifactInput

type DescribeProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product identifier.
	ProductId *string `min:"1" type:"string"`

	// The product name.
	ProductName *string `type:"string"`

	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// The provisioning artifact name.
	ProvisioningArtifactName *string `type:"string"`

	// Indicates whether a verbose level of detail is enabled.
	Verbose *bool `type:"boolean"`
	// contains filtered or unexported fields
}

func (DescribeProvisioningArtifactInput) String

String returns the string representation

func (*DescribeProvisioningArtifactInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DescribeProvisioningArtifactOutput

type DescribeProvisioningArtifactOutput struct {

	// The URL of the CloudFormation template in Amazon S3.
	Info map[string]string `min:"1" type:"map"`

	// Information about the provisioning artifact.
	ProvisioningArtifactDetail *ProvisioningArtifactDetail `type:"structure"`

	// The status of the current request.
	Status Status `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (DescribeProvisioningArtifactOutput) String

String returns the string representation

type DescribeProvisioningArtifactRequest

type DescribeProvisioningArtifactRequest struct {
	*aws.Request
	Input *DescribeProvisioningArtifactInput
	Copy  func(*DescribeProvisioningArtifactInput) DescribeProvisioningArtifactRequest
}

DescribeProvisioningArtifactRequest is the request type for the DescribeProvisioningArtifact API operation.

func (DescribeProvisioningArtifactRequest) Send

Send marshals and sends the DescribeProvisioningArtifact API request.

type DescribeProvisioningArtifactResponse added in v0.9.0

type DescribeProvisioningArtifactResponse struct {
	*DescribeProvisioningArtifactOutput
	// contains filtered or unexported fields
}

DescribeProvisioningArtifactResponse is the response type for the DescribeProvisioningArtifact API operation.

func (*DescribeProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeProvisioningArtifactResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeProvisioningArtifact request.

type DescribeProvisioningParametersInput

type DescribeProvisioningParametersInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"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.
	PathId *string `min:"1" type:"string"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeProvisioningParametersInput) String

String returns the string representation

func (*DescribeProvisioningParametersInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DescribeProvisioningParametersOutput

type DescribeProvisioningParametersOutput struct {

	// Information about the constraints used to provision the product.
	ConstraintSummaries []ConstraintSummary `type:"list"`

	// Information about the parameters used to provision the product.
	ProvisioningArtifactParameters []ProvisioningArtifactParameter `type:"list"`

	// An object that contains information about preferences, such as regions and
	// accounts, for the provisioning artifact.
	ProvisioningArtifactPreferences *ProvisioningArtifactPreferences `type:"structure"`

	// Information about the TagOptions associated with the resource.
	TagOptions []TagOptionSummary `type:"list"`

	// Any additional metadata specifically related to the provisioning of the product.
	// For example, see the Version field of the CloudFormation template.
	UsageInstructions []UsageInstruction `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeProvisioningParametersOutput) String

String returns the string representation

type DescribeProvisioningParametersRequest

type DescribeProvisioningParametersRequest struct {
	*aws.Request
	Input *DescribeProvisioningParametersInput
	Copy  func(*DescribeProvisioningParametersInput) DescribeProvisioningParametersRequest
}

DescribeProvisioningParametersRequest is the request type for the DescribeProvisioningParameters API operation.

func (DescribeProvisioningParametersRequest) Send

Send marshals and sends the DescribeProvisioningParameters API request.

type DescribeProvisioningParametersResponse added in v0.9.0

type DescribeProvisioningParametersResponse struct {
	*DescribeProvisioningParametersOutput
	// contains filtered or unexported fields
}

DescribeProvisioningParametersResponse is the response type for the DescribeProvisioningParameters API operation.

func (*DescribeProvisioningParametersResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeProvisioningParametersResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeProvisioningParameters request.

type DescribeRecordInput

type DescribeRecordInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The record identifier of the provisioned product. This identifier is returned
	// by the request operation.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeRecordInput) String

func (s DescribeRecordInput) String() string

String returns the string representation

func (*DescribeRecordInput) Validate

func (s *DescribeRecordInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeRecordOutput

type DescribeRecordOutput 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 `type:"string"`

	// Information about the product.
	RecordDetail *RecordDetail `type:"structure"`

	// 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 []RecordOutput `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRecordOutput) String

func (s DescribeRecordOutput) String() string

String returns the string representation

type DescribeRecordRequest

type DescribeRecordRequest struct {
	*aws.Request
	Input *DescribeRecordInput
	Copy  func(*DescribeRecordInput) DescribeRecordRequest
}

DescribeRecordRequest is the request type for the DescribeRecord API operation.

func (DescribeRecordRequest) Send

Send marshals and sends the DescribeRecord API request.

type DescribeRecordResponse added in v0.9.0

type DescribeRecordResponse struct {
	*DescribeRecordOutput
	// contains filtered or unexported fields
}

DescribeRecordResponse is the response type for the DescribeRecord API operation.

func (*DescribeRecordResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeRecordResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeRecord request.

type DescribeServiceActionExecutionParametersInput added in v0.10.0

type DescribeServiceActionExecutionParametersInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The identifier of the provisioned product.
	//
	// ProvisionedProductId is a required field
	ProvisionedProductId *string `min:"1" type:"string" required:"true"`

	// The self-service action identifier.
	//
	// ServiceActionId is a required field
	ServiceActionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeServiceActionExecutionParametersInput) String added in v0.10.0

String returns the string representation

func (*DescribeServiceActionExecutionParametersInput) Validate added in v0.10.0

Validate inspects the fields of the type to determine if they are valid.

type DescribeServiceActionExecutionParametersOutput added in v0.10.0

type DescribeServiceActionExecutionParametersOutput struct {

	// The parameters of the self-service action.
	ServiceActionParameters []ExecutionParameter `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeServiceActionExecutionParametersOutput) String added in v0.10.0

String returns the string representation

type DescribeServiceActionExecutionParametersRequest added in v0.10.0

DescribeServiceActionExecutionParametersRequest is the request type for the DescribeServiceActionExecutionParameters API operation.

func (DescribeServiceActionExecutionParametersRequest) Send added in v0.10.0

Send marshals and sends the DescribeServiceActionExecutionParameters API request.

type DescribeServiceActionExecutionParametersResponse added in v0.10.0

type DescribeServiceActionExecutionParametersResponse struct {
	*DescribeServiceActionExecutionParametersOutput
	// contains filtered or unexported fields
}

DescribeServiceActionExecutionParametersResponse is the response type for the DescribeServiceActionExecutionParameters API operation.

func (*DescribeServiceActionExecutionParametersResponse) SDKResponseMetdata added in v0.10.0

SDKResponseMetdata returns the response metadata for the DescribeServiceActionExecutionParameters request.

type DescribeServiceActionInput added in v0.6.0

type DescribeServiceActionInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The self-service action identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeServiceActionInput) String added in v0.6.0

String returns the string representation

func (*DescribeServiceActionInput) Validate added in v0.6.0

func (s *DescribeServiceActionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeServiceActionOutput added in v0.6.0

type DescribeServiceActionOutput struct {

	// Detailed information about the self-service action.
	ServiceActionDetail *ServiceActionDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (DescribeServiceActionOutput) String added in v0.6.0

String returns the string representation

type DescribeServiceActionRequest added in v0.6.0

type DescribeServiceActionRequest struct {
	*aws.Request
	Input *DescribeServiceActionInput
	Copy  func(*DescribeServiceActionInput) DescribeServiceActionRequest
}

DescribeServiceActionRequest is the request type for the DescribeServiceAction API operation.

func (DescribeServiceActionRequest) Send added in v0.6.0

Send marshals and sends the DescribeServiceAction API request.

type DescribeServiceActionResponse added in v0.9.0

type DescribeServiceActionResponse struct {
	*DescribeServiceActionOutput
	// contains filtered or unexported fields
}

DescribeServiceActionResponse is the response type for the DescribeServiceAction API operation.

func (*DescribeServiceActionResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeServiceActionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeServiceAction request.

type DescribeTagOptionInput

type DescribeTagOptionInput struct {

	// The TagOption identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeTagOptionInput) String

func (s DescribeTagOptionInput) String() string

String returns the string representation

func (*DescribeTagOptionInput) Validate

func (s *DescribeTagOptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeTagOptionOutput

type DescribeTagOptionOutput struct {

	// Information about the TagOption.
	TagOptionDetail *TagOptionDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (DescribeTagOptionOutput) String

func (s DescribeTagOptionOutput) String() string

String returns the string representation

type DescribeTagOptionRequest

type DescribeTagOptionRequest struct {
	*aws.Request
	Input *DescribeTagOptionInput
	Copy  func(*DescribeTagOptionInput) DescribeTagOptionRequest
}

DescribeTagOptionRequest is the request type for the DescribeTagOption API operation.

func (DescribeTagOptionRequest) Send

Send marshals and sends the DescribeTagOption API request.

type DescribeTagOptionResponse added in v0.9.0

type DescribeTagOptionResponse struct {
	*DescribeTagOptionOutput
	// contains filtered or unexported fields
}

DescribeTagOptionResponse is the response type for the DescribeTagOption API operation.

func (*DescribeTagOptionResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeTagOptionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeTagOption request.

type DisableAWSOrganizationsAccessInput added in v0.6.0

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

func (DisableAWSOrganizationsAccessInput) String added in v0.6.0

String returns the string representation

type DisableAWSOrganizationsAccessOutput added in v0.6.0

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

func (DisableAWSOrganizationsAccessOutput) String added in v0.6.0

String returns the string representation

type DisableAWSOrganizationsAccessRequest added in v0.6.0

type DisableAWSOrganizationsAccessRequest struct {
	*aws.Request
	Input *DisableAWSOrganizationsAccessInput
	Copy  func(*DisableAWSOrganizationsAccessInput) DisableAWSOrganizationsAccessRequest
}

DisableAWSOrganizationsAccessRequest is the request type for the DisableAWSOrganizationsAccess API operation.

func (DisableAWSOrganizationsAccessRequest) Send added in v0.6.0

Send marshals and sends the DisableAWSOrganizationsAccess API request.

type DisableAWSOrganizationsAccessResponse added in v0.9.0

type DisableAWSOrganizationsAccessResponse struct {
	*DisableAWSOrganizationsAccessOutput
	// contains filtered or unexported fields
}

DisableAWSOrganizationsAccessResponse is the response type for the DisableAWSOrganizationsAccess API operation.

func (*DisableAWSOrganizationsAccessResponse) SDKResponseMetdata added in v0.9.0

func (r *DisableAWSOrganizationsAccessResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DisableAWSOrganizationsAccess request.

type DisassociateBudgetFromResourceInput added in v0.9.0

type DisassociateBudgetFromResourceInput struct {

	// The name of the budget you want to disassociate.
	//
	// BudgetName is a required field
	BudgetName *string `min:"1" type:"string" required:"true"`

	// The resource identifier you want to disassociate from. Either a portfolio-id
	// or a product-id.
	//
	// ResourceId is a required field
	ResourceId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DisassociateBudgetFromResourceInput) String added in v0.9.0

String returns the string representation

func (*DisassociateBudgetFromResourceInput) Validate added in v0.9.0

Validate inspects the fields of the type to determine if they are valid.

type DisassociateBudgetFromResourceOutput added in v0.9.0

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

func (DisassociateBudgetFromResourceOutput) String added in v0.9.0

String returns the string representation

type DisassociateBudgetFromResourceRequest added in v0.9.0

type DisassociateBudgetFromResourceRequest struct {
	*aws.Request
	Input *DisassociateBudgetFromResourceInput
	Copy  func(*DisassociateBudgetFromResourceInput) DisassociateBudgetFromResourceRequest
}

DisassociateBudgetFromResourceRequest is the request type for the DisassociateBudgetFromResource API operation.

func (DisassociateBudgetFromResourceRequest) Send added in v0.9.0

Send marshals and sends the DisassociateBudgetFromResource API request.

type DisassociateBudgetFromResourceResponse added in v0.9.0

type DisassociateBudgetFromResourceResponse struct {
	*DisassociateBudgetFromResourceOutput
	// contains filtered or unexported fields
}

DisassociateBudgetFromResourceResponse is the response type for the DisassociateBudgetFromResource API operation.

func (*DisassociateBudgetFromResourceResponse) SDKResponseMetdata added in v0.9.0

func (r *DisassociateBudgetFromResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DisassociateBudgetFromResource request.

type DisassociatePrincipalFromPortfolioInput

type DisassociatePrincipalFromPortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`

	// The ARN of the principal (IAM user, role, or group).
	//
	// PrincipalARN is a required field
	PrincipalARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DisassociatePrincipalFromPortfolioInput) String

String returns the string representation

func (*DisassociatePrincipalFromPortfolioInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DisassociatePrincipalFromPortfolioOutput

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

func (DisassociatePrincipalFromPortfolioOutput) String

String returns the string representation

type DisassociatePrincipalFromPortfolioRequest

DisassociatePrincipalFromPortfolioRequest is the request type for the DisassociatePrincipalFromPortfolio API operation.

func (DisassociatePrincipalFromPortfolioRequest) Send

Send marshals and sends the DisassociatePrincipalFromPortfolio API request.

type DisassociatePrincipalFromPortfolioResponse added in v0.9.0

type DisassociatePrincipalFromPortfolioResponse struct {
	*DisassociatePrincipalFromPortfolioOutput
	// contains filtered or unexported fields
}

DisassociatePrincipalFromPortfolioResponse is the response type for the DisassociatePrincipalFromPortfolio API operation.

func (*DisassociatePrincipalFromPortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *DisassociatePrincipalFromPortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DisassociatePrincipalFromPortfolio request.

type DisassociateProductFromPortfolioInput

type DisassociateProductFromPortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DisassociateProductFromPortfolioInput) String

String returns the string representation

func (*DisassociateProductFromPortfolioInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DisassociateProductFromPortfolioOutput

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

func (DisassociateProductFromPortfolioOutput) String

String returns the string representation

type DisassociateProductFromPortfolioRequest

type DisassociateProductFromPortfolioRequest struct {
	*aws.Request
	Input *DisassociateProductFromPortfolioInput
	Copy  func(*DisassociateProductFromPortfolioInput) DisassociateProductFromPortfolioRequest
}

DisassociateProductFromPortfolioRequest is the request type for the DisassociateProductFromPortfolio API operation.

func (DisassociateProductFromPortfolioRequest) Send

Send marshals and sends the DisassociateProductFromPortfolio API request.

type DisassociateProductFromPortfolioResponse added in v0.9.0

type DisassociateProductFromPortfolioResponse struct {
	*DisassociateProductFromPortfolioOutput
	// contains filtered or unexported fields
}

DisassociateProductFromPortfolioResponse is the response type for the DisassociateProductFromPortfolio API operation.

func (*DisassociateProductFromPortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *DisassociateProductFromPortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DisassociateProductFromPortfolio request.

type DisassociateServiceActionFromProvisioningArtifactInput added in v0.6.0

type DisassociateServiceActionFromProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product identifier. For example, prod-abcdzk7xy33qa.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`

	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	//
	// ServiceActionId is a required field
	ServiceActionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DisassociateServiceActionFromProvisioningArtifactInput) String added in v0.6.0

String returns the string representation

func (*DisassociateServiceActionFromProvisioningArtifactInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type DisassociateServiceActionFromProvisioningArtifactOutput added in v0.6.0

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

func (DisassociateServiceActionFromProvisioningArtifactOutput) String added in v0.6.0

String returns the string representation

type DisassociateServiceActionFromProvisioningArtifactRequest added in v0.6.0

DisassociateServiceActionFromProvisioningArtifactRequest is the request type for the DisassociateServiceActionFromProvisioningArtifact API operation.

func (DisassociateServiceActionFromProvisioningArtifactRequest) Send added in v0.6.0

Send marshals and sends the DisassociateServiceActionFromProvisioningArtifact API request.

type DisassociateServiceActionFromProvisioningArtifactResponse added in v0.9.0

type DisassociateServiceActionFromProvisioningArtifactResponse struct {
	*DisassociateServiceActionFromProvisioningArtifactOutput
	// contains filtered or unexported fields
}

DisassociateServiceActionFromProvisioningArtifactResponse is the response type for the DisassociateServiceActionFromProvisioningArtifact API operation.

func (*DisassociateServiceActionFromProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the DisassociateServiceActionFromProvisioningArtifact request.

type DisassociateTagOptionFromResourceInput

type DisassociateTagOptionFromResourceInput struct {

	// The resource identifier.
	//
	// ResourceId is a required field
	ResourceId *string `type:"string" required:"true"`

	// The TagOption identifier.
	//
	// TagOptionId is a required field
	TagOptionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DisassociateTagOptionFromResourceInput) String

String returns the string representation

func (*DisassociateTagOptionFromResourceInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DisassociateTagOptionFromResourceOutput

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

func (DisassociateTagOptionFromResourceOutput) String

String returns the string representation

type DisassociateTagOptionFromResourceRequest

DisassociateTagOptionFromResourceRequest is the request type for the DisassociateTagOptionFromResource API operation.

func (DisassociateTagOptionFromResourceRequest) Send

Send marshals and sends the DisassociateTagOptionFromResource API request.

type DisassociateTagOptionFromResourceResponse added in v0.9.0

type DisassociateTagOptionFromResourceResponse struct {
	*DisassociateTagOptionFromResourceOutput
	// contains filtered or unexported fields
}

DisassociateTagOptionFromResourceResponse is the response type for the DisassociateTagOptionFromResource API operation.

func (*DisassociateTagOptionFromResourceResponse) SDKResponseMetdata added in v0.9.0

func (r *DisassociateTagOptionFromResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DisassociateTagOptionFromResource request.

type EnableAWSOrganizationsAccessInput added in v0.6.0

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

func (EnableAWSOrganizationsAccessInput) String added in v0.6.0

String returns the string representation

type EnableAWSOrganizationsAccessOutput added in v0.6.0

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

func (EnableAWSOrganizationsAccessOutput) String added in v0.6.0

String returns the string representation

type EnableAWSOrganizationsAccessRequest added in v0.6.0

type EnableAWSOrganizationsAccessRequest struct {
	*aws.Request
	Input *EnableAWSOrganizationsAccessInput
	Copy  func(*EnableAWSOrganizationsAccessInput) EnableAWSOrganizationsAccessRequest
}

EnableAWSOrganizationsAccessRequest is the request type for the EnableAWSOrganizationsAccess API operation.

func (EnableAWSOrganizationsAccessRequest) Send added in v0.6.0

Send marshals and sends the EnableAWSOrganizationsAccess API request.

type EnableAWSOrganizationsAccessResponse added in v0.9.0

type EnableAWSOrganizationsAccessResponse struct {
	*EnableAWSOrganizationsAccessOutput
	// contains filtered or unexported fields
}

EnableAWSOrganizationsAccessResponse is the response type for the EnableAWSOrganizationsAccess API operation.

func (*EnableAWSOrganizationsAccessResponse) SDKResponseMetdata added in v0.9.0

func (r *EnableAWSOrganizationsAccessResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the EnableAWSOrganizationsAccess request.

type EvaluationType added in v0.3.0

type EvaluationType string
const (
	EvaluationTypeStatic  EvaluationType = "STATIC"
	EvaluationTypeDynamic EvaluationType = "DYNAMIC"
)

Enum values for EvaluationType

func (EvaluationType) MarshalValue added in v0.3.0

func (enum EvaluationType) MarshalValue() (string, error)

func (EvaluationType) MarshalValueBuf added in v0.3.0

func (enum EvaluationType) MarshalValueBuf(b []byte) ([]byte, error)

type ExecuteProvisionedProductPlanInput added in v0.3.0

type ExecuteProvisionedProductPlanInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `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 is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The plan identifier.
	//
	// PlanId is a required field
	PlanId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ExecuteProvisionedProductPlanInput) String added in v0.3.0

String returns the string representation

func (*ExecuteProvisionedProductPlanInput) Validate added in v0.3.0

Validate inspects the fields of the type to determine if they are valid.

type ExecuteProvisionedProductPlanOutput added in v0.3.0

type ExecuteProvisionedProductPlanOutput struct {

	// Information about the result of provisioning the product.
	RecordDetail *RecordDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (ExecuteProvisionedProductPlanOutput) String added in v0.3.0

String returns the string representation

type ExecuteProvisionedProductPlanRequest added in v0.3.0

type ExecuteProvisionedProductPlanRequest struct {
	*aws.Request
	Input *ExecuteProvisionedProductPlanInput
	Copy  func(*ExecuteProvisionedProductPlanInput) ExecuteProvisionedProductPlanRequest
}

ExecuteProvisionedProductPlanRequest is the request type for the ExecuteProvisionedProductPlan API operation.

func (ExecuteProvisionedProductPlanRequest) Send added in v0.3.0

Send marshals and sends the ExecuteProvisionedProductPlan API request.

type ExecuteProvisionedProductPlanResponse added in v0.9.0

type ExecuteProvisionedProductPlanResponse struct {
	*ExecuteProvisionedProductPlanOutput
	// contains filtered or unexported fields
}

ExecuteProvisionedProductPlanResponse is the response type for the ExecuteProvisionedProductPlan API operation.

func (*ExecuteProvisionedProductPlanResponse) SDKResponseMetdata added in v0.9.0

func (r *ExecuteProvisionedProductPlanResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ExecuteProvisionedProductPlan request.

type ExecuteProvisionedProductServiceActionInput added in v0.6.0

type ExecuteProvisionedProductServiceActionInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// An idempotency token that uniquely identifies the execute request.
	//
	// ExecuteToken is a required field
	ExecuteToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// 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 `min:"1" type:"map"`

	// The identifier of the provisioned product.
	//
	// ProvisionedProductId is a required field
	ProvisionedProductId *string `min:"1" type:"string" required:"true"`

	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	//
	// ServiceActionId is a required field
	ServiceActionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ExecuteProvisionedProductServiceActionInput) String added in v0.6.0

String returns the string representation

func (*ExecuteProvisionedProductServiceActionInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type ExecuteProvisionedProductServiceActionOutput added in v0.6.0

type ExecuteProvisionedProductServiceActionOutput struct {

	// An object containing detailed information about the result of provisioning
	// the product.
	RecordDetail *RecordDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (ExecuteProvisionedProductServiceActionOutput) String added in v0.6.0

String returns the string representation

type ExecuteProvisionedProductServiceActionRequest added in v0.6.0

ExecuteProvisionedProductServiceActionRequest is the request type for the ExecuteProvisionedProductServiceAction API operation.

func (ExecuteProvisionedProductServiceActionRequest) Send added in v0.6.0

Send marshals and sends the ExecuteProvisionedProductServiceAction API request.

type ExecuteProvisionedProductServiceActionResponse added in v0.9.0

type ExecuteProvisionedProductServiceActionResponse struct {
	*ExecuteProvisionedProductServiceActionOutput
	// contains filtered or unexported fields
}

ExecuteProvisionedProductServiceActionResponse is the response type for the ExecuteProvisionedProductServiceAction API operation.

func (*ExecuteProvisionedProductServiceActionResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the ExecuteProvisionedProductServiceAction request.

type ExecutionParameter added in v0.10.0

type ExecutionParameter struct {

	// The default values for the execution parameter.
	DefaultValues []string `type:"list"`

	// The name of the execution parameter.
	Name *string `min:"1" type:"string"`

	// The execution parameter type.
	Type *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Details of an execution parameter value that is passed to a self-service action when executed on a provisioned product.

func (ExecutionParameter) String added in v0.10.0

func (s ExecutionParameter) String() string

String returns the string representation

type FailedServiceActionAssociation added in v0.6.0

type FailedServiceActionAssociation struct {

	// The error code. Valid values are listed below.
	ErrorCode ServiceActionAssociationErrorCode `type:"string" enum:"true"`

	// A text description of the error.
	ErrorMessage *string `min:"1" type:"string"`

	// The product identifier. For example, prod-abcdzk7xy33qa.
	ProductId *string `min:"1" type:"string"`

	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	ServiceActionId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

An object containing information about the error, along with identifying information about the self-service action and its associations.

func (FailedServiceActionAssociation) String added in v0.6.0

String returns the string representation

type GetAWSOrganizationsAccessStatusInput added in v0.6.0

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

func (GetAWSOrganizationsAccessStatusInput) String added in v0.6.0

String returns the string representation

type GetAWSOrganizationsAccessStatusOutput added in v0.6.0

type GetAWSOrganizationsAccessStatusOutput struct {

	// The status of the portfolio share feature.
	AccessStatus AccessStatus `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (GetAWSOrganizationsAccessStatusOutput) String added in v0.6.0

String returns the string representation

type GetAWSOrganizationsAccessStatusRequest added in v0.6.0

type GetAWSOrganizationsAccessStatusRequest struct {
	*aws.Request
	Input *GetAWSOrganizationsAccessStatusInput
	Copy  func(*GetAWSOrganizationsAccessStatusInput) GetAWSOrganizationsAccessStatusRequest
}

GetAWSOrganizationsAccessStatusRequest is the request type for the GetAWSOrganizationsAccessStatus API operation.

func (GetAWSOrganizationsAccessStatusRequest) Send added in v0.6.0

Send marshals and sends the GetAWSOrganizationsAccessStatus API request.

type GetAWSOrganizationsAccessStatusResponse added in v0.9.0

type GetAWSOrganizationsAccessStatusResponse struct {
	*GetAWSOrganizationsAccessStatusOutput
	// contains filtered or unexported fields
}

GetAWSOrganizationsAccessStatusResponse is the response type for the GetAWSOrganizationsAccessStatus API operation.

func (*GetAWSOrganizationsAccessStatusResponse) SDKResponseMetdata added in v0.9.0

func (r *GetAWSOrganizationsAccessStatusResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetAWSOrganizationsAccessStatus request.

type LaunchPath added in v0.24.0

type LaunchPath struct {

	// The identifier of the launch path.
	Id *string `min:"1" type:"string"`

	// The name of the launch path.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

A launch path object.

func (LaunchPath) String added in v0.24.0

func (s LaunchPath) String() string

String returns the string representation

type LaunchPathSummary

type LaunchPathSummary struct {

	// The constraints on the portfolio-product relationship.
	ConstraintSummaries []ConstraintSummary `type:"list"`

	// The identifier of the product path.
	Id *string `min:"1" type:"string"`

	// The name of the portfolio to which the user was assigned.
	Name *string `type:"string"`

	// The tags associated with this product path.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

Summary information about a product path for a user.

func (LaunchPathSummary) String

func (s LaunchPathSummary) String() string

String returns the string representation

type ListAcceptedPortfolioSharesInput

type ListAcceptedPortfolioSharesInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// 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 PortfolioShareType `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (ListAcceptedPortfolioSharesInput) String

String returns the string representation

type ListAcceptedPortfolioSharesOutput

type ListAcceptedPortfolioSharesOutput 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 `type:"string"`

	// Information about the portfolios.
	PortfolioDetails []PortfolioDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListAcceptedPortfolioSharesOutput) String

String returns the string representation

type ListAcceptedPortfolioSharesPaginator added in v0.9.0

type ListAcceptedPortfolioSharesPaginator struct {
	aws.Pager
}

ListAcceptedPortfolioSharesPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListAcceptedPortfolioSharesPaginator added in v0.9.0

func NewListAcceptedPortfolioSharesPaginator(req ListAcceptedPortfolioSharesRequest) ListAcceptedPortfolioSharesPaginator

NewListAcceptedPortfolioSharesRequestPaginator returns a paginator for ListAcceptedPortfolioShares. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListAcceptedPortfolioSharesRequest(input)
p := servicecatalog.NewListAcceptedPortfolioSharesRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListAcceptedPortfolioSharesPaginator) CurrentPage added in v0.9.0

type ListAcceptedPortfolioSharesRequest

type ListAcceptedPortfolioSharesRequest struct {
	*aws.Request
	Input *ListAcceptedPortfolioSharesInput
	Copy  func(*ListAcceptedPortfolioSharesInput) ListAcceptedPortfolioSharesRequest
}

ListAcceptedPortfolioSharesRequest is the request type for the ListAcceptedPortfolioShares API operation.

func (ListAcceptedPortfolioSharesRequest) Send

Send marshals and sends the ListAcceptedPortfolioShares API request.

type ListAcceptedPortfolioSharesResponse added in v0.9.0

type ListAcceptedPortfolioSharesResponse struct {
	*ListAcceptedPortfolioSharesOutput
	// contains filtered or unexported fields
}

ListAcceptedPortfolioSharesResponse is the response type for the ListAcceptedPortfolioShares API operation.

func (*ListAcceptedPortfolioSharesResponse) SDKResponseMetdata added in v0.9.0

func (r *ListAcceptedPortfolioSharesResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListAcceptedPortfolioShares request.

type ListBudgetsForResourceInput added in v0.9.0

type ListBudgetsForResourceInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The resource identifier.
	//
	// ResourceId is a required field
	ResourceId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListBudgetsForResourceInput) String added in v0.9.0

String returns the string representation

func (*ListBudgetsForResourceInput) Validate added in v0.9.0

func (s *ListBudgetsForResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListBudgetsForResourceOutput added in v0.9.0

type ListBudgetsForResourceOutput struct {

	// Information about the associated budgets.
	Budgets []BudgetDetail `type:"list"`

	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListBudgetsForResourceOutput) String added in v0.9.0

String returns the string representation

type ListBudgetsForResourcePaginator added in v0.9.0

type ListBudgetsForResourcePaginator struct {
	aws.Pager
}

ListBudgetsForResourcePaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListBudgetsForResourcePaginator added in v0.9.0

func NewListBudgetsForResourcePaginator(req ListBudgetsForResourceRequest) ListBudgetsForResourcePaginator

NewListBudgetsForResourceRequestPaginator returns a paginator for ListBudgetsForResource. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListBudgetsForResourceRequest(input)
p := servicecatalog.NewListBudgetsForResourceRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListBudgetsForResourcePaginator) CurrentPage added in v0.9.0

type ListBudgetsForResourceRequest added in v0.9.0

type ListBudgetsForResourceRequest struct {
	*aws.Request
	Input *ListBudgetsForResourceInput
	Copy  func(*ListBudgetsForResourceInput) ListBudgetsForResourceRequest
}

ListBudgetsForResourceRequest is the request type for the ListBudgetsForResource API operation.

func (ListBudgetsForResourceRequest) Send added in v0.9.0

Send marshals and sends the ListBudgetsForResource API request.

type ListBudgetsForResourceResponse added in v0.9.0

type ListBudgetsForResourceResponse struct {
	*ListBudgetsForResourceOutput
	// contains filtered or unexported fields
}

ListBudgetsForResourceResponse is the response type for the ListBudgetsForResource API operation.

func (*ListBudgetsForResourceResponse) SDKResponseMetdata added in v0.9.0

func (r *ListBudgetsForResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListBudgetsForResource request.

type ListConstraintsForPortfolioInput

type ListConstraintsForPortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`

	// The product identifier.
	ProductId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (ListConstraintsForPortfolioInput) String

String returns the string representation

func (*ListConstraintsForPortfolioInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type ListConstraintsForPortfolioOutput

type ListConstraintsForPortfolioOutput struct {

	// Information about the constraints.
	ConstraintDetails []ConstraintDetail `type:"list"`

	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListConstraintsForPortfolioOutput) String

String returns the string representation

type ListConstraintsForPortfolioPaginator added in v0.9.0

type ListConstraintsForPortfolioPaginator struct {
	aws.Pager
}

ListConstraintsForPortfolioPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListConstraintsForPortfolioPaginator added in v0.9.0

func NewListConstraintsForPortfolioPaginator(req ListConstraintsForPortfolioRequest) ListConstraintsForPortfolioPaginator

NewListConstraintsForPortfolioRequestPaginator returns a paginator for ListConstraintsForPortfolio. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListConstraintsForPortfolioRequest(input)
p := servicecatalog.NewListConstraintsForPortfolioRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListConstraintsForPortfolioPaginator) CurrentPage added in v0.9.0

type ListConstraintsForPortfolioRequest

type ListConstraintsForPortfolioRequest struct {
	*aws.Request
	Input *ListConstraintsForPortfolioInput
	Copy  func(*ListConstraintsForPortfolioInput) ListConstraintsForPortfolioRequest
}

ListConstraintsForPortfolioRequest is the request type for the ListConstraintsForPortfolio API operation.

func (ListConstraintsForPortfolioRequest) Send

Send marshals and sends the ListConstraintsForPortfolio API request.

type ListConstraintsForPortfolioResponse added in v0.9.0

type ListConstraintsForPortfolioResponse struct {
	*ListConstraintsForPortfolioOutput
	// contains filtered or unexported fields
}

ListConstraintsForPortfolioResponse is the response type for the ListConstraintsForPortfolio API operation.

func (*ListConstraintsForPortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *ListConstraintsForPortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListConstraintsForPortfolio request.

type ListLaunchPathsInput

type ListLaunchPathsInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListLaunchPathsInput) String

func (s ListLaunchPathsInput) String() string

String returns the string representation

func (*ListLaunchPathsInput) Validate

func (s *ListLaunchPathsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListLaunchPathsOutput

type ListLaunchPathsOutput struct {

	// Information about the launch path.
	LaunchPathSummaries []LaunchPathSummary `type:"list"`

	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListLaunchPathsOutput) String

func (s ListLaunchPathsOutput) String() string

String returns the string representation

type ListLaunchPathsPaginator added in v0.9.0

type ListLaunchPathsPaginator struct {
	aws.Pager
}

ListLaunchPathsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListLaunchPathsPaginator added in v0.9.0

func NewListLaunchPathsPaginator(req ListLaunchPathsRequest) ListLaunchPathsPaginator

NewListLaunchPathsRequestPaginator returns a paginator for ListLaunchPaths. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListLaunchPathsRequest(input)
p := servicecatalog.NewListLaunchPathsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListLaunchPathsPaginator) CurrentPage added in v0.9.0

type ListLaunchPathsRequest

type ListLaunchPathsRequest struct {
	*aws.Request
	Input *ListLaunchPathsInput
	Copy  func(*ListLaunchPathsInput) ListLaunchPathsRequest
}

ListLaunchPathsRequest is the request type for the ListLaunchPaths API operation.

func (ListLaunchPathsRequest) Send

Send marshals and sends the ListLaunchPaths API request.

type ListLaunchPathsResponse added in v0.9.0

type ListLaunchPathsResponse struct {
	*ListLaunchPathsOutput
	// contains filtered or unexported fields
}

ListLaunchPathsResponse is the response type for the ListLaunchPaths API operation.

func (*ListLaunchPathsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListLaunchPathsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListLaunchPaths request.

type ListOrganizationPortfolioAccessInput added in v0.6.0

type ListOrganizationPortfolioAccessInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// 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 is a required field
	OrganizationNodeType OrganizationNodeType `type:"string" required:"true" enum:"true"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The portfolio identifier. For example, port-2abcdext3y5fk.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListOrganizationPortfolioAccessInput) String added in v0.6.0

String returns the string representation

func (*ListOrganizationPortfolioAccessInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type ListOrganizationPortfolioAccessOutput added in v0.6.0

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 `type:"string"`

	// Displays information about the organization nodes.
	OrganizationNodes []OrganizationNode `type:"list"`
	// contains filtered or unexported fields
}

func (ListOrganizationPortfolioAccessOutput) String added in v0.6.0

String returns the string representation

type ListOrganizationPortfolioAccessPaginator added in v0.9.0

type ListOrganizationPortfolioAccessPaginator struct {
	aws.Pager
}

ListOrganizationPortfolioAccessPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListOrganizationPortfolioAccessPaginator added in v0.9.0

func NewListOrganizationPortfolioAccessPaginator(req ListOrganizationPortfolioAccessRequest) ListOrganizationPortfolioAccessPaginator

NewListOrganizationPortfolioAccessRequestPaginator returns a paginator for ListOrganizationPortfolioAccess. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListOrganizationPortfolioAccessRequest(input)
p := servicecatalog.NewListOrganizationPortfolioAccessRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListOrganizationPortfolioAccessPaginator) CurrentPage added in v0.9.0

type ListOrganizationPortfolioAccessRequest added in v0.6.0

type ListOrganizationPortfolioAccessRequest struct {
	*aws.Request
	Input *ListOrganizationPortfolioAccessInput
	Copy  func(*ListOrganizationPortfolioAccessInput) ListOrganizationPortfolioAccessRequest
}

ListOrganizationPortfolioAccessRequest is the request type for the ListOrganizationPortfolioAccess API operation.

func (ListOrganizationPortfolioAccessRequest) Send added in v0.6.0

Send marshals and sends the ListOrganizationPortfolioAccess API request.

type ListOrganizationPortfolioAccessResponse added in v0.9.0

type ListOrganizationPortfolioAccessResponse struct {
	*ListOrganizationPortfolioAccessOutput
	// contains filtered or unexported fields
}

ListOrganizationPortfolioAccessResponse is the response type for the ListOrganizationPortfolioAccess API operation.

func (*ListOrganizationPortfolioAccessResponse) SDKResponseMetdata added in v0.9.0

func (r *ListOrganizationPortfolioAccessResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListOrganizationPortfolioAccess request.

type ListPortfolioAccessInput

type ListPortfolioAccessInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"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 `min:"1" type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListPortfolioAccessInput) String

func (s ListPortfolioAccessInput) String() string

String returns the string representation

func (*ListPortfolioAccessInput) Validate

func (s *ListPortfolioAccessInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListPortfolioAccessOutput

type ListPortfolioAccessOutput struct {

	// Information about the AWS accounts with access to the portfolio.
	AccountIds []string `type:"list"`

	// The page token to use to retrieve the next set of results. If there are no
	// additional results, this value is null.
	NextPageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListPortfolioAccessOutput) String

func (s ListPortfolioAccessOutput) String() string

String returns the string representation

type ListPortfolioAccessPaginator added in v0.20.0

type ListPortfolioAccessPaginator struct {
	aws.Pager
}

ListPortfolioAccessPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListPortfolioAccessPaginator added in v0.20.0

func NewListPortfolioAccessPaginator(req ListPortfolioAccessRequest) ListPortfolioAccessPaginator

NewListPortfolioAccessRequestPaginator returns a paginator for ListPortfolioAccess. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListPortfolioAccessRequest(input)
p := servicecatalog.NewListPortfolioAccessRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListPortfolioAccessPaginator) CurrentPage added in v0.20.0

type ListPortfolioAccessRequest

type ListPortfolioAccessRequest struct {
	*aws.Request
	Input *ListPortfolioAccessInput
	Copy  func(*ListPortfolioAccessInput) ListPortfolioAccessRequest
}

ListPortfolioAccessRequest is the request type for the ListPortfolioAccess API operation.

func (ListPortfolioAccessRequest) Send

Send marshals and sends the ListPortfolioAccess API request.

type ListPortfolioAccessResponse added in v0.9.0

type ListPortfolioAccessResponse struct {
	*ListPortfolioAccessOutput
	// contains filtered or unexported fields
}

ListPortfolioAccessResponse is the response type for the ListPortfolioAccess API operation.

func (*ListPortfolioAccessResponse) SDKResponseMetdata added in v0.9.0

func (r *ListPortfolioAccessResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListPortfolioAccess request.

type ListPortfoliosForProductInput

type ListPortfoliosForProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListPortfoliosForProductInput) String

String returns the string representation

func (*ListPortfoliosForProductInput) Validate

func (s *ListPortfoliosForProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListPortfoliosForProductOutput

type ListPortfoliosForProductOutput 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 `type:"string"`

	// Information about the portfolios.
	PortfolioDetails []PortfolioDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListPortfoliosForProductOutput) String

String returns the string representation

type ListPortfoliosForProductPaginator added in v0.9.0

type ListPortfoliosForProductPaginator struct {
	aws.Pager
}

ListPortfoliosForProductPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListPortfoliosForProductPaginator added in v0.9.0

func NewListPortfoliosForProductPaginator(req ListPortfoliosForProductRequest) ListPortfoliosForProductPaginator

NewListPortfoliosForProductRequestPaginator returns a paginator for ListPortfoliosForProduct. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListPortfoliosForProductRequest(input)
p := servicecatalog.NewListPortfoliosForProductRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListPortfoliosForProductPaginator) CurrentPage added in v0.9.0

type ListPortfoliosForProductRequest

type ListPortfoliosForProductRequest struct {
	*aws.Request
	Input *ListPortfoliosForProductInput
	Copy  func(*ListPortfoliosForProductInput) ListPortfoliosForProductRequest
}

ListPortfoliosForProductRequest is the request type for the ListPortfoliosForProduct API operation.

func (ListPortfoliosForProductRequest) Send

Send marshals and sends the ListPortfoliosForProduct API request.

type ListPortfoliosForProductResponse added in v0.9.0

type ListPortfoliosForProductResponse struct {
	*ListPortfoliosForProductOutput
	// contains filtered or unexported fields
}

ListPortfoliosForProductResponse is the response type for the ListPortfoliosForProduct API operation.

func (*ListPortfoliosForProductResponse) SDKResponseMetdata added in v0.9.0

func (r *ListPortfoliosForProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListPortfoliosForProduct request.

type ListPortfoliosInput

type ListPortfoliosInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListPortfoliosInput) String

func (s ListPortfoliosInput) String() string

String returns the string representation

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 `type:"string"`

	// Information about the portfolios.
	PortfolioDetails []PortfolioDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListPortfoliosOutput) String

func (s ListPortfoliosOutput) String() string

String returns the string representation

type ListPortfoliosPaginator added in v0.9.0

type ListPortfoliosPaginator struct {
	aws.Pager
}

ListPortfoliosPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListPortfoliosPaginator added in v0.9.0

func NewListPortfoliosPaginator(req ListPortfoliosRequest) ListPortfoliosPaginator

NewListPortfoliosRequestPaginator returns a paginator for ListPortfolios. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListPortfoliosRequest(input)
p := servicecatalog.NewListPortfoliosRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListPortfoliosPaginator) CurrentPage added in v0.9.0

type ListPortfoliosRequest

type ListPortfoliosRequest struct {
	*aws.Request
	Input *ListPortfoliosInput
	Copy  func(*ListPortfoliosInput) ListPortfoliosRequest
}

ListPortfoliosRequest is the request type for the ListPortfolios API operation.

func (ListPortfoliosRequest) Send

Send marshals and sends the ListPortfolios API request.

type ListPortfoliosResponse added in v0.9.0

type ListPortfoliosResponse struct {
	*ListPortfoliosOutput
	// contains filtered or unexported fields
}

ListPortfoliosResponse is the response type for the ListPortfolios API operation.

func (*ListPortfoliosResponse) SDKResponseMetdata added in v0.9.0

func (r *ListPortfoliosResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListPortfolios request.

type ListPrincipalsForPortfolioInput

type ListPrincipalsForPortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListPrincipalsForPortfolioInput) String

String returns the string representation

func (*ListPrincipalsForPortfolioInput) Validate

func (s *ListPrincipalsForPortfolioInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

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 `type:"string"`

	// The IAM principals (users or roles) associated with the portfolio.
	Principals []Principal `type:"list"`
	// contains filtered or unexported fields
}

func (ListPrincipalsForPortfolioOutput) String

String returns the string representation

type ListPrincipalsForPortfolioPaginator added in v0.9.0

type ListPrincipalsForPortfolioPaginator struct {
	aws.Pager
}

ListPrincipalsForPortfolioPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListPrincipalsForPortfolioPaginator added in v0.9.0

func NewListPrincipalsForPortfolioPaginator(req ListPrincipalsForPortfolioRequest) ListPrincipalsForPortfolioPaginator

NewListPrincipalsForPortfolioRequestPaginator returns a paginator for ListPrincipalsForPortfolio. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListPrincipalsForPortfolioRequest(input)
p := servicecatalog.NewListPrincipalsForPortfolioRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListPrincipalsForPortfolioPaginator) CurrentPage added in v0.9.0

type ListPrincipalsForPortfolioRequest

type ListPrincipalsForPortfolioRequest struct {
	*aws.Request
	Input *ListPrincipalsForPortfolioInput
	Copy  func(*ListPrincipalsForPortfolioInput) ListPrincipalsForPortfolioRequest
}

ListPrincipalsForPortfolioRequest is the request type for the ListPrincipalsForPortfolio API operation.

func (ListPrincipalsForPortfolioRequest) Send

Send marshals and sends the ListPrincipalsForPortfolio API request.

type ListPrincipalsForPortfolioResponse added in v0.9.0

type ListPrincipalsForPortfolioResponse struct {
	*ListPrincipalsForPortfolioOutput
	// contains filtered or unexported fields
}

ListPrincipalsForPortfolioResponse is the response type for the ListPrincipalsForPortfolio API operation.

func (*ListPrincipalsForPortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *ListPrincipalsForPortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListPrincipalsForPortfolio request.

type ListProvisionedProductPlansInput added in v0.3.0

type ListProvisionedProductPlansInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The access level to use to obtain results. The default is User.
	AccessLevelFilter *AccessLevelFilter `type:"structure"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The product identifier.
	ProvisionProductId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (ListProvisionedProductPlansInput) String added in v0.3.0

String returns the string representation

func (*ListProvisionedProductPlansInput) Validate added in v0.3.0

Validate inspects the fields of the type to determine if they are valid.

type ListProvisionedProductPlansOutput added in v0.3.0

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 `type:"string"`

	// Information about the plans.
	ProvisionedProductPlans []ProvisionedProductPlanSummary `type:"list"`
	// contains filtered or unexported fields
}

func (ListProvisionedProductPlansOutput) String added in v0.3.0

String returns the string representation

type ListProvisionedProductPlansRequest added in v0.3.0

type ListProvisionedProductPlansRequest struct {
	*aws.Request
	Input *ListProvisionedProductPlansInput
	Copy  func(*ListProvisionedProductPlansInput) ListProvisionedProductPlansRequest
}

ListProvisionedProductPlansRequest is the request type for the ListProvisionedProductPlans API operation.

func (ListProvisionedProductPlansRequest) Send added in v0.3.0

Send marshals and sends the ListProvisionedProductPlans API request.

type ListProvisionedProductPlansResponse added in v0.9.0

type ListProvisionedProductPlansResponse struct {
	*ListProvisionedProductPlansOutput
	// contains filtered or unexported fields
}

ListProvisionedProductPlansResponse is the response type for the ListProvisionedProductPlans API operation.

func (*ListProvisionedProductPlansResponse) SDKResponseMetdata added in v0.9.0

func (r *ListProvisionedProductPlansResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListProvisionedProductPlans request.

type ListProvisioningArtifactsForServiceActionInput added in v0.6.0

type ListProvisioningArtifactsForServiceActionInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	//
	// ServiceActionId is a required field
	ServiceActionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListProvisioningArtifactsForServiceActionInput) String added in v0.6.0

String returns the string representation

func (*ListProvisioningArtifactsForServiceActionInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type ListProvisioningArtifactsForServiceActionOutput added in v0.6.0

type ListProvisioningArtifactsForServiceActionOutput 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 `type:"string"`

	// An array of objects with information about product views and provisioning
	// artifacts.
	ProvisioningArtifactViews []ProvisioningArtifactView `type:"list"`
	// contains filtered or unexported fields
}

func (ListProvisioningArtifactsForServiceActionOutput) String added in v0.6.0

String returns the string representation

type ListProvisioningArtifactsForServiceActionPaginator added in v0.9.0

type ListProvisioningArtifactsForServiceActionPaginator struct {
	aws.Pager
}

ListProvisioningArtifactsForServiceActionPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListProvisioningArtifactsForServiceActionPaginator added in v0.9.0

func NewListProvisioningArtifactsForServiceActionPaginator(req ListProvisioningArtifactsForServiceActionRequest) ListProvisioningArtifactsForServiceActionPaginator

NewListProvisioningArtifactsForServiceActionRequestPaginator returns a paginator for ListProvisioningArtifactsForServiceAction. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListProvisioningArtifactsForServiceActionRequest(input)
p := servicecatalog.NewListProvisioningArtifactsForServiceActionRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListProvisioningArtifactsForServiceActionPaginator) CurrentPage added in v0.9.0

type ListProvisioningArtifactsForServiceActionRequest added in v0.6.0

ListProvisioningArtifactsForServiceActionRequest is the request type for the ListProvisioningArtifactsForServiceAction API operation.

func (ListProvisioningArtifactsForServiceActionRequest) Send added in v0.6.0

Send marshals and sends the ListProvisioningArtifactsForServiceAction API request.

type ListProvisioningArtifactsForServiceActionResponse added in v0.9.0

type ListProvisioningArtifactsForServiceActionResponse struct {
	*ListProvisioningArtifactsForServiceActionOutput
	// contains filtered or unexported fields
}

ListProvisioningArtifactsForServiceActionResponse is the response type for the ListProvisioningArtifactsForServiceAction API operation.

func (*ListProvisioningArtifactsForServiceActionResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the ListProvisioningArtifactsForServiceAction request.

type ListProvisioningArtifactsInput

type ListProvisioningArtifactsInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListProvisioningArtifactsInput) String

String returns the string representation

func (*ListProvisioningArtifactsInput) Validate

func (s *ListProvisioningArtifactsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

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 `type:"string"`

	// Information about the provisioning artifacts.
	ProvisioningArtifactDetails []ProvisioningArtifactDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListProvisioningArtifactsOutput) String

String returns the string representation

type ListProvisioningArtifactsRequest

type ListProvisioningArtifactsRequest struct {
	*aws.Request
	Input *ListProvisioningArtifactsInput
	Copy  func(*ListProvisioningArtifactsInput) ListProvisioningArtifactsRequest
}

ListProvisioningArtifactsRequest is the request type for the ListProvisioningArtifacts API operation.

func (ListProvisioningArtifactsRequest) Send

Send marshals and sends the ListProvisioningArtifacts API request.

type ListProvisioningArtifactsResponse added in v0.9.0

type ListProvisioningArtifactsResponse struct {
	*ListProvisioningArtifactsOutput
	// contains filtered or unexported fields
}

ListProvisioningArtifactsResponse is the response type for the ListProvisioningArtifacts API operation.

func (*ListProvisioningArtifactsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListProvisioningArtifactsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListProvisioningArtifacts request.

type ListRecordHistoryInput

type ListRecordHistoryInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The access level to use to obtain results. The default is User.
	AccessLevelFilter *AccessLevelFilter `type:"structure"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The search filter to scope the results.
	SearchFilter *ListRecordHistorySearchFilter `type:"structure"`
	// contains filtered or unexported fields
}

func (ListRecordHistoryInput) String

func (s ListRecordHistoryInput) String() string

String returns the string representation

type ListRecordHistoryOutput

type ListRecordHistoryOutput 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 `type:"string"`

	// The records, in reverse chronological order.
	RecordDetails []RecordDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListRecordHistoryOutput) String

func (s ListRecordHistoryOutput) String() string

String returns the string representation

type ListRecordHistoryRequest

type ListRecordHistoryRequest struct {
	*aws.Request
	Input *ListRecordHistoryInput
	Copy  func(*ListRecordHistoryInput) ListRecordHistoryRequest
}

ListRecordHistoryRequest is the request type for the ListRecordHistory API operation.

func (ListRecordHistoryRequest) Send

Send marshals and sends the ListRecordHistory API request.

type ListRecordHistoryResponse added in v0.9.0

type ListRecordHistoryResponse struct {
	*ListRecordHistoryOutput
	// contains filtered or unexported fields
}

ListRecordHistoryResponse is the response type for the ListRecordHistory API operation.

func (*ListRecordHistoryResponse) SDKResponseMetdata added in v0.9.0

func (r *ListRecordHistoryResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListRecordHistory request.

type ListRecordHistorySearchFilter

type ListRecordHistorySearchFilter struct {

	// The filter key.
	//
	//    * product - Filter results based on the specified product identifier.
	//
	//    * provisionedproduct - Filter results based on the provisioned product
	//    identifier.
	Key *string `type:"string"`

	// The filter value.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

The search filter to use when listing history records.

func (ListRecordHistorySearchFilter) String

String returns the string representation

type ListResourcesForTagOptionInput

type ListResourcesForTagOptionInput struct {

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The resource type.
	//
	//    * Portfolio
	//
	//    * Product
	ResourceType *string `type:"string"`

	// The TagOption identifier.
	//
	// TagOptionId is a required field
	TagOptionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListResourcesForTagOptionInput) String

String returns the string representation

func (*ListResourcesForTagOptionInput) Validate

func (s *ListResourcesForTagOptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

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 `type:"string"`

	// Information about the resources.
	ResourceDetails []ResourceDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListResourcesForTagOptionOutput) String

String returns the string representation

type ListResourcesForTagOptionPaginator added in v0.9.0

type ListResourcesForTagOptionPaginator struct {
	aws.Pager
}

ListResourcesForTagOptionPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListResourcesForTagOptionPaginator added in v0.9.0

func NewListResourcesForTagOptionPaginator(req ListResourcesForTagOptionRequest) ListResourcesForTagOptionPaginator

NewListResourcesForTagOptionRequestPaginator returns a paginator for ListResourcesForTagOption. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListResourcesForTagOptionRequest(input)
p := servicecatalog.NewListResourcesForTagOptionRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListResourcesForTagOptionPaginator) CurrentPage added in v0.9.0

type ListResourcesForTagOptionRequest

type ListResourcesForTagOptionRequest struct {
	*aws.Request
	Input *ListResourcesForTagOptionInput
	Copy  func(*ListResourcesForTagOptionInput) ListResourcesForTagOptionRequest
}

ListResourcesForTagOptionRequest is the request type for the ListResourcesForTagOption API operation.

func (ListResourcesForTagOptionRequest) Send

Send marshals and sends the ListResourcesForTagOption API request.

type ListResourcesForTagOptionResponse added in v0.9.0

type ListResourcesForTagOptionResponse struct {
	*ListResourcesForTagOptionOutput
	// contains filtered or unexported fields
}

ListResourcesForTagOptionResponse is the response type for the ListResourcesForTagOption API operation.

func (*ListResourcesForTagOptionResponse) SDKResponseMetdata added in v0.9.0

func (r *ListResourcesForTagOptionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListResourcesForTagOption request.

type ListServiceActionsForProvisioningArtifactInput added in v0.6.0

type ListServiceActionsForProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The product identifier. For example, prod-abcdzk7xy33qa.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListServiceActionsForProvisioningArtifactInput) String added in v0.6.0

String returns the string representation

func (*ListServiceActionsForProvisioningArtifactInput) Validate added in v0.6.0

Validate inspects the fields of the type to determine if they are valid.

type ListServiceActionsForProvisioningArtifactOutput added in v0.6.0

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 `type:"string"`

	// An object containing information about the self-service actions associated
	// with the provisioning artifact.
	ServiceActionSummaries []ServiceActionSummary `type:"list"`
	// contains filtered or unexported fields
}

func (ListServiceActionsForProvisioningArtifactOutput) String added in v0.6.0

String returns the string representation

type ListServiceActionsForProvisioningArtifactPaginator added in v0.9.0

type ListServiceActionsForProvisioningArtifactPaginator struct {
	aws.Pager
}

ListServiceActionsForProvisioningArtifactPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListServiceActionsForProvisioningArtifactPaginator added in v0.9.0

func NewListServiceActionsForProvisioningArtifactPaginator(req ListServiceActionsForProvisioningArtifactRequest) ListServiceActionsForProvisioningArtifactPaginator

NewListServiceActionsForProvisioningArtifactRequestPaginator returns a paginator for ListServiceActionsForProvisioningArtifact. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListServiceActionsForProvisioningArtifactRequest(input)
p := servicecatalog.NewListServiceActionsForProvisioningArtifactRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListServiceActionsForProvisioningArtifactPaginator) CurrentPage added in v0.9.0

type ListServiceActionsForProvisioningArtifactRequest added in v0.6.0

ListServiceActionsForProvisioningArtifactRequest is the request type for the ListServiceActionsForProvisioningArtifact API operation.

func (ListServiceActionsForProvisioningArtifactRequest) Send added in v0.6.0

Send marshals and sends the ListServiceActionsForProvisioningArtifact API request.

type ListServiceActionsForProvisioningArtifactResponse added in v0.9.0

type ListServiceActionsForProvisioningArtifactResponse struct {
	*ListServiceActionsForProvisioningArtifactOutput
	// contains filtered or unexported fields
}

ListServiceActionsForProvisioningArtifactResponse is the response type for the ListServiceActionsForProvisioningArtifact API operation.

func (*ListServiceActionsForProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the ListServiceActionsForProvisioningArtifact request.

type ListServiceActionsInput added in v0.6.0

type ListServiceActionsInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListServiceActionsInput) String added in v0.6.0

func (s ListServiceActionsInput) String() string

String returns the string representation

type ListServiceActionsOutput added in v0.6.0

type ListServiceActionsOutput 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 `type:"string"`

	// An object containing information about the service actions associated with
	// the provisioning artifact.
	ServiceActionSummaries []ServiceActionSummary `type:"list"`
	// contains filtered or unexported fields
}

func (ListServiceActionsOutput) String added in v0.6.0

func (s ListServiceActionsOutput) String() string

String returns the string representation

type ListServiceActionsPaginator added in v0.9.0

type ListServiceActionsPaginator struct {
	aws.Pager
}

ListServiceActionsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListServiceActionsPaginator added in v0.9.0

func NewListServiceActionsPaginator(req ListServiceActionsRequest) ListServiceActionsPaginator

NewListServiceActionsRequestPaginator returns a paginator for ListServiceActions. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListServiceActionsRequest(input)
p := servicecatalog.NewListServiceActionsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListServiceActionsPaginator) CurrentPage added in v0.9.0

type ListServiceActionsRequest added in v0.6.0

type ListServiceActionsRequest struct {
	*aws.Request
	Input *ListServiceActionsInput
	Copy  func(*ListServiceActionsInput) ListServiceActionsRequest
}

ListServiceActionsRequest is the request type for the ListServiceActions API operation.

func (ListServiceActionsRequest) Send added in v0.6.0

Send marshals and sends the ListServiceActions API request.

type ListServiceActionsResponse added in v0.9.0

type ListServiceActionsResponse struct {
	*ListServiceActionsOutput
	// contains filtered or unexported fields
}

ListServiceActionsResponse is the response type for the ListServiceActions API operation.

func (*ListServiceActionsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListServiceActionsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListServiceActions request.

type ListStackInstancesForProvisionedProductInput added in v0.10.0

type ListStackInstancesForProvisionedProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The identifier of the provisioned product.
	//
	// ProvisionedProductId is a required field
	ProvisionedProductId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListStackInstancesForProvisionedProductInput) String added in v0.10.0

String returns the string representation

func (*ListStackInstancesForProvisionedProductInput) Validate added in v0.10.0

Validate inspects the fields of the type to determine if they are valid.

type ListStackInstancesForProvisionedProductOutput added in v0.10.0

type ListStackInstancesForProvisionedProductOutput 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 `type:"string"`

	// List of stack instances.
	StackInstances []StackInstance `type:"list"`
	// contains filtered or unexported fields
}

func (ListStackInstancesForProvisionedProductOutput) String added in v0.10.0

String returns the string representation

type ListStackInstancesForProvisionedProductRequest added in v0.10.0

ListStackInstancesForProvisionedProductRequest is the request type for the ListStackInstancesForProvisionedProduct API operation.

func (ListStackInstancesForProvisionedProductRequest) Send added in v0.10.0

Send marshals and sends the ListStackInstancesForProvisionedProduct API request.

type ListStackInstancesForProvisionedProductResponse added in v0.10.0

type ListStackInstancesForProvisionedProductResponse struct {
	*ListStackInstancesForProvisionedProductOutput
	// contains filtered or unexported fields
}

ListStackInstancesForProvisionedProductResponse is the response type for the ListStackInstancesForProvisionedProduct API operation.

func (*ListStackInstancesForProvisionedProductResponse) SDKResponseMetdata added in v0.10.0

SDKResponseMetdata returns the response metadata for the ListStackInstancesForProvisionedProduct request.

type ListTagOptionsFilters

type ListTagOptionsFilters struct {

	// The active state.
	Active *bool `type:"boolean"`

	// The TagOption key.
	Key *string `min:"1" type:"string"`

	// The TagOption value.
	Value *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Filters to use when listing TagOptions.

func (ListTagOptionsFilters) String

func (s ListTagOptionsFilters) String() string

String returns the string representation

func (*ListTagOptionsFilters) Validate

func (s *ListTagOptionsFilters) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagOptionsInput

type ListTagOptionsInput struct {

	// The search filters. If no search filters are specified, the output includes
	// all TagOptions.
	Filters *ListTagOptionsFilters `type:"structure"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListTagOptionsInput) String

func (s ListTagOptionsInput) String() string

String returns the string representation

func (*ListTagOptionsInput) Validate

func (s *ListTagOptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagOptionsOutput

type ListTagOptionsOutput struct {

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// Information about the TagOptions.
	TagOptionDetails []TagOptionDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListTagOptionsOutput) String

func (s ListTagOptionsOutput) String() string

String returns the string representation

type ListTagOptionsPaginator added in v0.9.0

type ListTagOptionsPaginator struct {
	aws.Pager
}

ListTagOptionsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListTagOptionsPaginator added in v0.9.0

func NewListTagOptionsPaginator(req ListTagOptionsRequest) ListTagOptionsPaginator

NewListTagOptionsRequestPaginator returns a paginator for ListTagOptions. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListTagOptionsRequest(input)
p := servicecatalog.NewListTagOptionsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListTagOptionsPaginator) CurrentPage added in v0.9.0

type ListTagOptionsRequest

type ListTagOptionsRequest struct {
	*aws.Request
	Input *ListTagOptionsInput
	Copy  func(*ListTagOptionsInput) ListTagOptionsRequest
}

ListTagOptionsRequest is the request type for the ListTagOptions API operation.

func (ListTagOptionsRequest) Send

Send marshals and sends the ListTagOptions API request.

type ListTagOptionsResponse added in v0.9.0

type ListTagOptionsResponse struct {
	*ListTagOptionsOutput
	// contains filtered or unexported fields
}

ListTagOptionsResponse is the response type for the ListTagOptions API operation.

func (*ListTagOptionsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListTagOptionsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListTagOptions request.

type OrganizationNode added in v0.6.0

type OrganizationNode struct {

	// The organization node type.
	Type OrganizationNodeType `type:"string" enum:"true"`

	// The identifier of the organization node.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

Information about the organization node.

func (OrganizationNode) String added in v0.6.0

func (s OrganizationNode) String() string

String returns the string representation

type OrganizationNodeType added in v0.6.0

type OrganizationNodeType string
const (
	OrganizationNodeTypeOrganization       OrganizationNodeType = "ORGANIZATION"
	OrganizationNodeTypeOrganizationalUnit OrganizationNodeType = "ORGANIZATIONAL_UNIT"
	OrganizationNodeTypeAccount            OrganizationNodeType = "ACCOUNT"
)

Enum values for OrganizationNodeType

func (OrganizationNodeType) MarshalValue added in v0.6.0

func (enum OrganizationNodeType) MarshalValue() (string, error)

func (OrganizationNodeType) MarshalValueBuf added in v0.6.0

func (enum OrganizationNodeType) MarshalValueBuf(b []byte) ([]byte, error)

type ParameterConstraints

type ParameterConstraints struct {

	// The values that the administrator has allowed for the parameter.
	AllowedValues []string `type:"list"`
	// contains filtered or unexported fields
}

The constraints that the administrator has put on the parameter.

func (ParameterConstraints) String

func (s ParameterConstraints) String() string

String returns the string representation

type PortfolioDetail

type PortfolioDetail struct {

	// The ARN assigned to the portfolio.
	ARN *string `min:"1" type:"string"`

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// The description of the portfolio.
	Description *string `type:"string"`

	// The name to use for display purposes.
	DisplayName *string `min:"1" type:"string"`

	// The portfolio identifier.
	Id *string `min:"1" type:"string"`

	// The name of the portfolio provider.
	ProviderName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Information about a portfolio.

func (PortfolioDetail) String

func (s PortfolioDetail) String() string

String returns the string representation

type PortfolioShareType added in v0.4.0

type PortfolioShareType string
const (
	PortfolioShareTypeImported          PortfolioShareType = "IMPORTED"
	PortfolioShareTypeAwsServicecatalog PortfolioShareType = "AWS_SERVICECATALOG"
	PortfolioShareTypeAwsOrganizations  PortfolioShareType = "AWS_ORGANIZATIONS"
)

Enum values for PortfolioShareType

func (PortfolioShareType) MarshalValue added in v0.4.0

func (enum PortfolioShareType) MarshalValue() (string, error)

func (PortfolioShareType) MarshalValueBuf added in v0.4.0

func (enum PortfolioShareType) MarshalValueBuf(b []byte) ([]byte, error)

type Principal

type Principal struct {

	// The ARN of the principal (IAM user, role, or group).
	PrincipalARN *string `min:"1" type:"string"`

	// The principal type. The supported value is IAM.
	PrincipalType PrincipalType `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about a principal.

func (Principal) String

func (s Principal) String() string

String returns the string representation

type PrincipalType

type PrincipalType string
const (
	PrincipalTypeIam PrincipalType = "IAM"
)

Enum values for PrincipalType

func (PrincipalType) MarshalValue added in v0.3.0

func (enum PrincipalType) MarshalValue() (string, error)

func (PrincipalType) MarshalValueBuf added in v0.3.0

func (enum PrincipalType) MarshalValueBuf(b []byte) ([]byte, error)

type ProductSource

type ProductSource string
const (
	ProductSourceAccount ProductSource = "ACCOUNT"
)

Enum values for ProductSource

func (ProductSource) MarshalValue added in v0.3.0

func (enum ProductSource) MarshalValue() (string, error)

func (ProductSource) MarshalValueBuf added in v0.3.0

func (enum ProductSource) MarshalValueBuf(b []byte) ([]byte, error)

type ProductType

type ProductType string
const (
	ProductTypeCloudFormationTemplate ProductType = "CLOUD_FORMATION_TEMPLATE"
	ProductTypeMarketplace            ProductType = "MARKETPLACE"
)

Enum values for ProductType

func (ProductType) MarshalValue added in v0.3.0

func (enum ProductType) MarshalValue() (string, error)

func (ProductType) MarshalValueBuf added in v0.3.0

func (enum ProductType) MarshalValueBuf(b []byte) ([]byte, error)

type ProductViewAggregationValue

type ProductViewAggregationValue struct {

	// An approximate count of the products that match the value.
	ApproximateCount *int64 `type:"integer"`

	// The value of the product view aggregation.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

A single product view aggregation value/count pair, containing metadata about each product to which the calling user has access.

func (ProductViewAggregationValue) String

String returns the string representation

type ProductViewDetail

type ProductViewDetail struct {

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// The ARN of the product.
	ProductARN *string `min:"1" type:"string"`

	// Summary information about the product view.
	ProductViewSummary *ProductViewSummary `type:"structure"`

	// The status of the product.
	//
	//    * AVAILABLE - The product is ready for use.
	//
	//    * CREATING - Product creation has started; the product is not ready for
	//    use.
	//
	//    * FAILED - An action failed.
	Status Status `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about a product view.

func (ProductViewDetail) String

func (s ProductViewDetail) String() string

String returns the string representation

type ProductViewFilterBy

type ProductViewFilterBy string
const (
	ProductViewFilterByFullTextSearch  ProductViewFilterBy = "FullTextSearch"
	ProductViewFilterByOwner           ProductViewFilterBy = "Owner"
	ProductViewFilterByProductType     ProductViewFilterBy = "ProductType"
	ProductViewFilterBySourceProductId ProductViewFilterBy = "SourceProductId"
)

Enum values for ProductViewFilterBy

func (ProductViewFilterBy) MarshalValue added in v0.3.0

func (enum ProductViewFilterBy) MarshalValue() (string, error)

func (ProductViewFilterBy) MarshalValueBuf added in v0.3.0

func (enum ProductViewFilterBy) MarshalValueBuf(b []byte) ([]byte, error)

type ProductViewSortBy

type ProductViewSortBy string
const (
	ProductViewSortByTitle        ProductViewSortBy = "Title"
	ProductViewSortByVersionCount ProductViewSortBy = "VersionCount"
	ProductViewSortByCreationDate ProductViewSortBy = "CreationDate"
)

Enum values for ProductViewSortBy

func (ProductViewSortBy) MarshalValue added in v0.3.0

func (enum ProductViewSortBy) MarshalValue() (string, error)

func (ProductViewSortBy) MarshalValueBuf added in v0.3.0

func (enum ProductViewSortBy) MarshalValueBuf(b []byte) ([]byte, error)

type ProductViewSummary

type ProductViewSummary struct {

	// The distributor of the product. Contact the product administrator for the
	// significance of this value.
	Distributor *string `type:"string"`

	// Indicates whether the product has a default path. If the product does not
	// have a default path, call ListLaunchPaths to disambiguate between paths.
	// Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary
	// can be used directly with DescribeProvisioningParameters.
	HasDefaultPath *bool `type:"boolean"`

	// The product view identifier.
	Id *string `min:"1" type:"string"`

	// The name of the product.
	Name *string `type:"string"`

	// The owner of the product. Contact the product administrator for the significance
	// of this value.
	Owner *string `type:"string"`

	// The product identifier.
	ProductId *string `min:"1" type:"string"`

	// Short description of the product.
	ShortDescription *string `type:"string"`

	// The description of the support for this Product.
	SupportDescription *string `type:"string"`

	// The email contact information to obtain support for this Product.
	SupportEmail *string `type:"string"`

	// The URL information to obtain support for this Product.
	SupportUrl *string `type:"string"`

	// The product type. Contact the product administrator for the significance
	// of this value. If this value is MARKETPLACE, the product was created by AWS
	// Marketplace.
	Type ProductType `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Summary information about a product view.

func (ProductViewSummary) String

func (s ProductViewSummary) String() string

String returns the string representation

type PropertyKey added in v0.9.0

type PropertyKey string
const (
	PropertyKeyOwner PropertyKey = "OWNER"
)

Enum values for PropertyKey

func (PropertyKey) MarshalValue added in v0.9.0

func (enum PropertyKey) MarshalValue() (string, error)

func (PropertyKey) MarshalValueBuf added in v0.9.0

func (enum PropertyKey) MarshalValueBuf(b []byte) ([]byte, error)

type ProvisionProductInput

type ProvisionProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related
	// events.
	NotificationArns []string `type:"list"`

	// 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 `min:"1" type:"string"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// An idempotency token that uniquely identifies the provisioning request.
	//
	// ProvisionToken is a required field
	ProvisionToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// 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 is a required field
	ProvisionedProductName *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`

	// Parameters specified by the administrator that are required for provisioning
	// the product.
	ProvisioningParameters []ProvisioningParameter `type:"list"`

	// An object that contains information about the provisioning preferences for
	// a stack set.
	ProvisioningPreferences *ProvisioningPreferences `type:"structure"`

	// One or more tags.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (ProvisionProductInput) String

func (s ProvisionProductInput) String() string

String returns the string representation

func (*ProvisionProductInput) Validate

func (s *ProvisionProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ProvisionProductOutput

type ProvisionProductOutput struct {

	// Information about the result of provisioning the product.
	RecordDetail *RecordDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (ProvisionProductOutput) String

func (s ProvisionProductOutput) String() string

String returns the string representation

type ProvisionProductRequest

type ProvisionProductRequest struct {
	*aws.Request
	Input *ProvisionProductInput
	Copy  func(*ProvisionProductInput) ProvisionProductRequest
}

ProvisionProductRequest is the request type for the ProvisionProduct API operation.

func (ProvisionProductRequest) Send

Send marshals and sends the ProvisionProduct API request.

type ProvisionProductResponse added in v0.9.0

type ProvisionProductResponse struct {
	*ProvisionProductOutput
	// contains filtered or unexported fields
}

ProvisionProductResponse is the response type for the ProvisionProduct API operation.

func (*ProvisionProductResponse) SDKResponseMetdata added in v0.9.0

func (r *ProvisionProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ProvisionProduct request.

type ProvisionedProductAttribute added in v0.3.0

type ProvisionedProductAttribute struct {

	// The ARN of the provisioned product.
	Arn *string `min:"1" type:"string"`

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// The identifier of the provisioned product.
	Id *string `min:"1" 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 `min:"1" type:"string"`

	// The record identifier of the last request performed on this provisioned product.
	LastRecordId *string `min:"1" type:"string"`

	// The user-friendly name of the provisioned product.
	Name *string `min:"1" type:"string"`

	// The assigned identifier for the resource, such as an EC2 instance ID or an
	// S3 bucket name.
	PhysicalId *string `type:"string"`

	// The product identifier.
	ProductId *string `min:"1" type:"string"`

	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// The current status of the provisioned product.
	//
	//    * AVAILABLE - Stable state, ready to perform any operation. The most recent
	//    operation succeeded and completed.
	//
	//    * UNDER_CHANGE - Transitive state. Operations performed might not have
	//    valid results. Wait for an AVAILABLE status before performing operations.
	//
	//    * TAINTED - Stable state, ready to perform any operation. The stack has
	//    completed the requested operation but is not exactly what was requested.
	//    For example, a request to update to a new version failed and the stack
	//    rolled back to the current version.
	//
	//    * ERROR - An unexpected error occurred. The provisioned product exists
	//    but the stack is not running. For example, CloudFormation received a parameter
	//    value that was not valid and could not launch the stack.
	//
	//    * PLAN_IN_PROGRESS - Transitive state. The plan operations were performed
	//    to provision a new product, but resources have not yet been created. After
	//    reviewing the list of resources to be created, execute the plan. Wait
	//    for an AVAILABLE status before performing operations.
	Status ProvisionedProductStatus `type:"string" enum:"true"`

	// The current status message of the provisioned product.
	StatusMessage *string `type:"string"`

	// One or more tags.
	Tags []Tag `type:"list"`

	// The type of provisioned product. The supported values are CFN_STACK and CFN_STACKSET.
	Type *string `type:"string"`

	// The Amazon Resource Name (ARN) of the IAM user.
	UserArn *string `type:"string"`

	// The ARN of the IAM user in the session. This ARN might contain a session
	// ID.
	UserArnSession *string `type:"string"`
	// contains filtered or unexported fields
}

Information about a provisioned product.

func (ProvisionedProductAttribute) String added in v0.3.0

String returns the string representation

type ProvisionedProductDetail

type ProvisionedProductDetail struct {

	// The ARN of the provisioned product.
	Arn *string `min:"1" type:"string"`

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// The identifier of the provisioned product.
	Id *string `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 `min:"1" type:"string"`

	// The record identifier of the last request performed on this provisioned product.
	LastRecordId *string `type:"string"`

	// The user-friendly name of the provisioned product.
	Name *string `min:"1" type:"string"`

	// The product identifier. For example, prod-abcdzk7xy33qa.
	ProductId *string `min:"1" type:"string"`

	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// The current status of the provisioned product.
	//
	//    * AVAILABLE - Stable state, ready to perform any operation. The most recent
	//    operation succeeded and completed.
	//
	//    * UNDER_CHANGE - Transitive state. Operations performed might not have
	//    valid results. Wait for an AVAILABLE status before performing operations.
	//
	//    * TAINTED - Stable state, ready to perform any operation. The stack has
	//    completed the requested operation but is not exactly what was requested.
	//    For example, a request to update to a new version failed and the stack
	//    rolled back to the current version.
	//
	//    * ERROR - An unexpected error occurred. The provisioned product exists
	//    but the stack is not running. For example, CloudFormation received a parameter
	//    value that was not valid and could not launch the stack.
	//
	//    * PLAN_IN_PROGRESS - Transitive state. The plan operations were performed
	//    to provision a new product, but resources have not yet been created. After
	//    reviewing the list of resources to be created, execute the plan. Wait
	//    for an AVAILABLE status before performing operations.
	Status ProvisionedProductStatus `type:"string" enum:"true"`

	// The current status message of the provisioned product.
	StatusMessage *string `type:"string"`

	// The type of provisioned product. The supported values are CFN_STACK and CFN_STACKSET.
	Type *string `type:"string"`
	// contains filtered or unexported fields
}

Information about a provisioned product.

func (ProvisionedProductDetail) String

func (s ProvisionedProductDetail) String() string

String returns the string representation

type ProvisionedProductPlanDetails added in v0.3.0

type ProvisionedProductPlanDetails struct {

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related
	// events.
	NotificationArns []string `type:"list"`

	// 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 `min:"1" type:"string"`

	// The plan identifier.
	PlanId *string `min:"1" type:"string"`

	// The name of the plan.
	PlanName *string `type:"string"`

	// The plan type.
	PlanType ProvisionedProductPlanType `type:"string" enum:"true"`

	// The product identifier.
	ProductId *string `min:"1" type:"string"`

	// The product identifier.
	ProvisionProductId *string `min:"1" type:"string"`

	// The user-friendly name of the provisioned product.
	ProvisionProductName *string `min:"1" type:"string"`

	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// Parameters specified by the administrator that are required for provisioning
	// the product.
	ProvisioningParameters []UpdateProvisioningParameter `type:"list"`

	// The status.
	Status ProvisionedProductPlanStatus `type:"string" enum:"true"`

	// The status message.
	StatusMessage *string `type:"string"`

	// One or more tags.
	Tags []Tag `type:"list"`

	// The time when the plan was last updated.
	UpdatedTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

Information about a plan.

func (ProvisionedProductPlanDetails) String added in v0.3.0

String returns the string representation

type ProvisionedProductPlanStatus added in v0.3.0

type ProvisionedProductPlanStatus string
const (
	ProvisionedProductPlanStatusCreateInProgress  ProvisionedProductPlanStatus = "CREATE_IN_PROGRESS"
	ProvisionedProductPlanStatusCreateSuccess     ProvisionedProductPlanStatus = "CREATE_SUCCESS"
	ProvisionedProductPlanStatusCreateFailed      ProvisionedProductPlanStatus = "CREATE_FAILED"
	ProvisionedProductPlanStatusExecuteInProgress ProvisionedProductPlanStatus = "EXECUTE_IN_PROGRESS"
	ProvisionedProductPlanStatusExecuteSuccess    ProvisionedProductPlanStatus = "EXECUTE_SUCCESS"
	ProvisionedProductPlanStatusExecuteFailed     ProvisionedProductPlanStatus = "EXECUTE_FAILED"
)

Enum values for ProvisionedProductPlanStatus

func (ProvisionedProductPlanStatus) MarshalValue added in v0.3.0

func (enum ProvisionedProductPlanStatus) MarshalValue() (string, error)

func (ProvisionedProductPlanStatus) MarshalValueBuf added in v0.3.0

func (enum ProvisionedProductPlanStatus) MarshalValueBuf(b []byte) ([]byte, error)

type ProvisionedProductPlanSummary added in v0.3.0

type ProvisionedProductPlanSummary struct {

	// The plan identifier.
	PlanId *string `min:"1" type:"string"`

	// The name of the plan.
	PlanName *string `type:"string"`

	// The plan type.
	PlanType ProvisionedProductPlanType `type:"string" enum:"true"`

	// The product identifier.
	ProvisionProductId *string `min:"1" type:"string"`

	// The user-friendly name of the provisioned product.
	ProvisionProductName *string `min:"1" type:"string"`

	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Summary information about a plan.

func (ProvisionedProductPlanSummary) String added in v0.3.0

String returns the string representation

type ProvisionedProductPlanType added in v0.3.0

type ProvisionedProductPlanType string
const (
	ProvisionedProductPlanTypeCloudformation ProvisionedProductPlanType = "CLOUDFORMATION"
)

Enum values for ProvisionedProductPlanType

func (ProvisionedProductPlanType) MarshalValue added in v0.3.0

func (enum ProvisionedProductPlanType) MarshalValue() (string, error)

func (ProvisionedProductPlanType) MarshalValueBuf added in v0.3.0

func (enum ProvisionedProductPlanType) MarshalValueBuf(b []byte) ([]byte, error)

type ProvisionedProductStatus

type ProvisionedProductStatus string
const (
	ProvisionedProductStatusAvailable      ProvisionedProductStatus = "AVAILABLE"
	ProvisionedProductStatusUnderChange    ProvisionedProductStatus = "UNDER_CHANGE"
	ProvisionedProductStatusTainted        ProvisionedProductStatus = "TAINTED"
	ProvisionedProductStatusError          ProvisionedProductStatus = "ERROR"
	ProvisionedProductStatusPlanInProgress ProvisionedProductStatus = "PLAN_IN_PROGRESS"
)

Enum values for ProvisionedProductStatus

func (ProvisionedProductStatus) MarshalValue added in v0.3.0

func (enum ProvisionedProductStatus) MarshalValue() (string, error)

func (ProvisionedProductStatus) MarshalValueBuf added in v0.3.0

func (enum ProvisionedProductStatus) MarshalValueBuf(b []byte) ([]byte, error)

type ProvisionedProductViewFilterBy added in v0.3.0

type ProvisionedProductViewFilterBy string
const (
	ProvisionedProductViewFilterBySearchQuery ProvisionedProductViewFilterBy = "SearchQuery"
)

Enum values for ProvisionedProductViewFilterBy

func (ProvisionedProductViewFilterBy) MarshalValue added in v0.3.0

func (enum ProvisionedProductViewFilterBy) MarshalValue() (string, error)

func (ProvisionedProductViewFilterBy) MarshalValueBuf added in v0.3.0

func (enum ProvisionedProductViewFilterBy) MarshalValueBuf(b []byte) ([]byte, error)

type ProvisioningArtifact

type ProvisioningArtifact struct {

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// The description of the provisioning artifact.
	Description *string `type:"string"`

	// Information set by the administrator to provide guidance to end users about
	// which provisioning artifacts to use.
	Guidance ProvisioningArtifactGuidance `type:"string" enum:"true"`

	// The identifier of the provisioning artifact.
	Id *string `min:"1" type:"string"`

	// The name of the provisioning artifact.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

Information about a provisioning artifact. A provisioning artifact is also known as a product version.

func (ProvisioningArtifact) String

func (s ProvisioningArtifact) String() string

String returns the string representation

type ProvisioningArtifactDetail

type ProvisioningArtifactDetail struct {

	// Indicates whether the product version is active.
	Active *bool `type:"boolean"`

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// The description of the provisioning artifact.
	Description *string `type:"string"`

	// Information set by the administrator to provide guidance to end users about
	// which provisioning artifacts to use.
	Guidance ProvisioningArtifactGuidance `type:"string" enum:"true"`

	// The identifier of the provisioning artifact.
	Id *string `min:"1" type:"string"`

	// The name of the provisioning artifact.
	Name *string `type:"string"`

	// The type of provisioning artifact.
	//
	//    * CLOUD_FORMATION_TEMPLATE - AWS CloudFormation template
	//
	//    * MARKETPLACE_AMI - AWS Marketplace AMI
	//
	//    * MARKETPLACE_CAR - AWS Marketplace Clusters and AWS Resources
	Type ProvisioningArtifactType `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about a provisioning artifact (also known as a version) for a product.

func (ProvisioningArtifactDetail) String

String returns the string representation

type ProvisioningArtifactGuidance added in v0.10.0

type ProvisioningArtifactGuidance string
const (
	ProvisioningArtifactGuidanceDefault    ProvisioningArtifactGuidance = "DEFAULT"
	ProvisioningArtifactGuidanceDeprecated ProvisioningArtifactGuidance = "DEPRECATED"
)

Enum values for ProvisioningArtifactGuidance

func (ProvisioningArtifactGuidance) MarshalValue added in v0.10.0

func (enum ProvisioningArtifactGuidance) MarshalValue() (string, error)

func (ProvisioningArtifactGuidance) MarshalValueBuf added in v0.10.0

func (enum ProvisioningArtifactGuidance) MarshalValueBuf(b []byte) ([]byte, error)

type ProvisioningArtifactParameter

type ProvisioningArtifactParameter struct {

	// The default value.
	DefaultValue *string `type:"string"`

	// The description of the parameter.
	Description *string `type:"string"`

	// If this value is true, the value for this parameter is obfuscated from view
	// when the parameter is retrieved. This parameter is used to hide sensitive
	// information.
	IsNoEcho *bool `type:"boolean"`

	// Constraints that the administrator has put on a parameter.
	ParameterConstraints *ParameterConstraints `type:"structure"`

	// The parameter key.
	ParameterKey *string `min:"1" type:"string"`

	// The parameter type.
	ParameterType *string `type:"string"`
	// contains filtered or unexported fields
}

Information about a parameter used to provision a product.

func (ProvisioningArtifactParameter) String

String returns the string representation

type ProvisioningArtifactPreferences added in v0.6.0

type ProvisioningArtifactPreferences struct {

	// One or more AWS accounts where stack instances are deployed from the stack
	// set. These accounts can be scoped in ProvisioningPreferences$StackSetAccounts
	// and UpdateProvisioningPreferences$StackSetAccounts.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	StackSetAccounts []string `type:"list"`

	// One or more AWS Regions where stack instances are deployed from the stack
	// set. These regions can be scoped in ProvisioningPreferences$StackSetRegions
	// and UpdateProvisioningPreferences$StackSetRegions.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	StackSetRegions []string `type:"list"`
	// contains filtered or unexported fields
}

The user-defined preferences that will be applied during product provisioning, unless overridden by ProvisioningPreferences or UpdateProvisioningPreferences.

For more information on maximum concurrent accounts and failure tolerance, see Stack set operation options (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options) in the AWS CloudFormation User Guide.

func (ProvisioningArtifactPreferences) String added in v0.6.0

String returns the string representation

type ProvisioningArtifactProperties

type ProvisioningArtifactProperties struct {

	// The description of the provisioning artifact, including how it differs from
	// the previous provisioning artifact.
	Description *string `type:"string"`

	// If set to true, AWS Service Catalog stops validating the specified provisioning
	// artifact even if it is invalid.
	DisableTemplateValidation *bool `type:"boolean"`

	// The URL of the CloudFormation template in Amazon S3. Specify the URL in JSON
	// format as follows:
	//
	// "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
	//
	// Info is a required field
	Info map[string]string `min:"1" type:"map" required:"true"`

	// The name of the provisioning artifact (for example, v1 v2beta). No spaces
	// are allowed.
	Name *string `type:"string"`

	// The type of provisioning artifact.
	//
	//    * CLOUD_FORMATION_TEMPLATE - AWS CloudFormation template
	//
	//    * MARKETPLACE_AMI - AWS Marketplace AMI
	//
	//    * MARKETPLACE_CAR - AWS Marketplace Clusters and AWS Resources
	Type ProvisioningArtifactType `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about a provisioning artifact (also known as a version) for a product.

func (ProvisioningArtifactProperties) String

String returns the string representation

func (*ProvisioningArtifactProperties) Validate

func (s *ProvisioningArtifactProperties) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ProvisioningArtifactPropertyName

type ProvisioningArtifactPropertyName string
const (
	ProvisioningArtifactPropertyNameId ProvisioningArtifactPropertyName = "Id"
)

Enum values for ProvisioningArtifactPropertyName

func (ProvisioningArtifactPropertyName) MarshalValue added in v0.3.0

func (enum ProvisioningArtifactPropertyName) MarshalValue() (string, error)

func (ProvisioningArtifactPropertyName) MarshalValueBuf added in v0.3.0

func (enum ProvisioningArtifactPropertyName) MarshalValueBuf(b []byte) ([]byte, error)

type ProvisioningArtifactSummary

type ProvisioningArtifactSummary struct {

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// The description of the provisioning artifact.
	Description *string `type:"string"`

	// The identifier of the provisioning artifact.
	Id *string `min:"1" type:"string"`

	// The name of the provisioning artifact.
	Name *string `type:"string"`

	// The metadata for the provisioning artifact. This is used with AWS Marketplace
	// products.
	ProvisioningArtifactMetadata map[string]string `min:"1" type:"map"`
	// contains filtered or unexported fields
}

Summary information about a provisioning artifact (also known as a version) for a product.

func (ProvisioningArtifactSummary) String

String returns the string representation

type ProvisioningArtifactType

type ProvisioningArtifactType string
const (
	ProvisioningArtifactTypeCloudFormationTemplate ProvisioningArtifactType = "CLOUD_FORMATION_TEMPLATE"
	ProvisioningArtifactTypeMarketplaceAmi         ProvisioningArtifactType = "MARKETPLACE_AMI"
	ProvisioningArtifactTypeMarketplaceCar         ProvisioningArtifactType = "MARKETPLACE_CAR"
)

Enum values for ProvisioningArtifactType

func (ProvisioningArtifactType) MarshalValue added in v0.3.0

func (enum ProvisioningArtifactType) MarshalValue() (string, error)

func (ProvisioningArtifactType) MarshalValueBuf added in v0.3.0

func (enum ProvisioningArtifactType) MarshalValueBuf(b []byte) ([]byte, error)

type ProvisioningArtifactView added in v0.6.0

type ProvisioningArtifactView struct {

	// Summary information about a product view.
	ProductViewSummary *ProductViewSummary `type:"structure"`

	// Information about a provisioning artifact. A provisioning artifact is also
	// known as a product version.
	ProvisioningArtifact *ProvisioningArtifact `type:"structure"`
	// contains filtered or unexported fields
}

An object that contains summary information about a product view and a provisioning artifact.

func (ProvisioningArtifactView) String added in v0.6.0

func (s ProvisioningArtifactView) String() string

String returns the string representation

type ProvisioningParameter

type ProvisioningParameter struct {

	// The parameter key.
	Key *string `min:"1" type:"string"`

	// The parameter value.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

Information about a parameter used to provision a product.

func (ProvisioningParameter) String

func (s ProvisioningParameter) String() string

String returns the string representation

func (*ProvisioningParameter) Validate

func (s *ProvisioningParameter) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ProvisioningPreferences added in v0.6.0

type ProvisioningPreferences struct {

	// One or more AWS accounts that will have access to the provisioned product.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// The AWS accounts specified should be within the list of accounts in the STACKSET
	// constraint. To get the list of accounts in the STACKSET constraint, use the
	// DescribeProvisioningParameters operation.
	//
	// If no values are specified, the default value is all accounts from the STACKSET
	// constraint.
	StackSetAccounts []string `type:"list"`

	// The number of accounts, per region, for which this operation can fail before
	// AWS Service Catalog stops the operation in that region. If the operation
	// is stopped in a region, AWS Service Catalog doesn't attempt the operation
	// in any subsequent regions.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage,
	// but not both.
	//
	// The default value is 0 if no value is specified.
	StackSetFailureToleranceCount *int64 `type:"integer"`

	// The percentage of accounts, per region, for which this stack operation can
	// fail before AWS Service Catalog stops the operation in that region. If the
	// operation is stopped in a region, AWS Service Catalog doesn't attempt the
	// operation in any subsequent regions.
	//
	// When calculating the number of accounts based on the specified percentage,
	// AWS Service Catalog rounds down to the next whole number.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage,
	// but not both.
	StackSetFailureTolerancePercentage *int64 `type:"integer"`

	// The maximum number of accounts in which to perform this operation at one
	// time. This is dependent on the value of StackSetFailureToleranceCount. StackSetMaxConcurrentCount
	// is at most one more than the StackSetFailureToleranceCount.
	//
	// Note that this setting lets you specify the maximum for operations. For large
	// deployments, under certain circumstances the actual number of accounts acted
	// upon concurrently may be lower due to service throttling.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage,
	// but not both.
	StackSetMaxConcurrencyCount *int64 `min:"1" type:"integer"`

	// The maximum percentage of accounts in which to perform this operation at
	// one time.
	//
	// When calculating the number of accounts based on the specified percentage,
	// AWS Service Catalog rounds down to the next whole number. This is true except
	// in cases where rounding down would result is zero. In this case, AWS Service
	// Catalog sets the number as 1 instead.
	//
	// Note that this setting lets you specify the maximum for operations. For large
	// deployments, under certain circumstances the actual number of accounts acted
	// upon concurrently may be lower due to service throttling.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage,
	// but not both.
	StackSetMaxConcurrencyPercentage *int64 `min:"1" type:"integer"`

	// One or more AWS Regions where the provisioned product will be available.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// The specified regions should be within the list of regions from the STACKSET
	// constraint. To get the list of regions in the STACKSET constraint, use the
	// DescribeProvisioningParameters operation.
	//
	// If no values are specified, the default value is all regions from the STACKSET
	// constraint.
	StackSetRegions []string `type:"list"`
	// contains filtered or unexported fields
}

The user-defined preferences that will be applied when updating a provisioned product. Not all preferences are applicable to all provisioned product types.

func (ProvisioningPreferences) String added in v0.6.0

func (s ProvisioningPreferences) String() string

String returns the string representation

func (*ProvisioningPreferences) Validate added in v0.6.0

func (s *ProvisioningPreferences) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RecordDetail

type RecordDetail struct {

	// The UTC time stamp of the creation time.
	CreatedTime *time.Time `type:"timestamp"`

	// The path identifier.
	PathId *string `min:"1" type:"string"`

	// The product identifier.
	ProductId *string `min:"1" type:"string"`

	// The identifier of the provisioned product.
	ProvisionedProductId *string `min:"1" type:"string"`

	// The user-friendly name of the provisioned product.
	ProvisionedProductName *string `min:"1" type:"string"`

	// The type of provisioned product. The supported values are CFN_STACK and CFN_STACKSET.
	ProvisionedProductType *string `type:"string"`

	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// The errors that occurred.
	RecordErrors []RecordError `type:"list"`

	// The identifier of the record.
	RecordId *string `min:"1" type:"string"`

	// One or more tags.
	RecordTags []RecordTag `type:"list"`

	// The record type.
	//
	//    * PROVISION_PRODUCT
	//
	//    * UPDATE_PROVISIONED_PRODUCT
	//
	//    * TERMINATE_PROVISIONED_PRODUCT
	RecordType *string `type:"string"`

	// The status of the provisioned product.
	//
	//    * CREATED - The request was created but the operation has not started.
	//
	//    * IN_PROGRESS - The requested operation is in progress.
	//
	//    * IN_PROGRESS_IN_ERROR - The provisioned product is under change but the
	//    requested operation failed and some remediation is occurring. For example,
	//    a rollback.
	//
	//    * SUCCEEDED - The requested operation has successfully completed.
	//
	//    * FAILED - The requested operation has unsuccessfully completed. Investigate
	//    using the error messages returned.
	Status RecordStatus `type:"string" enum:"true"`

	// The time when the record was last updated.
	UpdatedTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

Information about a request operation.

func (RecordDetail) String

func (s RecordDetail) String() string

String returns the string representation

type RecordError

type RecordError struct {

	// The numeric value of the error.
	Code *string `type:"string"`

	// The description of the error.
	Description *string `type:"string"`
	// contains filtered or unexported fields
}

The error code and description resulting from an operation.

func (RecordError) String

func (s RecordError) String() string

String returns the string representation

type RecordOutput

type RecordOutput struct {

	// The description of the output.
	Description *string `type:"string"`

	// The output key.
	OutputKey *string `type:"string"`

	// The output value.
	OutputValue *string `type:"string"`
	// contains filtered or unexported fields
}

The output for 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.

func (RecordOutput) String

func (s RecordOutput) String() string

String returns the string representation

type RecordStatus

type RecordStatus string
const (
	RecordStatusCreated           RecordStatus = "CREATED"
	RecordStatusInProgress        RecordStatus = "IN_PROGRESS"
	RecordStatusInProgressInError RecordStatus = "IN_PROGRESS_IN_ERROR"
	RecordStatusSucceeded         RecordStatus = "SUCCEEDED"
	RecordStatusFailed            RecordStatus = "FAILED"
)

Enum values for RecordStatus

func (RecordStatus) MarshalValue added in v0.3.0

func (enum RecordStatus) MarshalValue() (string, error)

func (RecordStatus) MarshalValueBuf added in v0.3.0

func (enum RecordStatus) MarshalValueBuf(b []byte) ([]byte, error)

type RecordTag

type RecordTag struct {

	// The key for this tag.
	Key *string `min:"1" type:"string"`

	// The value for this tag.
	Value *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Information about a tag, which is a key-value pair.

func (RecordTag) String

func (s RecordTag) String() string

String returns the string representation

type RejectPortfolioShareInput

type RejectPortfolioShareInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The portfolio identifier.
	//
	// PortfolioId is a required field
	PortfolioId *string `min:"1" type:"string" required:"true"`

	// 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 PortfolioShareType `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (RejectPortfolioShareInput) String

func (s RejectPortfolioShareInput) String() string

String returns the string representation

func (*RejectPortfolioShareInput) Validate

func (s *RejectPortfolioShareInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RejectPortfolioShareOutput

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

func (RejectPortfolioShareOutput) String

String returns the string representation

type RejectPortfolioShareRequest

type RejectPortfolioShareRequest struct {
	*aws.Request
	Input *RejectPortfolioShareInput
	Copy  func(*RejectPortfolioShareInput) RejectPortfolioShareRequest
}

RejectPortfolioShareRequest is the request type for the RejectPortfolioShare API operation.

func (RejectPortfolioShareRequest) Send

Send marshals and sends the RejectPortfolioShare API request.

type RejectPortfolioShareResponse added in v0.9.0

type RejectPortfolioShareResponse struct {
	*RejectPortfolioShareOutput
	// contains filtered or unexported fields
}

RejectPortfolioShareResponse is the response type for the RejectPortfolioShare API operation.

func (*RejectPortfolioShareResponse) SDKResponseMetdata added in v0.9.0

func (r *RejectPortfolioShareResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the RejectPortfolioShare request.

type Replacement added in v0.3.0

type Replacement string
const (
	ReplacementTrue        Replacement = "TRUE"
	ReplacementFalse       Replacement = "FALSE"
	ReplacementConditional Replacement = "CONDITIONAL"
)

Enum values for Replacement

func (Replacement) MarshalValue added in v0.3.0

func (enum Replacement) MarshalValue() (string, error)

func (Replacement) MarshalValueBuf added in v0.3.0

func (enum Replacement) MarshalValueBuf(b []byte) ([]byte, error)

type RequiresRecreation added in v0.3.0

type RequiresRecreation string
const (
	RequiresRecreationNever         RequiresRecreation = "NEVER"
	RequiresRecreationConditionally RequiresRecreation = "CONDITIONALLY"
	RequiresRecreationAlways        RequiresRecreation = "ALWAYS"
)

Enum values for RequiresRecreation

func (RequiresRecreation) MarshalValue added in v0.3.0

func (enum RequiresRecreation) MarshalValue() (string, error)

func (RequiresRecreation) MarshalValueBuf added in v0.3.0

func (enum RequiresRecreation) MarshalValueBuf(b []byte) ([]byte, error)

type ResourceAttribute added in v0.3.0

type ResourceAttribute string
const (
	ResourceAttributeProperties     ResourceAttribute = "PROPERTIES"
	ResourceAttributeMetadata       ResourceAttribute = "METADATA"
	ResourceAttributeCreationpolicy ResourceAttribute = "CREATIONPOLICY"
	ResourceAttributeUpdatepolicy   ResourceAttribute = "UPDATEPOLICY"
	ResourceAttributeDeletionpolicy ResourceAttribute = "DELETIONPOLICY"
	ResourceAttributeTags           ResourceAttribute = "TAGS"
)

Enum values for ResourceAttribute

func (ResourceAttribute) MarshalValue added in v0.3.0

func (enum ResourceAttribute) MarshalValue() (string, error)

func (ResourceAttribute) MarshalValueBuf added in v0.3.0

func (enum ResourceAttribute) MarshalValueBuf(b []byte) ([]byte, error)

type ResourceChange added in v0.3.0

type ResourceChange struct {

	// The change action.
	Action ChangeAction `type:"string" enum:"true"`

	// Information about the resource changes.
	Details []ResourceChangeDetail `type:"list"`

	// The ID of the resource, as defined in the CloudFormation template.
	LogicalResourceId *string `type:"string"`

	// The ID of the resource, if it was already created.
	PhysicalResourceId *string `type:"string"`

	// If the change type is Modify, indicates whether the existing resource is
	// deleted and replaced with a new one.
	Replacement Replacement `type:"string" enum:"true"`

	// The type of resource.
	ResourceType *string `min:"1" type:"string"`

	// The change scope.
	Scope []ResourceAttribute `type:"list"`
	// contains filtered or unexported fields
}

Information about a resource change that will occur when a plan is executed.

func (ResourceChange) String added in v0.3.0

func (s ResourceChange) String() string

String returns the string representation

type ResourceChangeDetail added in v0.3.0

type ResourceChangeDetail struct {

	// The ID of the entity that caused the change.
	CausingEntity *string `type:"string"`

	// For static evaluations, the value of the resource attribute will change and
	// the new value is known. For dynamic evaluations, the value might change,
	// and any new value will be determined when the plan is updated.
	Evaluation EvaluationType `type:"string" enum:"true"`

	// Information about the resource attribute to be modified.
	Target *ResourceTargetDefinition `type:"structure"`
	// contains filtered or unexported fields
}

Information about a change to a resource attribute.

func (ResourceChangeDetail) String added in v0.3.0

func (s ResourceChangeDetail) String() string

String returns the string representation

type ResourceDetail

type ResourceDetail struct {

	// The ARN of the resource.
	ARN *string `type:"string"`

	// The creation time of the resource.
	CreatedTime *time.Time `type:"timestamp"`

	// The description of the resource.
	Description *string `type:"string"`

	// The identifier of the resource.
	Id *string `type:"string"`

	// The name of the resource.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

Information about a resource.

func (ResourceDetail) String

func (s ResourceDetail) String() string

String returns the string representation

type ResourceTargetDefinition added in v0.3.0

type ResourceTargetDefinition struct {

	// The attribute to be changed.
	Attribute ResourceAttribute `type:"string" enum:"true"`

	// If the attribute is Properties, the value is the name of the property. Otherwise,
	// the value is null.
	Name *string `type:"string"`

	// If the attribute is Properties, indicates whether a change to this property
	// causes the resource to be re-created.
	RequiresRecreation RequiresRecreation `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about a change to a resource attribute.

func (ResourceTargetDefinition) String added in v0.3.0

func (s ResourceTargetDefinition) String() string

String returns the string representation

type ScanProvisionedProductsInput

type ScanProvisionedProductsInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The access level to use to obtain results. The default is User.
	AccessLevelFilter *AccessLevelFilter `type:"structure"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ScanProvisionedProductsInput) String

String returns the string representation

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 `type:"string"`

	// Information about the provisioned products.
	ProvisionedProducts []ProvisionedProductDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ScanProvisionedProductsOutput) String

String returns the string representation

type ScanProvisionedProductsRequest

type ScanProvisionedProductsRequest struct {
	*aws.Request
	Input *ScanProvisionedProductsInput
	Copy  func(*ScanProvisionedProductsInput) ScanProvisionedProductsRequest
}

ScanProvisionedProductsRequest is the request type for the ScanProvisionedProducts API operation.

func (ScanProvisionedProductsRequest) Send

Send marshals and sends the ScanProvisionedProducts API request.

type ScanProvisionedProductsResponse added in v0.9.0

type ScanProvisionedProductsResponse struct {
	*ScanProvisionedProductsOutput
	// contains filtered or unexported fields
}

ScanProvisionedProductsResponse is the response type for the ScanProvisionedProducts API operation.

func (*ScanProvisionedProductsResponse) SDKResponseMetdata added in v0.9.0

func (r *ScanProvisionedProductsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ScanProvisionedProducts request.

type SearchProductsAsAdminInput

type SearchProductsAsAdminInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The search filters. If no search filters are specified, the output includes
	// all products to which the administrator has access.
	Filters map[string][]string `type:"map"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The portfolio identifier.
	PortfolioId *string `min:"1" type:"string"`

	// Access level of the source of the product.
	ProductSource ProductSource `type:"string" enum:"true"`

	// The sort field. If no value is specified, the results are not sorted.
	SortBy ProductViewSortBy `type:"string" enum:"true"`

	// The sort order. If no value is specified, the results are not sorted.
	SortOrder SortOrder `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (SearchProductsAsAdminInput) String

String returns the string representation

func (*SearchProductsAsAdminInput) Validate

func (s *SearchProductsAsAdminInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SearchProductsAsAdminOutput

type SearchProductsAsAdminOutput 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 `type:"string"`

	// Information about the product views.
	ProductViewDetails []ProductViewDetail `type:"list"`
	// contains filtered or unexported fields
}

func (SearchProductsAsAdminOutput) String

String returns the string representation

type SearchProductsAsAdminPaginator added in v0.9.0

type SearchProductsAsAdminPaginator struct {
	aws.Pager
}

SearchProductsAsAdminPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewSearchProductsAsAdminPaginator added in v0.9.0

func NewSearchProductsAsAdminPaginator(req SearchProductsAsAdminRequest) SearchProductsAsAdminPaginator

NewSearchProductsAsAdminRequestPaginator returns a paginator for SearchProductsAsAdmin. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.SearchProductsAsAdminRequest(input)
p := servicecatalog.NewSearchProductsAsAdminRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*SearchProductsAsAdminPaginator) CurrentPage added in v0.9.0

type SearchProductsAsAdminRequest

type SearchProductsAsAdminRequest struct {
	*aws.Request
	Input *SearchProductsAsAdminInput
	Copy  func(*SearchProductsAsAdminInput) SearchProductsAsAdminRequest
}

SearchProductsAsAdminRequest is the request type for the SearchProductsAsAdmin API operation.

func (SearchProductsAsAdminRequest) Send

Send marshals and sends the SearchProductsAsAdmin API request.

type SearchProductsAsAdminResponse added in v0.9.0

type SearchProductsAsAdminResponse struct {
	*SearchProductsAsAdminOutput
	// contains filtered or unexported fields
}

SearchProductsAsAdminResponse is the response type for the SearchProductsAsAdmin API operation.

func (*SearchProductsAsAdminResponse) SDKResponseMetdata added in v0.9.0

func (r *SearchProductsAsAdminResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the SearchProductsAsAdmin request.

type SearchProductsInput

type SearchProductsInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The search filters. If no search filters are specified, the output includes
	// all products to which the caller has access.
	Filters map[string][]string `type:"map"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"string"`

	// The sort field. If no value is specified, the results are not sorted.
	SortBy ProductViewSortBy `type:"string" enum:"true"`

	// The sort order. If no value is specified, the results are not sorted.
	SortOrder SortOrder `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (SearchProductsInput) String

func (s SearchProductsInput) String() string

String returns the string representation

type SearchProductsOutput

type SearchProductsOutput 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 `type:"string"`

	// The product view aggregations.
	ProductViewAggregations map[string][]ProductViewAggregationValue `type:"map"`

	// Information about the product views.
	ProductViewSummaries []ProductViewSummary `type:"list"`
	// contains filtered or unexported fields
}

func (SearchProductsOutput) String

func (s SearchProductsOutput) String() string

String returns the string representation

type SearchProductsPaginator added in v0.9.0

type SearchProductsPaginator struct {
	aws.Pager
}

SearchProductsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewSearchProductsPaginator added in v0.9.0

func NewSearchProductsPaginator(req SearchProductsRequest) SearchProductsPaginator

NewSearchProductsRequestPaginator returns a paginator for SearchProducts. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.SearchProductsRequest(input)
p := servicecatalog.NewSearchProductsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*SearchProductsPaginator) CurrentPage added in v0.9.0

type SearchProductsRequest

type SearchProductsRequest struct {
	*aws.Request
	Input *SearchProductsInput
	Copy  func(*SearchProductsInput) SearchProductsRequest
}

SearchProductsRequest is the request type for the SearchProducts API operation.

func (SearchProductsRequest) Send

Send marshals and sends the SearchProducts API request.

type SearchProductsResponse added in v0.9.0

type SearchProductsResponse struct {
	*SearchProductsOutput
	// contains filtered or unexported fields
}

SearchProductsResponse is the response type for the SearchProducts API operation.

func (*SearchProductsResponse) SDKResponseMetdata added in v0.9.0

func (r *SearchProductsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the SearchProducts request.

type SearchProvisionedProductsInput added in v0.3.0

type SearchProvisionedProductsInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The access level to use to obtain results. The default is User.
	AccessLevelFilter *AccessLevelFilter `type:"structure"`

	// 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 `type:"map"`

	// The maximum number of items to return with this call.
	PageSize *int64 `type:"integer"`

	// The page token for the next set of results. To retrieve the first set of
	// results, use null.
	PageToken *string `type:"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 `type:"string"`

	// The sort order. If no value is specified, the results are not sorted.
	SortOrder SortOrder `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (SearchProvisionedProductsInput) String added in v0.3.0

String returns the string representation

type SearchProvisionedProductsOutput added in v0.3.0

type SearchProvisionedProductsOutput 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 `type:"string"`

	// Information about the provisioned products.
	ProvisionedProducts []ProvisionedProductAttribute `type:"list"`

	// The number of provisioned products found.
	TotalResultsCount *int64 `type:"integer"`
	// contains filtered or unexported fields
}

func (SearchProvisionedProductsOutput) String added in v0.3.0

String returns the string representation

type SearchProvisionedProductsPaginator added in v0.9.0

type SearchProvisionedProductsPaginator struct {
	aws.Pager
}

SearchProvisionedProductsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewSearchProvisionedProductsPaginator added in v0.9.0

func NewSearchProvisionedProductsPaginator(req SearchProvisionedProductsRequest) SearchProvisionedProductsPaginator

NewSearchProvisionedProductsRequestPaginator returns a paginator for SearchProvisionedProducts. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.SearchProvisionedProductsRequest(input)
p := servicecatalog.NewSearchProvisionedProductsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*SearchProvisionedProductsPaginator) CurrentPage added in v0.9.0

type SearchProvisionedProductsRequest added in v0.3.0

type SearchProvisionedProductsRequest struct {
	*aws.Request
	Input *SearchProvisionedProductsInput
	Copy  func(*SearchProvisionedProductsInput) SearchProvisionedProductsRequest
}

SearchProvisionedProductsRequest is the request type for the SearchProvisionedProducts API operation.

func (SearchProvisionedProductsRequest) Send added in v0.3.0

Send marshals and sends the SearchProvisionedProducts API request.

type SearchProvisionedProductsResponse added in v0.9.0

type SearchProvisionedProductsResponse struct {
	*SearchProvisionedProductsOutput
	// contains filtered or unexported fields
}

SearchProvisionedProductsResponse is the response type for the SearchProvisionedProducts API operation.

func (*SearchProvisionedProductsResponse) SDKResponseMetdata added in v0.9.0

func (r *SearchProvisionedProductsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the SearchProvisionedProducts request.

type ServiceActionAssociation added in v0.6.0

type ServiceActionAssociation struct {

	// The product identifier. For example, prod-abcdzk7xy33qa.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`

	// The self-service action identifier. For example, act-fs7abcd89wxyz.
	//
	// ServiceActionId is a required field
	ServiceActionId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

A self-service action association consisting of the Action ID, the Product ID, and the Provisioning Artifact ID.

func (ServiceActionAssociation) String added in v0.6.0

func (s ServiceActionAssociation) String() string

String returns the string representation

func (*ServiceActionAssociation) Validate added in v0.6.0

func (s *ServiceActionAssociation) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ServiceActionAssociationErrorCode added in v0.6.0

type ServiceActionAssociationErrorCode string
const (
	ServiceActionAssociationErrorCodeDuplicateResource ServiceActionAssociationErrorCode = "DUPLICATE_RESOURCE"
	ServiceActionAssociationErrorCodeInternalFailure   ServiceActionAssociationErrorCode = "INTERNAL_FAILURE"
	ServiceActionAssociationErrorCodeLimitExceeded     ServiceActionAssociationErrorCode = "LIMIT_EXCEEDED"
	ServiceActionAssociationErrorCodeResourceNotFound  ServiceActionAssociationErrorCode = "RESOURCE_NOT_FOUND"
	ServiceActionAssociationErrorCodeThrottling        ServiceActionAssociationErrorCode = "THROTTLING"
)

Enum values for ServiceActionAssociationErrorCode

func (ServiceActionAssociationErrorCode) MarshalValue added in v0.6.0

func (enum ServiceActionAssociationErrorCode) MarshalValue() (string, error)

func (ServiceActionAssociationErrorCode) MarshalValueBuf added in v0.6.0

func (enum ServiceActionAssociationErrorCode) MarshalValueBuf(b []byte) ([]byte, error)

type ServiceActionDefinitionKey added in v0.6.0

type ServiceActionDefinitionKey string
const (
	ServiceActionDefinitionKeyName       ServiceActionDefinitionKey = "Name"
	ServiceActionDefinitionKeyVersion    ServiceActionDefinitionKey = "Version"
	ServiceActionDefinitionKeyAssumeRole ServiceActionDefinitionKey = "AssumeRole"
	ServiceActionDefinitionKeyParameters ServiceActionDefinitionKey = "Parameters"
)

Enum values for ServiceActionDefinitionKey

func (ServiceActionDefinitionKey) MarshalValue added in v0.6.0

func (enum ServiceActionDefinitionKey) MarshalValue() (string, error)

func (ServiceActionDefinitionKey) MarshalValueBuf added in v0.6.0

func (enum ServiceActionDefinitionKey) MarshalValueBuf(b []byte) ([]byte, error)

type ServiceActionDefinitionType added in v0.6.0

type ServiceActionDefinitionType string
const (
	ServiceActionDefinitionTypeSsmAutomation ServiceActionDefinitionType = "SSM_AUTOMATION"
)

Enum values for ServiceActionDefinitionType

func (ServiceActionDefinitionType) MarshalValue added in v0.6.0

func (enum ServiceActionDefinitionType) MarshalValue() (string, error)

func (ServiceActionDefinitionType) MarshalValueBuf added in v0.6.0

func (enum ServiceActionDefinitionType) MarshalValueBuf(b []byte) ([]byte, error)

type ServiceActionDetail added in v0.6.0

type ServiceActionDetail struct {

	// A map that defines the self-service action.
	Definition map[string]string `min:"1" type:"map"`

	// Summary information about the self-service action.
	ServiceActionSummary *ServiceActionSummary `type:"structure"`
	// contains filtered or unexported fields
}

An object containing detailed information about the self-service action.

func (ServiceActionDetail) String added in v0.6.0

func (s ServiceActionDetail) String() string

String returns the string representation

type ServiceActionSummary added in v0.6.0

type ServiceActionSummary struct {

	// The self-service action definition type. For example, SSM_AUTOMATION.
	DefinitionType ServiceActionDefinitionType `type:"string" enum:"true"`

	// The self-service action description.
	Description *string `type:"string"`

	// The self-service action identifier.
	Id *string `min:"1" type:"string"`

	// The self-service action name.
	Name *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Detailed information about the self-service action.

func (ServiceActionSummary) String added in v0.6.0

func (s ServiceActionSummary) String() string

String returns the string representation

type ShareDetails added in v0.6.0

type ShareDetails struct {

	// List of errors.
	ShareErrors []ShareError `type:"list"`

	// List of accounts for whom the operation succeeded.
	SuccessfulShares []string `type:"list"`
	// contains filtered or unexported fields
}

Information about the portfolio share operation.

func (ShareDetails) String added in v0.6.0

func (s ShareDetails) String() string

String returns the string representation

type ShareError added in v0.6.0

type ShareError struct {

	// List of accounts impacted by the error.
	Accounts []string `type:"list"`

	// Error type that happened when processing the operation.
	Error *string `type:"string"`

	// Information about the error.
	Message *string `type:"string"`
	// contains filtered or unexported fields
}

Errors that occurred during the portfolio share operation.

func (ShareError) String added in v0.6.0

func (s ShareError) String() string

String returns the string representation

type ShareStatus added in v0.6.0

type ShareStatus string
const (
	ShareStatusNotStarted          ShareStatus = "NOT_STARTED"
	ShareStatusInProgress          ShareStatus = "IN_PROGRESS"
	ShareStatusCompleted           ShareStatus = "COMPLETED"
	ShareStatusCompletedWithErrors ShareStatus = "COMPLETED_WITH_ERRORS"
	ShareStatusError               ShareStatus = "ERROR"
)

Enum values for ShareStatus

func (ShareStatus) MarshalValue added in v0.6.0

func (enum ShareStatus) MarshalValue() (string, error)

func (ShareStatus) MarshalValueBuf added in v0.6.0

func (enum ShareStatus) MarshalValueBuf(b []byte) ([]byte, error)

type SortOrder

type SortOrder string
const (
	SortOrderAscending  SortOrder = "ASCENDING"
	SortOrderDescending SortOrder = "DESCENDING"
)

Enum values for SortOrder

func (SortOrder) MarshalValue added in v0.3.0

func (enum SortOrder) MarshalValue() (string, error)

func (SortOrder) MarshalValueBuf added in v0.3.0

func (enum SortOrder) MarshalValueBuf(b []byte) ([]byte, error)

type StackInstance added in v0.10.0

type StackInstance struct {

	// The name of the AWS account that the stack instance is associated with.
	Account *string `type:"string"`

	// The name of the AWS region that the stack instance is associated with.
	Region *string `type:"string"`

	// The status of the stack instance, in terms of its synchronization with its
	// associated stack set.
	//
	//    * INOPERABLE: A DeleteStackInstances operation has failed and left the
	//    stack in an unstable state. Stacks in this state are excluded from further
	//    UpdateStackSet operations. You might need to perform a DeleteStackInstances
	//    operation, with RetainStacks set to true, to delete the stack instance,
	//    and then delete the stack manually.
	//
	//    * OUTDATED: The stack isn't currently up to date with the stack set because
	//    either the associated stack failed during a CreateStackSet or UpdateStackSet
	//    operation, or the stack was part of a CreateStackSet or UpdateStackSet
	//    operation that failed or was stopped before the stack was created or updated.
	//
	//    * CURRENT: The stack is currently up to date with the stack set.
	StackInstanceStatus StackInstanceStatus `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

An AWS CloudFormation stack, in a specific account and region, that's part of a stack set operation. A stack instance is a reference to an attempted or actual stack in a given account within a given region. A stack instance can exist without a stack—for example, if the stack couldn't be created for some reason. A stack instance is associated with only one stack set. Each stack instance contains the ID of its associated stack set, as well as the ID of the actual stack and the stack status.

func (StackInstance) String added in v0.10.0

func (s StackInstance) String() string

String returns the string representation

type StackInstanceStatus added in v0.10.0

type StackInstanceStatus string
const (
	StackInstanceStatusCurrent    StackInstanceStatus = "CURRENT"
	StackInstanceStatusOutdated   StackInstanceStatus = "OUTDATED"
	StackInstanceStatusInoperable StackInstanceStatus = "INOPERABLE"
)

Enum values for StackInstanceStatus

func (StackInstanceStatus) MarshalValue added in v0.10.0

func (enum StackInstanceStatus) MarshalValue() (string, error)

func (StackInstanceStatus) MarshalValueBuf added in v0.10.0

func (enum StackInstanceStatus) MarshalValueBuf(b []byte) ([]byte, error)

type StackSetOperationType added in v0.6.0

type StackSetOperationType string
const (
	StackSetOperationTypeCreate StackSetOperationType = "CREATE"
	StackSetOperationTypeUpdate StackSetOperationType = "UPDATE"
	StackSetOperationTypeDelete StackSetOperationType = "DELETE"
)

Enum values for StackSetOperationType

func (StackSetOperationType) MarshalValue added in v0.6.0

func (enum StackSetOperationType) MarshalValue() (string, error)

func (StackSetOperationType) MarshalValueBuf added in v0.6.0

func (enum StackSetOperationType) MarshalValueBuf(b []byte) ([]byte, error)

type Status

type Status string
const (
	StatusAvailable Status = "AVAILABLE"
	StatusCreating  Status = "CREATING"
	StatusFailed    Status = "FAILED"
)

Enum values for Status

func (Status) MarshalValue added in v0.3.0

func (enum Status) MarshalValue() (string, error)

func (Status) MarshalValueBuf added in v0.3.0

func (enum Status) MarshalValueBuf(b []byte) ([]byte, error)

type Tag

type Tag struct {

	// The tag key.
	//
	// Key is a required field
	Key *string `min:"1" type:"string" required:"true"`

	// The value for this key.
	//
	// Value is a required field
	Value *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Information about a tag. A tag is a key-value pair. Tags are propagated to the resources created when provisioning a product.

func (Tag) String

func (s Tag) String() string

String returns the string representation

func (*Tag) Validate

func (s *Tag) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagOptionDetail

type TagOptionDetail struct {

	// The TagOption active state.
	Active *bool `type:"boolean"`

	// The TagOption identifier.
	Id *string `min:"1" type:"string"`

	// The TagOption key.
	Key *string `min:"1" type:"string"`

	// The TagOption value.
	Value *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Information about a TagOption.

func (TagOptionDetail) String

func (s TagOptionDetail) String() string

String returns the string representation

type TagOptionSummary

type TagOptionSummary struct {

	// The TagOption key.
	Key *string `min:"1" type:"string"`

	// The TagOption value.
	Values []string `type:"list"`
	// contains filtered or unexported fields
}

Summary information about a TagOption.

func (TagOptionSummary) String

func (s TagOptionSummary) String() string

String returns the string representation

type TerminateProvisionedProductInput

type TerminateProvisionedProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// If set to true, AWS Service Catalog stops managing the specified provisioned
	// product even if it cannot delete the underlying resources.
	IgnoreErrors *bool `type:"boolean"`

	// The identifier of the provisioned product. You cannot specify both ProvisionedProductName
	// and ProvisionedProductId.
	ProvisionedProductId *string `min:"1" type:"string"`

	// The name of the provisioned product. You cannot specify both ProvisionedProductName
	// and ProvisionedProductId.
	ProvisionedProductName *string `min:"1" type:"string"`

	// 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 is a required field
	TerminateToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`
	// contains filtered or unexported fields
}

func (TerminateProvisionedProductInput) String

String returns the string representation

func (*TerminateProvisionedProductInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type TerminateProvisionedProductOutput

type TerminateProvisionedProductOutput struct {

	// Information about the result of this request.
	RecordDetail *RecordDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (TerminateProvisionedProductOutput) String

String returns the string representation

type TerminateProvisionedProductRequest

type TerminateProvisionedProductRequest struct {
	*aws.Request
	Input *TerminateProvisionedProductInput
	Copy  func(*TerminateProvisionedProductInput) TerminateProvisionedProductRequest
}

TerminateProvisionedProductRequest is the request type for the TerminateProvisionedProduct API operation.

func (TerminateProvisionedProductRequest) Send

Send marshals and sends the TerminateProvisionedProduct API request.

type TerminateProvisionedProductResponse added in v0.9.0

type TerminateProvisionedProductResponse struct {
	*TerminateProvisionedProductOutput
	// contains filtered or unexported fields
}

TerminateProvisionedProductResponse is the response type for the TerminateProvisionedProduct API operation.

func (*TerminateProvisionedProductResponse) SDKResponseMetdata added in v0.9.0

func (r *TerminateProvisionedProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the TerminateProvisionedProduct request.

type UpdateConstraintInput

type UpdateConstraintInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The updated description of the constraint.
	Description *string `type:"string"`

	// The identifier of the constraint.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`

	// 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 `type:"string"`
	// contains filtered or unexported fields
}

func (UpdateConstraintInput) String

func (s UpdateConstraintInput) String() string

String returns the string representation

func (*UpdateConstraintInput) Validate

func (s *UpdateConstraintInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateConstraintOutput

type UpdateConstraintOutput struct {

	// Information about the constraint.
	ConstraintDetail *ConstraintDetail `type:"structure"`

	// The constraint parameters.
	ConstraintParameters *string `type:"string"`

	// The status of the current request.
	Status Status `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (UpdateConstraintOutput) String

func (s UpdateConstraintOutput) String() string

String returns the string representation

type UpdateConstraintRequest

type UpdateConstraintRequest struct {
	*aws.Request
	Input *UpdateConstraintInput
	Copy  func(*UpdateConstraintInput) UpdateConstraintRequest
}

UpdateConstraintRequest is the request type for the UpdateConstraint API operation.

func (UpdateConstraintRequest) Send

Send marshals and sends the UpdateConstraint API request.

type UpdateConstraintResponse added in v0.9.0

type UpdateConstraintResponse struct {
	*UpdateConstraintOutput
	// contains filtered or unexported fields
}

UpdateConstraintResponse is the response type for the UpdateConstraint API operation.

func (*UpdateConstraintResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateConstraintResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateConstraint request.

type UpdatePortfolioInput

type UpdatePortfolioInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The tags to add.
	AddTags []Tag `type:"list"`

	// The updated description of the portfolio.
	Description *string `type:"string"`

	// The name to use for display purposes.
	DisplayName *string `min:"1" type:"string"`

	// The portfolio identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`

	// The updated name of the portfolio provider.
	ProviderName *string `min:"1" type:"string"`

	// The tags to remove.
	RemoveTags []string `type:"list"`
	// contains filtered or unexported fields
}

func (UpdatePortfolioInput) String

func (s UpdatePortfolioInput) String() string

String returns the string representation

func (*UpdatePortfolioInput) Validate

func (s *UpdatePortfolioInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdatePortfolioOutput

type UpdatePortfolioOutput struct {

	// Information about the portfolio.
	PortfolioDetail *PortfolioDetail `type:"structure"`

	// Information about the tags associated with the portfolio.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (UpdatePortfolioOutput) String

func (s UpdatePortfolioOutput) String() string

String returns the string representation

type UpdatePortfolioRequest

type UpdatePortfolioRequest struct {
	*aws.Request
	Input *UpdatePortfolioInput
	Copy  func(*UpdatePortfolioInput) UpdatePortfolioRequest
}

UpdatePortfolioRequest is the request type for the UpdatePortfolio API operation.

func (UpdatePortfolioRequest) Send

Send marshals and sends the UpdatePortfolio API request.

type UpdatePortfolioResponse added in v0.9.0

type UpdatePortfolioResponse struct {
	*UpdatePortfolioOutput
	// contains filtered or unexported fields
}

UpdatePortfolioResponse is the response type for the UpdatePortfolio API operation.

func (*UpdatePortfolioResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdatePortfolioResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdatePortfolio request.

type UpdateProductInput

type UpdateProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The tags to add to the product.
	AddTags []Tag `type:"list"`

	// The updated description of the product.
	Description *string `type:"string"`

	// The updated distributor of the product.
	Distributor *string `type:"string"`

	// The product identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`

	// The updated product name.
	Name *string `type:"string"`

	// The updated owner of the product.
	Owner *string `type:"string"`

	// The tags to remove from the product.
	RemoveTags []string `type:"list"`

	// The updated support description for the product.
	SupportDescription *string `type:"string"`

	// The updated support email for the product.
	SupportEmail *string `type:"string"`

	// The updated support URL for the product.
	SupportUrl *string `type:"string"`
	// contains filtered or unexported fields
}

func (UpdateProductInput) String

func (s UpdateProductInput) String() string

String returns the string representation

func (*UpdateProductInput) Validate

func (s *UpdateProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateProductOutput

type UpdateProductOutput struct {

	// Information about the product view.
	ProductViewDetail *ProductViewDetail `type:"structure"`

	// Information about the tags associated with the product.
	Tags []Tag `type:"list"`
	// contains filtered or unexported fields
}

func (UpdateProductOutput) String

func (s UpdateProductOutput) String() string

String returns the string representation

type UpdateProductRequest

type UpdateProductRequest struct {
	*aws.Request
	Input *UpdateProductInput
	Copy  func(*UpdateProductInput) UpdateProductRequest
}

UpdateProductRequest is the request type for the UpdateProduct API operation.

func (UpdateProductRequest) Send

Send marshals and sends the UpdateProduct API request.

type UpdateProductResponse added in v0.9.0

type UpdateProductResponse struct {
	*UpdateProductOutput
	// contains filtered or unexported fields
}

UpdateProductResponse is the response type for the UpdateProduct API operation.

func (*UpdateProductResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateProduct request.

type UpdateProvisionedProductInput

type UpdateProvisionedProductInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The new path identifier. This value is optional if the product has a default
	// path, and required if the product has more than one path.
	PathId *string `min:"1" type:"string"`

	// The identifier of the product.
	ProductId *string `min:"1" type:"string"`

	// The identifier of the provisioned product. You cannot specify both ProvisionedProductName
	// and ProvisionedProductId.
	ProvisionedProductId *string `min:"1" type:"string"`

	// The name of the provisioned product. You cannot specify both ProvisionedProductName
	// and ProvisionedProductId.
	ProvisionedProductName *string `min:"1" type:"string"`

	// The identifier of the provisioning artifact.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// The new parameters.
	ProvisioningParameters []UpdateProvisioningParameter `type:"list"`

	// An object that contains information about the provisioning preferences for
	// a stack set.
	ProvisioningPreferences *UpdateProvisioningPreferences `type:"structure"`

	// One or more tags. Requires the product to have RESOURCE_UPDATE constraint
	// with TagUpdatesOnProvisionedProduct set to ALLOWED to allow tag updates.
	Tags []Tag `type:"list"`

	// The idempotency token that uniquely identifies the provisioning update request.
	//
	// UpdateToken is a required field
	UpdateToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`
	// contains filtered or unexported fields
}

func (UpdateProvisionedProductInput) String

String returns the string representation

func (*UpdateProvisionedProductInput) Validate

func (s *UpdateProvisionedProductInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateProvisionedProductOutput

type UpdateProvisionedProductOutput struct {

	// Information about the result of the request.
	RecordDetail *RecordDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (UpdateProvisionedProductOutput) String

String returns the string representation

type UpdateProvisionedProductPropertiesInput added in v0.9.0

type UpdateProvisionedProductPropertiesInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// The idempotency token that uniquely identifies the provisioning product update
	// request.
	//
	// IdempotencyToken is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The identifier of the provisioned product.
	//
	// ProvisionedProductId is a required field
	ProvisionedProductId *string `min:"1" type:"string" required:"true"`

	// 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 is a required field
	ProvisionedProductProperties map[string]string `min:"1" type:"map" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateProvisionedProductPropertiesInput) String added in v0.9.0

String returns the string representation

func (*UpdateProvisionedProductPropertiesInput) Validate added in v0.9.0

Validate inspects the fields of the type to determine if they are valid.

type UpdateProvisionedProductPropertiesOutput added in v0.9.0

type UpdateProvisionedProductPropertiesOutput struct {

	// The provisioned product identifier.
	ProvisionedProductId *string `min:"1" type:"string"`

	// A map that contains the properties updated.
	ProvisionedProductProperties map[string]string `min:"1" type:"map"`

	// The identifier of the record.
	RecordId *string `min:"1" type:"string"`

	// The status of the request.
	Status RecordStatus `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (UpdateProvisionedProductPropertiesOutput) String added in v0.9.0

String returns the string representation

type UpdateProvisionedProductPropertiesRequest added in v0.9.0

UpdateProvisionedProductPropertiesRequest is the request type for the UpdateProvisionedProductProperties API operation.

func (UpdateProvisionedProductPropertiesRequest) Send added in v0.9.0

Send marshals and sends the UpdateProvisionedProductProperties API request.

type UpdateProvisionedProductPropertiesResponse added in v0.9.0

type UpdateProvisionedProductPropertiesResponse struct {
	*UpdateProvisionedProductPropertiesOutput
	// contains filtered or unexported fields
}

UpdateProvisionedProductPropertiesResponse is the response type for the UpdateProvisionedProductProperties API operation.

func (*UpdateProvisionedProductPropertiesResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateProvisionedProductPropertiesResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateProvisionedProductProperties request.

type UpdateProvisionedProductRequest

type UpdateProvisionedProductRequest struct {
	*aws.Request
	Input *UpdateProvisionedProductInput
	Copy  func(*UpdateProvisionedProductInput) UpdateProvisionedProductRequest
}

UpdateProvisionedProductRequest is the request type for the UpdateProvisionedProduct API operation.

func (UpdateProvisionedProductRequest) Send

Send marshals and sends the UpdateProvisionedProduct API request.

type UpdateProvisionedProductResponse added in v0.9.0

type UpdateProvisionedProductResponse struct {
	*UpdateProvisionedProductOutput
	// contains filtered or unexported fields
}

UpdateProvisionedProductResponse is the response type for the UpdateProvisionedProduct API operation.

func (*UpdateProvisionedProductResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateProvisionedProductResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateProvisionedProduct request.

type UpdateProvisioningArtifactInput

type UpdateProvisioningArtifactInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"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 `type:"boolean"`

	// The updated description of the provisioning artifact.
	Description *string `type:"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 ProvisioningArtifactGuidance `type:"string" enum:"true"`

	// The updated name of the provisioning artifact.
	Name *string `type:"string"`

	// The product identifier.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`

	// The identifier of the provisioning artifact.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateProvisioningArtifactInput) String

String returns the string representation

func (*UpdateProvisioningArtifactInput) Validate

func (s *UpdateProvisioningArtifactInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateProvisioningArtifactOutput

type UpdateProvisioningArtifactOutput struct {

	// The URL of the CloudFormation template in Amazon S3.
	Info map[string]string `min:"1" type:"map"`

	// Information about the provisioning artifact.
	ProvisioningArtifactDetail *ProvisioningArtifactDetail `type:"structure"`

	// The status of the current request.
	Status Status `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

func (UpdateProvisioningArtifactOutput) String

String returns the string representation

type UpdateProvisioningArtifactRequest

type UpdateProvisioningArtifactRequest struct {
	*aws.Request
	Input *UpdateProvisioningArtifactInput
	Copy  func(*UpdateProvisioningArtifactInput) UpdateProvisioningArtifactRequest
}

UpdateProvisioningArtifactRequest is the request type for the UpdateProvisioningArtifact API operation.

func (UpdateProvisioningArtifactRequest) Send

Send marshals and sends the UpdateProvisioningArtifact API request.

type UpdateProvisioningArtifactResponse added in v0.9.0

type UpdateProvisioningArtifactResponse struct {
	*UpdateProvisioningArtifactOutput
	// contains filtered or unexported fields
}

UpdateProvisioningArtifactResponse is the response type for the UpdateProvisioningArtifact API operation.

func (*UpdateProvisioningArtifactResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateProvisioningArtifactResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateProvisioningArtifact request.

type UpdateProvisioningParameter

type UpdateProvisioningParameter struct {

	// The parameter key.
	Key *string `min:"1" type:"string"`

	// If set to true, Value is ignored and the previous parameter value is kept.
	UsePreviousValue *bool `type:"boolean"`

	// The parameter value.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

The parameter key-value pair used to update a provisioned product.

func (UpdateProvisioningParameter) String

String returns the string representation

func (*UpdateProvisioningParameter) Validate

func (s *UpdateProvisioningParameter) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateProvisioningPreferences added in v0.6.0

type UpdateProvisioningPreferences struct {

	// One or more AWS accounts that will have access to the provisioned product.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// The AWS accounts specified should be within the list of accounts in the STACKSET
	// constraint. To get the list of accounts in the STACKSET constraint, use the
	// DescribeProvisioningParameters operation.
	//
	// If no values are specified, the default value is all accounts from the STACKSET
	// constraint.
	StackSetAccounts []string `type:"list"`

	// The number of accounts, per region, for which this operation can fail before
	// AWS Service Catalog stops the operation in that region. If the operation
	// is stopped in a region, AWS Service Catalog doesn't attempt the operation
	// in any subsequent regions.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage,
	// but not both.
	//
	// The default value is 0 if no value is specified.
	StackSetFailureToleranceCount *int64 `type:"integer"`

	// The percentage of accounts, per region, for which this stack operation can
	// fail before AWS Service Catalog stops the operation in that region. If the
	// operation is stopped in a region, AWS Service Catalog doesn't attempt the
	// operation in any subsequent regions.
	//
	// When calculating the number of accounts based on the specified percentage,
	// AWS Service Catalog rounds down to the next whole number.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage,
	// but not both.
	StackSetFailureTolerancePercentage *int64 `type:"integer"`

	// The maximum number of accounts in which to perform this operation at one
	// time. This is dependent on the value of StackSetFailureToleranceCount. StackSetMaxConcurrentCount
	// is at most one more than the StackSetFailureToleranceCount.
	//
	// Note that this setting lets you specify the maximum for operations. For large
	// deployments, under certain circumstances the actual number of accounts acted
	// upon concurrently may be lower due to service throttling.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage,
	// but not both.
	StackSetMaxConcurrencyCount *int64 `min:"1" type:"integer"`

	// The maximum percentage of accounts in which to perform this operation at
	// one time.
	//
	// When calculating the number of accounts based on the specified percentage,
	// AWS Service Catalog rounds down to the next whole number. This is true except
	// in cases where rounding down would result is zero. In this case, AWS Service
	// Catalog sets the number as 1 instead.
	//
	// Note that this setting lets you specify the maximum for operations. For large
	// deployments, under certain circumstances the actual number of accounts acted
	// upon concurrently may be lower due to service throttling.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage,
	// but not both.
	StackSetMaxConcurrencyPercentage *int64 `min:"1" type:"integer"`

	// Determines what action AWS Service Catalog performs to a stack set or a stack
	// instance represented by the provisioned product. The default value is UPDATE
	// if nothing is specified.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// CREATE
	//
	// Creates a new stack instance in the stack set represented by the provisioned
	// product. In this case, only new stack instances are created based on accounts
	// and regions; if new ProductId or ProvisioningArtifactID are passed, they
	// will be ignored.
	//
	// UPDATE
	//
	// Updates the stack set represented by the provisioned product and also its
	// stack instances.
	//
	// DELETE
	//
	// Deletes a stack instance in the stack set represented by the provisioned
	// product.
	StackSetOperationType StackSetOperationType `type:"string" enum:"true"`

	// One or more AWS Regions where the provisioned product will be available.
	//
	// Applicable only to a CFN_STACKSET provisioned product type.
	//
	// The specified regions should be within the list of regions from the STACKSET
	// constraint. To get the list of regions in the STACKSET constraint, use the
	// DescribeProvisioningParameters operation.
	//
	// If no values are specified, the default value is all regions from the STACKSET
	// constraint.
	StackSetRegions []string `type:"list"`
	// contains filtered or unexported fields
}

The user-defined preferences that will be applied when updating a provisioned product. Not all preferences are applicable to all provisioned product types.

func (UpdateProvisioningPreferences) String added in v0.6.0

String returns the string representation

func (*UpdateProvisioningPreferences) Validate added in v0.6.0

func (s *UpdateProvisioningPreferences) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateServiceActionInput added in v0.6.0

type UpdateServiceActionInput struct {

	// The language code.
	//
	//    * en - English (default)
	//
	//    * jp - Japanese
	//
	//    * zh - Chinese
	AcceptLanguage *string `type:"string"`

	// A map that defines the self-service action.
	Definition map[string]string `min:"1" type:"map"`

	// The self-service action description.
	Description *string `type:"string"`

	// The self-service action identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`

	// The self-service action name.
	Name *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (UpdateServiceActionInput) String added in v0.6.0

func (s UpdateServiceActionInput) String() string

String returns the string representation

func (*UpdateServiceActionInput) Validate added in v0.6.0

func (s *UpdateServiceActionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateServiceActionOutput added in v0.6.0

type UpdateServiceActionOutput struct {

	// Detailed information about the self-service action.
	ServiceActionDetail *ServiceActionDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (UpdateServiceActionOutput) String added in v0.6.0

func (s UpdateServiceActionOutput) String() string

String returns the string representation

type UpdateServiceActionRequest added in v0.6.0

type UpdateServiceActionRequest struct {
	*aws.Request
	Input *UpdateServiceActionInput
	Copy  func(*UpdateServiceActionInput) UpdateServiceActionRequest
}

UpdateServiceActionRequest is the request type for the UpdateServiceAction API operation.

func (UpdateServiceActionRequest) Send added in v0.6.0

Send marshals and sends the UpdateServiceAction API request.

type UpdateServiceActionResponse added in v0.9.0

type UpdateServiceActionResponse struct {
	*UpdateServiceActionOutput
	// contains filtered or unexported fields
}

UpdateServiceActionResponse is the response type for the UpdateServiceAction API operation.

func (*UpdateServiceActionResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateServiceActionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateServiceAction request.

type UpdateTagOptionInput

type UpdateTagOptionInput struct {

	// The updated active state.
	Active *bool `type:"boolean"`

	// The TagOption identifier.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`

	// The updated value.
	Value *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (UpdateTagOptionInput) String

func (s UpdateTagOptionInput) String() string

String returns the string representation

func (*UpdateTagOptionInput) Validate

func (s *UpdateTagOptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateTagOptionOutput

type UpdateTagOptionOutput struct {

	// Information about the TagOption.
	TagOptionDetail *TagOptionDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (UpdateTagOptionOutput) String

func (s UpdateTagOptionOutput) String() string

String returns the string representation

type UpdateTagOptionRequest

type UpdateTagOptionRequest struct {
	*aws.Request
	Input *UpdateTagOptionInput
	Copy  func(*UpdateTagOptionInput) UpdateTagOptionRequest
}

UpdateTagOptionRequest is the request type for the UpdateTagOption API operation.

func (UpdateTagOptionRequest) Send

Send marshals and sends the UpdateTagOption API request.

type UpdateTagOptionResponse added in v0.9.0

type UpdateTagOptionResponse struct {
	*UpdateTagOptionOutput
	// contains filtered or unexported fields
}

UpdateTagOptionResponse is the response type for the UpdateTagOption API operation.

func (*UpdateTagOptionResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateTagOptionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateTagOption request.

type UsageInstruction

type UsageInstruction struct {

	// The usage instruction type for the value.
	Type *string `type:"string"`

	// The usage instruction value for this type.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

Additional information provided by the administrator.

func (UsageInstruction) String

func (s UsageInstruction) String() string

String returns the string representation

Source Files

Directories

Path Synopsis
Package servicecatalogiface provides an interface to enable mocking the AWS Service Catalog service client for testing your code.
Package servicecatalogiface provides an interface to enable mocking the AWS Service Catalog service client for testing your code.

Jump to

Keyboard shortcuts

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