servicecatalog

package
v1.5.8 Latest Latest
Warning

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

Go to latest
Published: Nov 18, 2016 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Overview

Package servicecatalog provides a client for AWS Service Catalog.

Index

Examples

Constants

View Source
const (
	// AccessLevelFilterKeyAccount is a AccessLevelFilterKey enum value
	AccessLevelFilterKeyAccount = "Account"

	// AccessLevelFilterKeyRole is a AccessLevelFilterKey enum value
	AccessLevelFilterKeyRole = "Role"

	// AccessLevelFilterKeyUser is a AccessLevelFilterKey enum value
	AccessLevelFilterKeyUser = "User"
)
View Source
const (
	// ProductViewFilterByFullTextSearch is a ProductViewFilterBy enum value
	ProductViewFilterByFullTextSearch = "FullTextSearch"

	// ProductViewFilterByOwner is a ProductViewFilterBy enum value
	ProductViewFilterByOwner = "Owner"

	// ProductViewFilterByProductType is a ProductViewFilterBy enum value
	ProductViewFilterByProductType = "ProductType"
)
View Source
const (
	// ProductViewSortByTitle is a ProductViewSortBy enum value
	ProductViewSortByTitle = "Title"

	// ProductViewSortByVersionCount is a ProductViewSortBy enum value
	ProductViewSortByVersionCount = "VersionCount"

	// ProductViewSortByCreationDate is a ProductViewSortBy enum value
	ProductViewSortByCreationDate = "CreationDate"
)
View Source
const (
	// RecordStatusInProgress is a RecordStatus enum value
	RecordStatusInProgress = "IN_PROGRESS"

	// RecordStatusSucceeded is a RecordStatus enum value
	RecordStatusSucceeded = "SUCCEEDED"

	// RecordStatusError is a RecordStatus enum value
	RecordStatusError = "ERROR"
)
View Source
const (
	// SortOrderAscending is a SortOrder enum value
	SortOrderAscending = "ASCENDING"

	// SortOrderDescending is a SortOrder enum value
	SortOrderDescending = "DESCENDING"
)
View Source
const (
	// StatusAvailable is a Status enum value
	StatusAvailable = "AVAILABLE"

	// StatusCreating is a Status enum value
	StatusCreating = "CREATING"

	// StatusFailed is a Status enum value
	StatusFailed = "FAILED"
)
View Source
const (
	// PrincipalTypeIam is a PrincipalType enum value
	PrincipalTypeIam = "IAM"
)
View Source
const (
	// ProductSourceAccount is a ProductSource enum value
	ProductSourceAccount = "ACCOUNT"
)
View Source
const (
	// ProductTypeCloudFormationTemplate is a ProductType enum value
	ProductTypeCloudFormationTemplate = "CLOUD_FORMATION_TEMPLATE"
)
View Source
const (
	// ProvisioningArtifactTypeCloudFormationTemplate is a ProvisioningArtifactType enum value
	ProvisioningArtifactTypeCloudFormationTemplate = "CLOUD_FORMATION_TEMPLATE"
)
View Source
const ServiceName = "servicecatalog"

A ServiceName is the name of the service the client will make API calls to.

Variables

This section is empty.

Functions

This section is empty.

Types

type AcceptPortfolioShareInput added in v1.5.6

type AcceptPortfolioShareInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *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 (AcceptPortfolioShareInput) GoString added in v1.5.6

func (s AcceptPortfolioShareInput) GoString() string

GoString returns the string representation

func (*AcceptPortfolioShareInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*AcceptPortfolioShareInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (AcceptPortfolioShareInput) String added in v1.5.6

func (s AcceptPortfolioShareInput) String() string

String returns the string representation

func (*AcceptPortfolioShareInput) Validate added in v1.5.6

func (s *AcceptPortfolioShareInput) Validate() error

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

type AcceptPortfolioShareOutput added in v1.5.6

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

func (AcceptPortfolioShareOutput) GoString added in v1.5.6

func (s AcceptPortfolioShareOutput) GoString() string

GoString returns the string representation

func (AcceptPortfolioShareOutput) String added in v1.5.6

String returns the string representation

type AccessLevelFilter added in v1.4.9

type AccessLevelFilter struct {

	// Specifies the access level.
	//
	// Account allows results at the account level.
	//
	// Role allows results based on the federated role of the specified user.
	//
	// User allows results limited to the specified user.
	Key *string `type:"string" enum:"AccessLevelFilterKey"`

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

The access level to limit results.

func (AccessLevelFilter) GoString added in v1.4.9

func (s AccessLevelFilter) GoString() string

GoString returns the string representation

func (*AccessLevelFilter) SetKey added in v1.5.0

SetKey sets the Key field's value.

func (*AccessLevelFilter) SetValue added in v1.5.0

func (s *AccessLevelFilter) SetValue(v string) *AccessLevelFilter

SetValue sets the Value field's value.

func (AccessLevelFilter) String added in v1.4.9

func (s AccessLevelFilter) String() string

String returns the string representation

type AssociatePrincipalWithPortfolioInput added in v1.5.6

type AssociatePrincipalWithPortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

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

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

func (AssociatePrincipalWithPortfolioInput) GoString added in v1.5.6

GoString returns the string representation

func (*AssociatePrincipalWithPortfolioInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*AssociatePrincipalWithPortfolioInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (*AssociatePrincipalWithPortfolioInput) SetPrincipalARN added in v1.5.6

SetPrincipalARN sets the PrincipalARN field's value.

func (*AssociatePrincipalWithPortfolioInput) SetPrincipalType added in v1.5.6

SetPrincipalType sets the PrincipalType field's value.

func (AssociatePrincipalWithPortfolioInput) String added in v1.5.6

String returns the string representation

func (*AssociatePrincipalWithPortfolioInput) Validate added in v1.5.6

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

type AssociatePrincipalWithPortfolioOutput added in v1.5.6

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

func (AssociatePrincipalWithPortfolioOutput) GoString added in v1.5.6

GoString returns the string representation

func (AssociatePrincipalWithPortfolioOutput) String added in v1.5.6

String returns the string representation

type AssociateProductWithPortfolioInput added in v1.5.6

type AssociateProductWithPortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	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 to use with this association.
	SourcePortfolioId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (AssociateProductWithPortfolioInput) GoString added in v1.5.6

GoString returns the string representation

func (*AssociateProductWithPortfolioInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*AssociateProductWithPortfolioInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (*AssociateProductWithPortfolioInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (*AssociateProductWithPortfolioInput) SetSourcePortfolioId added in v1.5.6

SetSourcePortfolioId sets the SourcePortfolioId field's value.

func (AssociateProductWithPortfolioInput) String added in v1.5.6

String returns the string representation

func (*AssociateProductWithPortfolioInput) Validate added in v1.5.6

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

type AssociateProductWithPortfolioOutput added in v1.5.6

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

func (AssociateProductWithPortfolioOutput) GoString added in v1.5.6

GoString returns the string representation

func (AssociateProductWithPortfolioOutput) String added in v1.5.6

String returns the string representation

type ConstraintDetail added in v1.5.6

type ConstraintDetail struct {

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

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

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

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

Detailed constraint information.

func (ConstraintDetail) GoString added in v1.5.6

func (s ConstraintDetail) GoString() string

GoString returns the string representation

func (*ConstraintDetail) SetConstraintId added in v1.5.6

func (s *ConstraintDetail) SetConstraintId(v string) *ConstraintDetail

SetConstraintId sets the ConstraintId field's value.

func (*ConstraintDetail) SetDescription added in v1.5.6

func (s *ConstraintDetail) SetDescription(v string) *ConstraintDetail

SetDescription sets the Description field's value.

func (*ConstraintDetail) SetOwner added in v1.5.6

func (s *ConstraintDetail) SetOwner(v string) *ConstraintDetail

SetOwner sets the Owner field's value.

func (*ConstraintDetail) SetType added in v1.5.6

func (s *ConstraintDetail) SetType(v string) *ConstraintDetail

SetType sets the Type field's value.

func (ConstraintDetail) String added in v1.5.6

func (s ConstraintDetail) String() string

String returns the string representation

type ConstraintSummary

type ConstraintSummary struct {

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

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

An administrator-specified constraint to apply when provisioning a product.

func (ConstraintSummary) GoString

func (s ConstraintSummary) GoString() string

GoString returns the string representation

func (*ConstraintSummary) SetDescription added in v1.5.0

func (s *ConstraintSummary) SetDescription(v string) *ConstraintSummary

SetDescription sets the Description field's value.

func (*ConstraintSummary) SetType added in v1.5.0

SetType sets the Type field's value.

func (ConstraintSummary) String

func (s ConstraintSummary) String() string

String returns the string representation

type CreateConstraintInput added in v1.5.6

type CreateConstraintInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

	// A token to disambiguate duplicate requests. You can create multiple resources
	// using the same input in multiple requests, provided that you also specify
	// a different idempotency token for each request.
	//
	// IdempotencyToken is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The constraint parameters.
	//
	// 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 the constraint.
	//
	// Type is a required field
	Type *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateConstraintInput) GoString added in v1.5.6

func (s CreateConstraintInput) GoString() string

GoString returns the string representation

func (*CreateConstraintInput) SetAcceptLanguage added in v1.5.6

func (s *CreateConstraintInput) SetAcceptLanguage(v string) *CreateConstraintInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*CreateConstraintInput) SetDescription added in v1.5.6

func (s *CreateConstraintInput) SetDescription(v string) *CreateConstraintInput

SetDescription sets the Description field's value.

func (*CreateConstraintInput) SetIdempotencyToken added in v1.5.6

func (s *CreateConstraintInput) SetIdempotencyToken(v string) *CreateConstraintInput

SetIdempotencyToken sets the IdempotencyToken field's value.

func (*CreateConstraintInput) SetParameters added in v1.5.6

func (s *CreateConstraintInput) SetParameters(v string) *CreateConstraintInput

SetParameters sets the Parameters field's value.

func (*CreateConstraintInput) SetPortfolioId added in v1.5.6

func (s *CreateConstraintInput) SetPortfolioId(v string) *CreateConstraintInput

SetPortfolioId sets the PortfolioId field's value.

func (*CreateConstraintInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (*CreateConstraintInput) SetType added in v1.5.6

SetType sets the Type field's value.

func (CreateConstraintInput) String added in v1.5.6

func (s CreateConstraintInput) String() string

String returns the string representation

func (*CreateConstraintInput) Validate added in v1.5.6

func (s *CreateConstraintInput) Validate() error

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

type CreateConstraintOutput added in v1.5.6

type CreateConstraintOutput struct {

	// The resulting detailed constraint information.
	ConstraintDetail *ConstraintDetail `type:"structure"`

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

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

func (CreateConstraintOutput) GoString added in v1.5.6

func (s CreateConstraintOutput) GoString() string

GoString returns the string representation

func (*CreateConstraintOutput) SetConstraintDetail added in v1.5.6

SetConstraintDetail sets the ConstraintDetail field's value.

func (*CreateConstraintOutput) SetConstraintParameters added in v1.5.6

func (s *CreateConstraintOutput) SetConstraintParameters(v string) *CreateConstraintOutput

SetConstraintParameters sets the ConstraintParameters field's value.

func (*CreateConstraintOutput) SetStatus added in v1.5.6

SetStatus sets the Status field's value.

func (CreateConstraintOutput) String added in v1.5.6

func (s CreateConstraintOutput) String() string

String returns the string representation

type CreatePortfolioInput added in v1.5.6

type CreatePortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The text 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 token to disambiguate duplicate requests. You can create multiple resources
	// using the same input in multiple requests, provided that you also specify
	// a different idempotency token for each 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"`

	// Tags to associate with the new portfolio.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreatePortfolioInput) GoString added in v1.5.6

func (s CreatePortfolioInput) GoString() string

GoString returns the string representation

func (*CreatePortfolioInput) SetAcceptLanguage added in v1.5.6

func (s *CreatePortfolioInput) SetAcceptLanguage(v string) *CreatePortfolioInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*CreatePortfolioInput) SetDescription added in v1.5.6

func (s *CreatePortfolioInput) SetDescription(v string) *CreatePortfolioInput

SetDescription sets the Description field's value.

func (*CreatePortfolioInput) SetDisplayName added in v1.5.6

func (s *CreatePortfolioInput) SetDisplayName(v string) *CreatePortfolioInput

SetDisplayName sets the DisplayName field's value.

func (*CreatePortfolioInput) SetIdempotencyToken added in v1.5.6

func (s *CreatePortfolioInput) SetIdempotencyToken(v string) *CreatePortfolioInput

SetIdempotencyToken sets the IdempotencyToken field's value.

func (*CreatePortfolioInput) SetProviderName added in v1.5.6

func (s *CreatePortfolioInput) SetProviderName(v string) *CreatePortfolioInput

SetProviderName sets the ProviderName field's value.

func (*CreatePortfolioInput) SetTags added in v1.5.6

func (s *CreatePortfolioInput) SetTags(v []*Tag) *CreatePortfolioInput

SetTags sets the Tags field's value.

func (CreatePortfolioInput) String added in v1.5.6

func (s CreatePortfolioInput) String() string

String returns the string representation

func (*CreatePortfolioInput) Validate added in v1.5.6

func (s *CreatePortfolioInput) Validate() error

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

type CreatePortfolioOutput added in v1.5.6

type CreatePortfolioOutput struct {

	// The resulting detailed portfolio information.
	PortfolioDetail *PortfolioDetail `type:"structure"`

	// Tags successfully associated with the new portfolio.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreatePortfolioOutput) GoString added in v1.5.6

func (s CreatePortfolioOutput) GoString() string

GoString returns the string representation

func (*CreatePortfolioOutput) SetPortfolioDetail added in v1.5.6

func (s *CreatePortfolioOutput) SetPortfolioDetail(v *PortfolioDetail) *CreatePortfolioOutput

SetPortfolioDetail sets the PortfolioDetail field's value.

func (*CreatePortfolioOutput) SetTags added in v1.5.6

SetTags sets the Tags field's value.

func (CreatePortfolioOutput) String added in v1.5.6

func (s CreatePortfolioOutput) String() string

String returns the string representation

type CreatePortfolioShareInput added in v1.5.6

type CreatePortfolioShareInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The account ID with which to share the portfolio.
	//
	// AccountId is a required field
	AccountId *string `type:"string" required:"true"`

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

func (CreatePortfolioShareInput) GoString added in v1.5.6

func (s CreatePortfolioShareInput) GoString() string

GoString returns the string representation

func (*CreatePortfolioShareInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*CreatePortfolioShareInput) SetAccountId added in v1.5.6

SetAccountId sets the AccountId field's value.

func (*CreatePortfolioShareInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (CreatePortfolioShareInput) String added in v1.5.6

func (s CreatePortfolioShareInput) String() string

String returns the string representation

func (*CreatePortfolioShareInput) Validate added in v1.5.6

func (s *CreatePortfolioShareInput) Validate() error

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

type CreatePortfolioShareOutput added in v1.5.6

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

func (CreatePortfolioShareOutput) GoString added in v1.5.6

func (s CreatePortfolioShareOutput) GoString() string

GoString returns the string representation

func (CreatePortfolioShareOutput) String added in v1.5.6

String returns the string representation

type CreateProductInput added in v1.5.6

type CreateProductInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

	// The distributor of the product.
	Distributor *string `type:"string"`

	// A token to disambiguate duplicate requests. You can create multiple resources
	// using the same input in multiple requests, provided that you also specify
	// a different idempotency token for each 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 the product to create.
	//
	// ProductType is a required field
	ProductType *string `type:"string" required:"true" enum:"ProductType"`

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

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

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

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

	// Tags to associate with the new product.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreateProductInput) GoString added in v1.5.6

func (s CreateProductInput) GoString() string

GoString returns the string representation

func (*CreateProductInput) SetAcceptLanguage added in v1.5.6

func (s *CreateProductInput) SetAcceptLanguage(v string) *CreateProductInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*CreateProductInput) SetDescription added in v1.5.6

func (s *CreateProductInput) SetDescription(v string) *CreateProductInput

SetDescription sets the Description field's value.

func (*CreateProductInput) SetDistributor added in v1.5.6

func (s *CreateProductInput) SetDistributor(v string) *CreateProductInput

SetDistributor sets the Distributor field's value.

func (*CreateProductInput) SetIdempotencyToken added in v1.5.6

func (s *CreateProductInput) SetIdempotencyToken(v string) *CreateProductInput

SetIdempotencyToken sets the IdempotencyToken field's value.

func (*CreateProductInput) SetName added in v1.5.6

SetName sets the Name field's value.

func (*CreateProductInput) SetOwner added in v1.5.6

SetOwner sets the Owner field's value.

func (*CreateProductInput) SetProductType added in v1.5.6

func (s *CreateProductInput) SetProductType(v string) *CreateProductInput

SetProductType sets the ProductType field's value.

func (*CreateProductInput) SetProvisioningArtifactParameters added in v1.5.6

func (s *CreateProductInput) SetProvisioningArtifactParameters(v *ProvisioningArtifactProperties) *CreateProductInput

SetProvisioningArtifactParameters sets the ProvisioningArtifactParameters field's value.

func (*CreateProductInput) SetSupportDescription added in v1.5.6

func (s *CreateProductInput) SetSupportDescription(v string) *CreateProductInput

SetSupportDescription sets the SupportDescription field's value.

func (*CreateProductInput) SetSupportEmail added in v1.5.6

func (s *CreateProductInput) SetSupportEmail(v string) *CreateProductInput

SetSupportEmail sets the SupportEmail field's value.

func (*CreateProductInput) SetSupportUrl added in v1.5.6

func (s *CreateProductInput) SetSupportUrl(v string) *CreateProductInput

SetSupportUrl sets the SupportUrl field's value.

func (*CreateProductInput) SetTags added in v1.5.6

func (s *CreateProductInput) SetTags(v []*Tag) *CreateProductInput

SetTags sets the Tags field's value.

func (CreateProductInput) String added in v1.5.6

func (s CreateProductInput) String() string

String returns the string representation

func (*CreateProductInput) Validate added in v1.5.6

func (s *CreateProductInput) Validate() error

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

type CreateProductOutput added in v1.5.6

type CreateProductOutput struct {

	// The resulting detailed product view information.
	ProductViewDetail *ProductViewDetail `type:"structure"`

	// The resulting detailed provisioning artifact information.
	ProvisioningArtifactDetail *ProvisioningArtifactDetail `type:"structure"`

	// Tags successfully associated with the new product.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (CreateProductOutput) GoString added in v1.5.6

func (s CreateProductOutput) GoString() string

GoString returns the string representation

func (*CreateProductOutput) SetProductViewDetail added in v1.5.6

func (s *CreateProductOutput) SetProductViewDetail(v *ProductViewDetail) *CreateProductOutput

SetProductViewDetail sets the ProductViewDetail field's value.

func (*CreateProductOutput) SetProvisioningArtifactDetail added in v1.5.6

func (s *CreateProductOutput) SetProvisioningArtifactDetail(v *ProvisioningArtifactDetail) *CreateProductOutput

SetProvisioningArtifactDetail sets the ProvisioningArtifactDetail field's value.

func (*CreateProductOutput) SetTags added in v1.5.6

func (s *CreateProductOutput) SetTags(v []*Tag) *CreateProductOutput

SetTags sets the Tags field's value.

func (CreateProductOutput) String added in v1.5.6

func (s CreateProductOutput) String() string

String returns the string representation

type CreateProvisioningArtifactInput added in v1.5.6

type CreateProvisioningArtifactInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// A token to disambiguate duplicate requests. You can create multiple resources
	// using the same input in multiple requests, provided that you also specify
	// a different idempotency token for each request.
	//
	// IdempotencyToken is a required field
	IdempotencyToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`

	// The parameters to use when creating the new 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) GoString added in v1.5.6

GoString returns the string representation

func (*CreateProvisioningArtifactInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*CreateProvisioningArtifactInput) SetIdempotencyToken added in v1.5.6

SetIdempotencyToken sets the IdempotencyToken field's value.

func (*CreateProvisioningArtifactInput) SetParameters added in v1.5.6

SetParameters sets the Parameters field's value.

func (*CreateProvisioningArtifactInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (CreateProvisioningArtifactInput) String added in v1.5.6

String returns the string representation

func (*CreateProvisioningArtifactInput) Validate added in v1.5.6

func (s *CreateProvisioningArtifactInput) Validate() error

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

type CreateProvisioningArtifactOutput added in v1.5.6

type CreateProvisioningArtifactOutput struct {

	// Additional information about the provisioning artifact create request.
	Info map[string]*string `min:"1" type:"map"`

	// The resulting detailed provisioning artifact information.
	ProvisioningArtifactDetail *ProvisioningArtifactDetail `type:"structure"`

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

func (CreateProvisioningArtifactOutput) GoString added in v1.5.6

GoString returns the string representation

func (*CreateProvisioningArtifactOutput) SetInfo added in v1.5.6

SetInfo sets the Info field's value.

func (*CreateProvisioningArtifactOutput) SetProvisioningArtifactDetail added in v1.5.6

SetProvisioningArtifactDetail sets the ProvisioningArtifactDetail field's value.

func (*CreateProvisioningArtifactOutput) SetStatus added in v1.5.6

SetStatus sets the Status field's value.

func (CreateProvisioningArtifactOutput) String added in v1.5.6

String returns the string representation

type DeleteConstraintInput added in v1.5.6

type DeleteConstraintInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

func (DeleteConstraintInput) GoString added in v1.5.6

func (s DeleteConstraintInput) GoString() string

GoString returns the string representation

func (*DeleteConstraintInput) SetAcceptLanguage added in v1.5.6

func (s *DeleteConstraintInput) SetAcceptLanguage(v string) *DeleteConstraintInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DeleteConstraintInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (DeleteConstraintInput) String added in v1.5.6

func (s DeleteConstraintInput) String() string

String returns the string representation

func (*DeleteConstraintInput) Validate added in v1.5.6

func (s *DeleteConstraintInput) Validate() error

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

type DeleteConstraintOutput added in v1.5.6

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

func (DeleteConstraintOutput) GoString added in v1.5.6

func (s DeleteConstraintOutput) GoString() string

GoString returns the string representation

func (DeleteConstraintOutput) String added in v1.5.6

func (s DeleteConstraintOutput) String() string

String returns the string representation

type DeletePortfolioInput added in v1.5.6

type DeletePortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

func (DeletePortfolioInput) GoString added in v1.5.6

func (s DeletePortfolioInput) GoString() string

GoString returns the string representation

func (*DeletePortfolioInput) SetAcceptLanguage added in v1.5.6

func (s *DeletePortfolioInput) SetAcceptLanguage(v string) *DeletePortfolioInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DeletePortfolioInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (DeletePortfolioInput) String added in v1.5.6

func (s DeletePortfolioInput) String() string

String returns the string representation

func (*DeletePortfolioInput) Validate added in v1.5.6

func (s *DeletePortfolioInput) Validate() error

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

type DeletePortfolioOutput added in v1.5.6

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

func (DeletePortfolioOutput) GoString added in v1.5.6

func (s DeletePortfolioOutput) GoString() string

GoString returns the string representation

func (DeletePortfolioOutput) String added in v1.5.6

func (s DeletePortfolioOutput) String() string

String returns the string representation

type DeletePortfolioShareInput added in v1.5.6

type DeletePortfolioShareInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The account ID associated with the share to delete.
	//
	// AccountId is a required field
	AccountId *string `type:"string" required:"true"`

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

func (DeletePortfolioShareInput) GoString added in v1.5.6

func (s DeletePortfolioShareInput) GoString() string

GoString returns the string representation

func (*DeletePortfolioShareInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DeletePortfolioShareInput) SetAccountId added in v1.5.6

SetAccountId sets the AccountId field's value.

func (*DeletePortfolioShareInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (DeletePortfolioShareInput) String added in v1.5.6

func (s DeletePortfolioShareInput) String() string

String returns the string representation

func (*DeletePortfolioShareInput) Validate added in v1.5.6

func (s *DeletePortfolioShareInput) Validate() error

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

type DeletePortfolioShareOutput added in v1.5.6

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

func (DeletePortfolioShareOutput) GoString added in v1.5.6

func (s DeletePortfolioShareOutput) GoString() string

GoString returns the string representation

func (DeletePortfolioShareOutput) String added in v1.5.6

String returns the string representation

type DeleteProductInput added in v1.5.6

type DeleteProductInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

func (DeleteProductInput) GoString added in v1.5.6

func (s DeleteProductInput) GoString() string

GoString returns the string representation

func (*DeleteProductInput) SetAcceptLanguage added in v1.5.6

func (s *DeleteProductInput) SetAcceptLanguage(v string) *DeleteProductInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DeleteProductInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (DeleteProductInput) String added in v1.5.6

func (s DeleteProductInput) String() string

String returns the string representation

func (*DeleteProductInput) Validate added in v1.5.6

func (s *DeleteProductInput) Validate() error

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

type DeleteProductOutput added in v1.5.6

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

func (DeleteProductOutput) GoString added in v1.5.6

func (s DeleteProductOutput) GoString() string

GoString returns the string representation

func (DeleteProductOutput) String added in v1.5.6

func (s DeleteProductOutput) String() string

String returns the string representation

type DeleteProvisioningArtifactInput added in v1.5.6

type DeleteProvisioningArtifactInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	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 for the delete request.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteProvisioningArtifactInput) GoString added in v1.5.6

GoString returns the string representation

func (*DeleteProvisioningArtifactInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DeleteProvisioningArtifactInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (*DeleteProvisioningArtifactInput) SetProvisioningArtifactId added in v1.5.6

SetProvisioningArtifactId sets the ProvisioningArtifactId field's value.

func (DeleteProvisioningArtifactInput) String added in v1.5.6

String returns the string representation

func (*DeleteProvisioningArtifactInput) Validate added in v1.5.6

func (s *DeleteProvisioningArtifactInput) Validate() error

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

type DeleteProvisioningArtifactOutput added in v1.5.6

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

func (DeleteProvisioningArtifactOutput) GoString added in v1.5.6

GoString returns the string representation

func (DeleteProvisioningArtifactOutput) String added in v1.5.6

String returns the string representation

type DescribeConstraintInput added in v1.5.6

type DescribeConstraintInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	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) GoString added in v1.5.6

func (s DescribeConstraintInput) GoString() string

GoString returns the string representation

func (*DescribeConstraintInput) SetAcceptLanguage added in v1.5.6

func (s *DescribeConstraintInput) SetAcceptLanguage(v string) *DescribeConstraintInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DescribeConstraintInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (DescribeConstraintInput) String added in v1.5.6

func (s DescribeConstraintInput) String() string

String returns the string representation

func (*DescribeConstraintInput) Validate added in v1.5.6

func (s *DescribeConstraintInput) Validate() error

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

type DescribeConstraintOutput added in v1.5.6

type DescribeConstraintOutput struct {

	// Detailed constraint information.
	ConstraintDetail *ConstraintDetail `type:"structure"`

	// The current parameters associated with the specified constraint.
	ConstraintParameters *string `type:"string"`

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

func (DescribeConstraintOutput) GoString added in v1.5.6

func (s DescribeConstraintOutput) GoString() string

GoString returns the string representation

func (*DescribeConstraintOutput) SetConstraintDetail added in v1.5.6

SetConstraintDetail sets the ConstraintDetail field's value.

func (*DescribeConstraintOutput) SetConstraintParameters added in v1.5.6

func (s *DescribeConstraintOutput) SetConstraintParameters(v string) *DescribeConstraintOutput

SetConstraintParameters sets the ConstraintParameters field's value.

func (*DescribeConstraintOutput) SetStatus added in v1.5.6

SetStatus sets the Status field's value.

func (DescribeConstraintOutput) String added in v1.5.6

func (s DescribeConstraintOutput) String() string

String returns the string representation

type DescribePortfolioInput added in v1.5.6

type DescribePortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The identifier of the portfolio for which to retrieve information.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribePortfolioInput) GoString added in v1.5.6

func (s DescribePortfolioInput) GoString() string

GoString returns the string representation

func (*DescribePortfolioInput) SetAcceptLanguage added in v1.5.6

func (s *DescribePortfolioInput) SetAcceptLanguage(v string) *DescribePortfolioInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DescribePortfolioInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (DescribePortfolioInput) String added in v1.5.6

func (s DescribePortfolioInput) String() string

String returns the string representation

func (*DescribePortfolioInput) Validate added in v1.5.6

func (s *DescribePortfolioInput) Validate() error

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

type DescribePortfolioOutput added in v1.5.6

type DescribePortfolioOutput struct {

	// Detailed portfolio information.
	PortfolioDetail *PortfolioDetail `type:"structure"`

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

func (DescribePortfolioOutput) GoString added in v1.5.6

func (s DescribePortfolioOutput) GoString() string

GoString returns the string representation

func (*DescribePortfolioOutput) SetPortfolioDetail added in v1.5.6

SetPortfolioDetail sets the PortfolioDetail field's value.

func (*DescribePortfolioOutput) SetTags added in v1.5.6

SetTags sets the Tags field's value.

func (DescribePortfolioOutput) String added in v1.5.6

func (s DescribePortfolioOutput) String() string

String returns the string representation

type DescribeProductAsAdminInput added in v1.5.6

type DescribeProductAsAdminInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The identifier of the product for which to retrieve information.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeProductAsAdminInput) GoString added in v1.5.6

func (s DescribeProductAsAdminInput) GoString() string

GoString returns the string representation

func (*DescribeProductAsAdminInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DescribeProductAsAdminInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (DescribeProductAsAdminInput) String added in v1.5.6

String returns the string representation

func (*DescribeProductAsAdminInput) Validate added in v1.5.6

func (s *DescribeProductAsAdminInput) Validate() error

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

type DescribeProductAsAdminOutput added in v1.5.6

type DescribeProductAsAdminOutput struct {

	// Detailed product view information.
	ProductViewDetail *ProductViewDetail `type:"structure"`

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

func (DescribeProductAsAdminOutput) GoString added in v1.5.6

func (s DescribeProductAsAdminOutput) GoString() string

GoString returns the string representation

func (*DescribeProductAsAdminOutput) SetProductViewDetail added in v1.5.6

SetProductViewDetail sets the ProductViewDetail field's value.

func (*DescribeProductAsAdminOutput) SetTags added in v1.5.6

SetTags sets the Tags field's value.

func (DescribeProductAsAdminOutput) String added in v1.5.6

String returns the string representation

type DescribeProductInput

type DescribeProductInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

func (DescribeProductInput) GoString

func (s DescribeProductInput) GoString() string

GoString returns the string representation

func (*DescribeProductInput) SetAcceptLanguage added in v1.5.0

func (s *DescribeProductInput) SetAcceptLanguage(v string) *DescribeProductInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DescribeProductInput) SetId added in v1.5.0

SetId sets the Id field's value.

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 {

	// The summary metadata about the specified product.
	ProductViewSummary *ProductViewSummary `type:"structure"`

	// A list of provisioning artifact objects for the specified product. The ProvisioningArtifacts
	// parameter represent the ways the specified product can be provisioned.
	ProvisioningArtifacts []*ProvisioningArtifact `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeProductOutput) GoString

func (s DescribeProductOutput) GoString() string

GoString returns the string representation

func (*DescribeProductOutput) SetProductViewSummary added in v1.5.0

func (s *DescribeProductOutput) SetProductViewSummary(v *ProductViewSummary) *DescribeProductOutput

SetProductViewSummary sets the ProductViewSummary field's value.

func (*DescribeProductOutput) SetProvisioningArtifacts added in v1.5.0

func (s *DescribeProductOutput) SetProvisioningArtifacts(v []*ProvisioningArtifact) *DescribeProductOutput

SetProvisioningArtifacts sets the ProvisioningArtifacts field's value.

func (DescribeProductOutput) String

func (s DescribeProductOutput) String() string

String returns the string representation

type DescribeProductViewInput

type DescribeProductViewInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

func (DescribeProductViewInput) GoString

func (s DescribeProductViewInput) GoString() string

GoString returns the string representation

func (*DescribeProductViewInput) SetAcceptLanguage added in v1.5.0

func (s *DescribeProductViewInput) SetAcceptLanguage(v string) *DescribeProductViewInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DescribeProductViewInput) SetId added in v1.5.0

SetId sets the Id field's value.

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 {

	// The summary metadata about the specified product.
	ProductViewSummary *ProductViewSummary `type:"structure"`

	// A list of provisioning artifact objects for the specified product. The ProvisioningArtifacts
	// represent the ways in which the specified product can be provisioned.
	ProvisioningArtifacts []*ProvisioningArtifact `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeProductViewOutput) GoString

func (s DescribeProductViewOutput) GoString() string

GoString returns the string representation

func (*DescribeProductViewOutput) SetProductViewSummary added in v1.5.0

SetProductViewSummary sets the ProductViewSummary field's value.

func (*DescribeProductViewOutput) SetProvisioningArtifacts added in v1.5.0

SetProvisioningArtifacts sets the ProvisioningArtifacts field's value.

func (DescribeProductViewOutput) String

func (s DescribeProductViewOutput) String() string

String returns the string representation

type DescribeProvisioningArtifactInput added in v1.5.6

type DescribeProvisioningArtifactInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	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 (DescribeProvisioningArtifactInput) GoString added in v1.5.6

GoString returns the string representation

func (*DescribeProvisioningArtifactInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DescribeProvisioningArtifactInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (*DescribeProvisioningArtifactInput) SetProvisioningArtifactId added in v1.5.6

SetProvisioningArtifactId sets the ProvisioningArtifactId field's value.

func (DescribeProvisioningArtifactInput) String added in v1.5.6

String returns the string representation

func (*DescribeProvisioningArtifactInput) Validate added in v1.5.6

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

type DescribeProvisioningArtifactOutput added in v1.5.6

type DescribeProvisioningArtifactOutput struct {

	// Additional information about the provisioning artifact.
	Info map[string]*string `min:"1" type:"map"`

	// Detailed provisioning artifact information.
	ProvisioningArtifactDetail *ProvisioningArtifactDetail `type:"structure"`

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

func (DescribeProvisioningArtifactOutput) GoString added in v1.5.6

GoString returns the string representation

func (*DescribeProvisioningArtifactOutput) SetInfo added in v1.5.6

SetInfo sets the Info field's value.

func (*DescribeProvisioningArtifactOutput) SetProvisioningArtifactDetail added in v1.5.6

SetProvisioningArtifactDetail sets the ProvisioningArtifactDetail field's value.

func (*DescribeProvisioningArtifactOutput) SetStatus added in v1.5.6

SetStatus sets the Status field's value.

func (DescribeProvisioningArtifactOutput) String added in v1.5.6

String returns the string representation

type DescribeProvisioningParametersInput

type DescribeProvisioningParametersInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The identifier of the path for this product's provisioning. This value is
	// optional if the product has a default path, and is required if there is more
	// than one path for the specified product.
	PathId *string `min:"1" type:"string"`

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

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

func (DescribeProvisioningParametersInput) GoString

GoString returns the string representation

func (*DescribeProvisioningParametersInput) SetAcceptLanguage added in v1.5.0

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DescribeProvisioningParametersInput) SetPathId added in v1.5.0

SetPathId sets the PathId field's value.

func (*DescribeProvisioningParametersInput) SetProductId added in v1.5.0

SetProductId sets the ProductId field's value.

func (*DescribeProvisioningParametersInput) SetProvisioningArtifactId added in v1.5.0

SetProvisioningArtifactId sets the ProvisioningArtifactId field's value.

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 {

	// The list of constraint summaries that apply to provisioning this product.
	ConstraintSummaries []*ConstraintSummary `type:"list"`

	// The list of parameters used to successfully provision the product. Each parameter
	// includes a list of allowable values and additional metadata about each parameter.
	ProvisioningArtifactParameters []*ProvisioningArtifactParameter `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) GoString

GoString returns the string representation

func (*DescribeProvisioningParametersOutput) SetConstraintSummaries added in v1.5.0

SetConstraintSummaries sets the ConstraintSummaries field's value.

func (*DescribeProvisioningParametersOutput) SetProvisioningArtifactParameters added in v1.5.0

SetProvisioningArtifactParameters sets the ProvisioningArtifactParameters field's value.

func (*DescribeProvisioningParametersOutput) SetUsageInstructions added in v1.5.0

SetUsageInstructions sets the UsageInstructions field's value.

func (DescribeProvisioningParametersOutput) String

String returns the string representation

type DescribeRecordInput

type DescribeRecordInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The record identifier of the ProvisionedProduct object for which to retrieve
	// output information. This is the RecordDetail.RecordId obtained from the request
	// operation's response.
	//
	// Id is a required field
	Id *string `min:"1" type:"string" required:"true"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeRecordInput) GoString

func (s DescribeRecordInput) GoString() string

GoString returns the string representation

func (*DescribeRecordInput) SetAcceptLanguage added in v1.5.0

func (s *DescribeRecordInput) SetAcceptLanguage(v string) *DescribeRecordInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DescribeRecordInput) SetId added in v1.5.0

SetId sets the Id field's value.

func (*DescribeRecordInput) SetPageSize added in v1.5.0

func (s *DescribeRecordInput) SetPageSize(v int64) *DescribeRecordInput

SetPageSize sets the PageSize field's value.

func (*DescribeRecordInput) SetPageToken added in v1.5.0

func (s *DescribeRecordInput) SetPageToken(v string) *DescribeRecordInput

SetPageToken sets the PageToken field's value.

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 page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// Detailed record information for the specified product.
	RecordDetail *RecordDetail `type:"structure"`

	// A list of outputs for the specified Product object created as the result
	// of a request. For example, a CloudFormation-backed product that creates an
	// S3 bucket would have an output for the S3 bucket URL.
	RecordOutputs []*RecordOutput `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRecordOutput) GoString

func (s DescribeRecordOutput) GoString() string

GoString returns the string representation

func (*DescribeRecordOutput) SetNextPageToken added in v1.5.0

func (s *DescribeRecordOutput) SetNextPageToken(v string) *DescribeRecordOutput

SetNextPageToken sets the NextPageToken field's value.

func (*DescribeRecordOutput) SetRecordDetail added in v1.5.0

func (s *DescribeRecordOutput) SetRecordDetail(v *RecordDetail) *DescribeRecordOutput

SetRecordDetail sets the RecordDetail field's value.

func (*DescribeRecordOutput) SetRecordOutputs added in v1.5.0

func (s *DescribeRecordOutput) SetRecordOutputs(v []*RecordOutput) *DescribeRecordOutput

SetRecordOutputs sets the RecordOutputs field's value.

func (DescribeRecordOutput) String

func (s DescribeRecordOutput) String() string

String returns the string representation

type DisassociatePrincipalFromPortfolioInput added in v1.5.6

type DisassociatePrincipalFromPortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

	// The ARN representing 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) GoString added in v1.5.6

GoString returns the string representation

func (*DisassociatePrincipalFromPortfolioInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DisassociatePrincipalFromPortfolioInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (*DisassociatePrincipalFromPortfolioInput) SetPrincipalARN added in v1.5.6

SetPrincipalARN sets the PrincipalARN field's value.

func (DisassociatePrincipalFromPortfolioInput) String added in v1.5.6

String returns the string representation

func (*DisassociatePrincipalFromPortfolioInput) Validate added in v1.5.6

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

type DisassociatePrincipalFromPortfolioOutput added in v1.5.6

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

func (DisassociatePrincipalFromPortfolioOutput) GoString added in v1.5.6

GoString returns the string representation

func (DisassociatePrincipalFromPortfolioOutput) String added in v1.5.6

String returns the string representation

type DisassociateProductFromPortfolioInput added in v1.5.6

type DisassociateProductFromPortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	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) GoString added in v1.5.6

GoString returns the string representation

func (*DisassociateProductFromPortfolioInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*DisassociateProductFromPortfolioInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (*DisassociateProductFromPortfolioInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (DisassociateProductFromPortfolioInput) String added in v1.5.6

String returns the string representation

func (*DisassociateProductFromPortfolioInput) Validate added in v1.5.6

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

type DisassociateProductFromPortfolioOutput added in v1.5.6

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

func (DisassociateProductFromPortfolioOutput) GoString added in v1.5.6

GoString returns the string representation

func (DisassociateProductFromPortfolioOutput) String added in v1.5.6

String returns the string representation

type LaunchPathSummary

type LaunchPathSummary struct {

	// List of constraints on the portfolio-product relationship.
	ConstraintSummaries []*ConstraintSummary `type:"list"`

	// The unique identifier of the product path.
	Id *string `min:"1" type:"string"`

	// Corresponds to the name of the portfolio to which the user was assigned.
	Name *string `type:"string"`

	// List of tags used by this launch path.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

Summary information about a path for a user to have access to a specified product.

func (LaunchPathSummary) GoString

func (s LaunchPathSummary) GoString() string

GoString returns the string representation

func (*LaunchPathSummary) SetConstraintSummaries added in v1.5.0

func (s *LaunchPathSummary) SetConstraintSummaries(v []*ConstraintSummary) *LaunchPathSummary

SetConstraintSummaries sets the ConstraintSummaries field's value.

func (*LaunchPathSummary) SetId added in v1.5.0

SetId sets the Id field's value.

func (*LaunchPathSummary) SetName added in v1.5.0

SetName sets the Name field's value.

func (*LaunchPathSummary) SetTags added in v1.5.0

func (s *LaunchPathSummary) SetTags(v []*Tag) *LaunchPathSummary

SetTags sets the Tags field's value.

func (LaunchPathSummary) String

func (s LaunchPathSummary) String() string

String returns the string representation

type ListAcceptedPortfolioSharesInput added in v1.5.6

type ListAcceptedPortfolioSharesInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListAcceptedPortfolioSharesInput) GoString added in v1.5.6

GoString returns the string representation

func (*ListAcceptedPortfolioSharesInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListAcceptedPortfolioSharesInput) SetPageSize added in v1.5.6

SetPageSize sets the PageSize field's value.

func (*ListAcceptedPortfolioSharesInput) SetPageToken added in v1.5.6

SetPageToken sets the PageToken field's value.

func (ListAcceptedPortfolioSharesInput) String added in v1.5.6

String returns the string representation

type ListAcceptedPortfolioSharesOutput added in v1.5.6

type ListAcceptedPortfolioSharesOutput struct {

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// List of detailed portfolio information objects.
	PortfolioDetails []*PortfolioDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListAcceptedPortfolioSharesOutput) GoString added in v1.5.6

GoString returns the string representation

func (*ListAcceptedPortfolioSharesOutput) SetNextPageToken added in v1.5.6

SetNextPageToken sets the NextPageToken field's value.

func (*ListAcceptedPortfolioSharesOutput) SetPortfolioDetails added in v1.5.6

SetPortfolioDetails sets the PortfolioDetails field's value.

func (ListAcceptedPortfolioSharesOutput) String added in v1.5.6

String returns the string representation

type ListConstraintsForPortfolioInput added in v1.5.6

type ListConstraintsForPortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	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) GoString added in v1.5.6

GoString returns the string representation

func (*ListConstraintsForPortfolioInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListConstraintsForPortfolioInput) SetPageSize added in v1.5.6

SetPageSize sets the PageSize field's value.

func (*ListConstraintsForPortfolioInput) SetPageToken added in v1.5.6

SetPageToken sets the PageToken field's value.

func (*ListConstraintsForPortfolioInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (*ListConstraintsForPortfolioInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (ListConstraintsForPortfolioInput) String added in v1.5.6

String returns the string representation

func (*ListConstraintsForPortfolioInput) Validate added in v1.5.6

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

type ListConstraintsForPortfolioOutput added in v1.5.6

type ListConstraintsForPortfolioOutput struct {

	// List of detailed constraint information objects.
	ConstraintDetails []*ConstraintDetail `type:"list"`

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListConstraintsForPortfolioOutput) GoString added in v1.5.6

GoString returns the string representation

func (*ListConstraintsForPortfolioOutput) SetConstraintDetails added in v1.5.6

SetConstraintDetails sets the ConstraintDetails field's value.

func (*ListConstraintsForPortfolioOutput) SetNextPageToken added in v1.5.6

SetNextPageToken sets the NextPageToken field's value.

func (ListConstraintsForPortfolioOutput) String added in v1.5.6

String returns the string representation

type ListLaunchPathsInput

type ListLaunchPathsInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	PageToken *string `type:"string"`

	// The product identifier.. Identifies the product for which to retrieve LaunchPathSummaries
	// information.
	//
	// ProductId is a required field
	ProductId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListLaunchPathsInput) GoString

func (s ListLaunchPathsInput) GoString() string

GoString returns the string representation

func (*ListLaunchPathsInput) SetAcceptLanguage added in v1.5.0

func (s *ListLaunchPathsInput) SetAcceptLanguage(v string) *ListLaunchPathsInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListLaunchPathsInput) SetPageSize added in v1.5.0

func (s *ListLaunchPathsInput) SetPageSize(v int64) *ListLaunchPathsInput

SetPageSize sets the PageSize field's value.

func (*ListLaunchPathsInput) SetPageToken added in v1.5.0

func (s *ListLaunchPathsInput) SetPageToken(v string) *ListLaunchPathsInput

SetPageToken sets the PageToken field's value.

func (*ListLaunchPathsInput) SetProductId added in v1.5.0

func (s *ListLaunchPathsInput) SetProductId(v string) *ListLaunchPathsInput

SetProductId sets the ProductId field's value.

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 {

	// List of launch path information summaries for the specified PageToken.
	LaunchPathSummaries []*LaunchPathSummary `type:"list"`

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListLaunchPathsOutput) GoString

func (s ListLaunchPathsOutput) GoString() string

GoString returns the string representation

func (*ListLaunchPathsOutput) SetLaunchPathSummaries added in v1.5.0

func (s *ListLaunchPathsOutput) SetLaunchPathSummaries(v []*LaunchPathSummary) *ListLaunchPathsOutput

SetLaunchPathSummaries sets the LaunchPathSummaries field's value.

func (*ListLaunchPathsOutput) SetNextPageToken added in v1.5.0

func (s *ListLaunchPathsOutput) SetNextPageToken(v string) *ListLaunchPathsOutput

SetNextPageToken sets the NextPageToken field's value.

func (ListLaunchPathsOutput) String

func (s ListLaunchPathsOutput) String() string

String returns the string representation

type ListPortfolioAccessInput added in v1.5.6

type ListPortfolioAccessInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *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) GoString added in v1.5.6

func (s ListPortfolioAccessInput) GoString() string

GoString returns the string representation

func (*ListPortfolioAccessInput) SetAcceptLanguage added in v1.5.6

func (s *ListPortfolioAccessInput) SetAcceptLanguage(v string) *ListPortfolioAccessInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListPortfolioAccessInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (ListPortfolioAccessInput) String added in v1.5.6

func (s ListPortfolioAccessInput) String() string

String returns the string representation

func (*ListPortfolioAccessInput) Validate added in v1.5.6

func (s *ListPortfolioAccessInput) Validate() error

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

type ListPortfolioAccessOutput added in v1.5.6

type ListPortfolioAccessOutput struct {

	// List of account IDs associated with access to the portfolio.
	AccountIds []*string `type:"list"`

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListPortfolioAccessOutput) GoString added in v1.5.6

func (s ListPortfolioAccessOutput) GoString() string

GoString returns the string representation

func (*ListPortfolioAccessOutput) SetAccountIds added in v1.5.6

SetAccountIds sets the AccountIds field's value.

func (*ListPortfolioAccessOutput) SetNextPageToken added in v1.5.6

SetNextPageToken sets the NextPageToken field's value.

func (ListPortfolioAccessOutput) String added in v1.5.6

func (s ListPortfolioAccessOutput) String() string

String returns the string representation

type ListPortfoliosForProductInput added in v1.5.6

type ListPortfoliosForProductInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	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) GoString added in v1.5.6

GoString returns the string representation

func (*ListPortfoliosForProductInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListPortfoliosForProductInput) SetPageSize added in v1.5.6

SetPageSize sets the PageSize field's value.

func (*ListPortfoliosForProductInput) SetPageToken added in v1.5.6

SetPageToken sets the PageToken field's value.

func (*ListPortfoliosForProductInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (ListPortfoliosForProductInput) String added in v1.5.6

String returns the string representation

func (*ListPortfoliosForProductInput) Validate added in v1.5.6

func (s *ListPortfoliosForProductInput) Validate() error

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

type ListPortfoliosForProductOutput added in v1.5.6

type ListPortfoliosForProductOutput struct {

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// List of detailed portfolio information objects.
	PortfolioDetails []*PortfolioDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListPortfoliosForProductOutput) GoString added in v1.5.6

GoString returns the string representation

func (*ListPortfoliosForProductOutput) SetNextPageToken added in v1.5.6

SetNextPageToken sets the NextPageToken field's value.

func (*ListPortfoliosForProductOutput) SetPortfolioDetails added in v1.5.6

SetPortfolioDetails sets the PortfolioDetails field's value.

func (ListPortfoliosForProductOutput) String added in v1.5.6

String returns the string representation

type ListPortfoliosInput added in v1.5.6

type ListPortfoliosInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListPortfoliosInput) GoString added in v1.5.6

func (s ListPortfoliosInput) GoString() string

GoString returns the string representation

func (*ListPortfoliosInput) SetAcceptLanguage added in v1.5.6

func (s *ListPortfoliosInput) SetAcceptLanguage(v string) *ListPortfoliosInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListPortfoliosInput) SetPageSize added in v1.5.6

func (s *ListPortfoliosInput) SetPageSize(v int64) *ListPortfoliosInput

SetPageSize sets the PageSize field's value.

func (*ListPortfoliosInput) SetPageToken added in v1.5.6

func (s *ListPortfoliosInput) SetPageToken(v string) *ListPortfoliosInput

SetPageToken sets the PageToken field's value.

func (ListPortfoliosInput) String added in v1.5.6

func (s ListPortfoliosInput) String() string

String returns the string representation

type ListPortfoliosOutput added in v1.5.6

type ListPortfoliosOutput struct {

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// List of detailed portfolio information objects.
	PortfolioDetails []*PortfolioDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListPortfoliosOutput) GoString added in v1.5.6

func (s ListPortfoliosOutput) GoString() string

GoString returns the string representation

func (*ListPortfoliosOutput) SetNextPageToken added in v1.5.6

func (s *ListPortfoliosOutput) SetNextPageToken(v string) *ListPortfoliosOutput

SetNextPageToken sets the NextPageToken field's value.

func (*ListPortfoliosOutput) SetPortfolioDetails added in v1.5.6

func (s *ListPortfoliosOutput) SetPortfolioDetails(v []*PortfolioDetail) *ListPortfoliosOutput

SetPortfolioDetails sets the PortfolioDetails field's value.

func (ListPortfoliosOutput) String added in v1.5.6

func (s ListPortfoliosOutput) String() string

String returns the string representation

type ListPrincipalsForPortfolioInput added in v1.5.6

type ListPrincipalsForPortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	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) GoString added in v1.5.6

GoString returns the string representation

func (*ListPrincipalsForPortfolioInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListPrincipalsForPortfolioInput) SetPageSize added in v1.5.6

SetPageSize sets the PageSize field's value.

func (*ListPrincipalsForPortfolioInput) SetPageToken added in v1.5.6

SetPageToken sets the PageToken field's value.

func (*ListPrincipalsForPortfolioInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (ListPrincipalsForPortfolioInput) String added in v1.5.6

String returns the string representation

func (*ListPrincipalsForPortfolioInput) Validate added in v1.5.6

func (s *ListPrincipalsForPortfolioInput) Validate() error

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

type ListPrincipalsForPortfolioOutput added in v1.5.6

type ListPrincipalsForPortfolioOutput struct {

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, 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) GoString added in v1.5.6

GoString returns the string representation

func (*ListPrincipalsForPortfolioOutput) SetNextPageToken added in v1.5.6

SetNextPageToken sets the NextPageToken field's value.

func (*ListPrincipalsForPortfolioOutput) SetPrincipals added in v1.5.6

SetPrincipals sets the Principals field's value.

func (ListPrincipalsForPortfolioOutput) String added in v1.5.6

String returns the string representation

type ListProvisioningArtifactsInput added in v1.5.6

type ListProvisioningArtifactsInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	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) GoString added in v1.5.6

GoString returns the string representation

func (*ListProvisioningArtifactsInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListProvisioningArtifactsInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (ListProvisioningArtifactsInput) String added in v1.5.6

String returns the string representation

func (*ListProvisioningArtifactsInput) Validate added in v1.5.6

func (s *ListProvisioningArtifactsInput) Validate() error

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

type ListProvisioningArtifactsOutput added in v1.5.6

type ListProvisioningArtifactsOutput struct {

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// List of detailed provisioning artifact information objects.
	ProvisioningArtifactDetails []*ProvisioningArtifactDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListProvisioningArtifactsOutput) GoString added in v1.5.6

GoString returns the string representation

func (*ListProvisioningArtifactsOutput) SetNextPageToken added in v1.5.6

SetNextPageToken sets the NextPageToken field's value.

func (*ListProvisioningArtifactsOutput) SetProvisioningArtifactDetails added in v1.5.6

SetProvisioningArtifactDetails sets the ProvisioningArtifactDetails field's value.

func (ListProvisioningArtifactsOutput) String added in v1.5.6

String returns the string representation

type ListRecordHistoryInput

type ListRecordHistoryInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The access level for obtaining results. If left unspecified, User level access
	// is used.
	AccessLevelFilter *AccessLevelFilter `type:"structure"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	PageToken *string `type:"string"`

	// The filter to limit search results.
	SearchFilter *ListRecordHistorySearchFilter `type:"structure"`
	// contains filtered or unexported fields
}

func (ListRecordHistoryInput) GoString

func (s ListRecordHistoryInput) GoString() string

GoString returns the string representation

func (*ListRecordHistoryInput) SetAcceptLanguage added in v1.5.0

func (s *ListRecordHistoryInput) SetAcceptLanguage(v string) *ListRecordHistoryInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ListRecordHistoryInput) SetAccessLevelFilter added in v1.5.0

SetAccessLevelFilter sets the AccessLevelFilter field's value.

func (*ListRecordHistoryInput) SetPageSize added in v1.5.0

SetPageSize sets the PageSize field's value.

func (*ListRecordHistoryInput) SetPageToken added in v1.5.0

SetPageToken sets the PageToken field's value.

func (*ListRecordHistoryInput) SetSearchFilter added in v1.5.0

SetSearchFilter sets the SearchFilter field's value.

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 page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// A list of record detail objects, listed in reverse chronological order.
	RecordDetails []*RecordDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ListRecordHistoryOutput) GoString

func (s ListRecordHistoryOutput) GoString() string

GoString returns the string representation

func (*ListRecordHistoryOutput) SetNextPageToken added in v1.5.0

func (s *ListRecordHistoryOutput) SetNextPageToken(v string) *ListRecordHistoryOutput

SetNextPageToken sets the NextPageToken field's value.

func (*ListRecordHistoryOutput) SetRecordDetails added in v1.5.0

SetRecordDetails sets the RecordDetails field's value.

func (ListRecordHistoryOutput) String

func (s ListRecordHistoryOutput) String() string

String returns the string representation

type ListRecordHistorySearchFilter

type ListRecordHistorySearchFilter struct {

	// The filter key.
	Key *string `type:"string"`

	// The filter value for Key.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

The search filter to limit results when listing request history records.

func (ListRecordHistorySearchFilter) GoString

GoString returns the string representation

func (*ListRecordHistorySearchFilter) SetKey added in v1.5.0

SetKey sets the Key field's value.

func (*ListRecordHistorySearchFilter) SetValue added in v1.5.0

SetValue sets the Value field's value.

func (ListRecordHistorySearchFilter) String

String returns the string representation

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) GoString

func (s ParameterConstraints) GoString() string

GoString returns the string representation

func (*ParameterConstraints) SetAllowedValues added in v1.5.0

func (s *ParameterConstraints) SetAllowedValues(v []*string) *ParameterConstraints

SetAllowedValues sets the AllowedValues field's value.

func (ParameterConstraints) String

func (s ParameterConstraints) String() string

String returns the string representation

type PortfolioDetail added in v1.5.6

type PortfolioDetail struct {

	// The ARN assigned to the portfolio.
	ARN *string `min:"1" type:"string"`

	// The UTC timestamp of the creation time.
	CreatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

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

	// The name to use for display purposes.
	DisplayName *string `min:"1" type:"string"`

	// The identifier for the portfolio.
	Id *string `min:"1" type:"string"`

	// The name of the portfolio provider.
	ProviderName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Detailed portfolio information.

func (PortfolioDetail) GoString added in v1.5.6

func (s PortfolioDetail) GoString() string

GoString returns the string representation

func (*PortfolioDetail) SetARN added in v1.5.6

func (s *PortfolioDetail) SetARN(v string) *PortfolioDetail

SetARN sets the ARN field's value.

func (*PortfolioDetail) SetCreatedTime added in v1.5.6

func (s *PortfolioDetail) SetCreatedTime(v time.Time) *PortfolioDetail

SetCreatedTime sets the CreatedTime field's value.

func (*PortfolioDetail) SetDescription added in v1.5.6

func (s *PortfolioDetail) SetDescription(v string) *PortfolioDetail

SetDescription sets the Description field's value.

func (*PortfolioDetail) SetDisplayName added in v1.5.6

func (s *PortfolioDetail) SetDisplayName(v string) *PortfolioDetail

SetDisplayName sets the DisplayName field's value.

func (*PortfolioDetail) SetId added in v1.5.6

func (s *PortfolioDetail) SetId(v string) *PortfolioDetail

SetId sets the Id field's value.

func (*PortfolioDetail) SetProviderName added in v1.5.6

func (s *PortfolioDetail) SetProviderName(v string) *PortfolioDetail

SetProviderName sets the ProviderName field's value.

func (PortfolioDetail) String added in v1.5.6

func (s PortfolioDetail) String() string

String returns the string representation

type Principal added in v1.5.6

type Principal struct {

	// The ARN representing the principal (IAM user, role, or group).
	PrincipalARN *string `min:"1" type:"string"`

	// The principal type. Must be IAM
	PrincipalType *string `type:"string" enum:"PrincipalType"`
	// contains filtered or unexported fields
}

A principal's ARN and type.

func (Principal) GoString added in v1.5.6

func (s Principal) GoString() string

GoString returns the string representation

func (*Principal) SetPrincipalARN added in v1.5.6

func (s *Principal) SetPrincipalARN(v string) *Principal

SetPrincipalARN sets the PrincipalARN field's value.

func (*Principal) SetPrincipalType added in v1.5.6

func (s *Principal) SetPrincipalType(v string) *Principal

SetPrincipalType sets the PrincipalType field's value.

func (Principal) String added in v1.5.6

func (s Principal) String() string

String returns the string representation

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) GoString

func (s ProductViewAggregationValue) GoString() string

GoString returns the string representation

func (*ProductViewAggregationValue) SetApproximateCount added in v1.5.0

SetApproximateCount sets the ApproximateCount field's value.

func (*ProductViewAggregationValue) SetValue added in v1.5.0

SetValue sets the Value field's value.

func (ProductViewAggregationValue) String

String returns the string representation

type ProductViewDetail added in v1.5.6

type ProductViewDetail struct {

	// The UTC timestamp of the creation time.
	CreatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// The ARN associated with the product.
	ProductARN *string `min:"1" type:"string"`

	// The summary metadata about the specified product view.
	ProductViewSummary *ProductViewSummary `type:"structure"`

	// Current status of the product.
	Status *string `type:"string" enum:"Status"`
	// contains filtered or unexported fields
}

Detailed product view information.

func (ProductViewDetail) GoString added in v1.5.6

func (s ProductViewDetail) GoString() string

GoString returns the string representation

func (*ProductViewDetail) SetCreatedTime added in v1.5.6

func (s *ProductViewDetail) SetCreatedTime(v time.Time) *ProductViewDetail

SetCreatedTime sets the CreatedTime field's value.

func (*ProductViewDetail) SetProductARN added in v1.5.6

func (s *ProductViewDetail) SetProductARN(v string) *ProductViewDetail

SetProductARN sets the ProductARN field's value.

func (*ProductViewDetail) SetProductViewSummary added in v1.5.6

func (s *ProductViewDetail) SetProductViewSummary(v *ProductViewSummary) *ProductViewDetail

SetProductViewSummary sets the ProductViewSummary field's value.

func (*ProductViewDetail) SetStatus added in v1.5.6

func (s *ProductViewDetail) SetStatus(v string) *ProductViewDetail

SetStatus sets the Status field's value.

func (ProductViewDetail) String added in v1.5.6

func (s ProductViewDetail) String() string

String returns the string representation

type ProductViewSummary

type ProductViewSummary struct {

	// The distributor of the product. Contact the product administrator for the
	// significance of this value.
	Distributor *string `type:"string"`

	// A value of false indicates that the product does not have a default path,
	// while a value of true indicates that it does. If it's false, call ListLaunchPaths
	// to disambiguate between paths. If true, ListLaunchPaths is not required,
	// and the output of the ProductViewSummary operation 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.
	Type *string `type:"string" enum:"ProductType"`
	// contains filtered or unexported fields
}

The summary metadata about the specified product.

func (ProductViewSummary) GoString

func (s ProductViewSummary) GoString() string

GoString returns the string representation

func (*ProductViewSummary) SetDistributor added in v1.5.0

func (s *ProductViewSummary) SetDistributor(v string) *ProductViewSummary

SetDistributor sets the Distributor field's value.

func (*ProductViewSummary) SetHasDefaultPath added in v1.5.0

func (s *ProductViewSummary) SetHasDefaultPath(v bool) *ProductViewSummary

SetHasDefaultPath sets the HasDefaultPath field's value.

func (*ProductViewSummary) SetId added in v1.5.0

SetId sets the Id field's value.

func (*ProductViewSummary) SetName added in v1.5.0

SetName sets the Name field's value.

func (*ProductViewSummary) SetOwner added in v1.5.0

SetOwner sets the Owner field's value.

func (*ProductViewSummary) SetProductId added in v1.5.0

func (s *ProductViewSummary) SetProductId(v string) *ProductViewSummary

SetProductId sets the ProductId field's value.

func (*ProductViewSummary) SetShortDescription added in v1.5.0

func (s *ProductViewSummary) SetShortDescription(v string) *ProductViewSummary

SetShortDescription sets the ShortDescription field's value.

func (*ProductViewSummary) SetSupportDescription added in v1.5.0

func (s *ProductViewSummary) SetSupportDescription(v string) *ProductViewSummary

SetSupportDescription sets the SupportDescription field's value.

func (*ProductViewSummary) SetSupportEmail added in v1.5.0

func (s *ProductViewSummary) SetSupportEmail(v string) *ProductViewSummary

SetSupportEmail sets the SupportEmail field's value.

func (*ProductViewSummary) SetSupportUrl added in v1.5.0

func (s *ProductViewSummary) SetSupportUrl(v string) *ProductViewSummary

SetSupportUrl sets the SupportUrl field's value.

func (*ProductViewSummary) SetType added in v1.5.0

SetType sets the Type field's value.

func (ProductViewSummary) String

func (s ProductViewSummary) String() string

String returns the string representation

type ProvisionProductInput

type ProvisionProductInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

	// The identifier of the path for this product's provisioning. This value is
	// optional if the product has a default path, and is required if there is more
	// than one path for the specified product.
	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 to identify the ProvisionedProduct object. 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 `type:"string" required:"true"`

	// The provisioning artifact identifier for this product.
	//
	// 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"`

	// A list of tags to use as provisioning options.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (ProvisionProductInput) GoString

func (s ProvisionProductInput) GoString() string

GoString returns the string representation

func (*ProvisionProductInput) SetAcceptLanguage added in v1.5.0

func (s *ProvisionProductInput) SetAcceptLanguage(v string) *ProvisionProductInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ProvisionProductInput) SetNotificationArns added in v1.5.0

func (s *ProvisionProductInput) SetNotificationArns(v []*string) *ProvisionProductInput

SetNotificationArns sets the NotificationArns field's value.

func (*ProvisionProductInput) SetPathId added in v1.5.0

SetPathId sets the PathId field's value.

func (*ProvisionProductInput) SetProductId added in v1.5.0

SetProductId sets the ProductId field's value.

func (*ProvisionProductInput) SetProvisionToken added in v1.5.0

func (s *ProvisionProductInput) SetProvisionToken(v string) *ProvisionProductInput

SetProvisionToken sets the ProvisionToken field's value.

func (*ProvisionProductInput) SetProvisionedProductName added in v1.5.0

func (s *ProvisionProductInput) SetProvisionedProductName(v string) *ProvisionProductInput

SetProvisionedProductName sets the ProvisionedProductName field's value.

func (*ProvisionProductInput) SetProvisioningArtifactId added in v1.5.0

func (s *ProvisionProductInput) SetProvisioningArtifactId(v string) *ProvisionProductInput

SetProvisioningArtifactId sets the ProvisioningArtifactId field's value.

func (*ProvisionProductInput) SetProvisioningParameters added in v1.5.0

func (s *ProvisionProductInput) SetProvisioningParameters(v []*ProvisioningParameter) *ProvisionProductInput

SetProvisioningParameters sets the ProvisioningParameters field's value.

func (*ProvisionProductInput) SetTags added in v1.5.0

SetTags sets the Tags field's value.

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 {

	// The detailed result of the ProvisionProduct request, containing the inputs
	// made to that request, the current state of the request, a pointer to the
	// ProvisionedProduct object of the request, and a list of any errors that the
	// request encountered.
	RecordDetail *RecordDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (ProvisionProductOutput) GoString

func (s ProvisionProductOutput) GoString() string

GoString returns the string representation

func (*ProvisionProductOutput) SetRecordDetail added in v1.5.0

SetRecordDetail sets the RecordDetail field's value.

func (ProvisionProductOutput) String

func (s ProvisionProductOutput) String() string

String returns the string representation

type ProvisionedProductDetail

type ProvisionedProductDetail struct {

	// The ARN associated with the ProvisionedProduct object.
	Arn *string `min:"1" type:"string"`

	// The UTC timestamp of the creation time.
	CreatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// The identifier of the ProvisionedProduct object.
	Id *string `type:"string"`

	// A token to disambiguate duplicate requests. You can create multiple resources
	// using the same input in multiple requests, provided that you also specify
	// a different idempotency token for each request.
	IdempotencyToken *string `min:"1" type:"string"`

	// The record identifier of the last request performed on this ProvisionedProduct
	// object.
	LastRecordId *string `type:"string"`

	// The user-friendly name of the ProvisionedProduct object.
	Name *string `min:"1" type:"string"`

	// The current status of the ProvisionedProduct.
	Status *string `type:"string" enum:"RecordStatus"`

	// The current status message of the ProvisionedProduct.
	StatusMessage *string `type:"string"`

	// The type of the ProvisionedProduct object.
	Type *string `type:"string"`
	// contains filtered or unexported fields
}

Detailed information about a ProvisionedProduct object.

func (ProvisionedProductDetail) GoString

func (s ProvisionedProductDetail) GoString() string

GoString returns the string representation

func (*ProvisionedProductDetail) SetArn added in v1.5.0

SetArn sets the Arn field's value.

func (*ProvisionedProductDetail) SetCreatedTime added in v1.5.0

SetCreatedTime sets the CreatedTime field's value.

func (*ProvisionedProductDetail) SetId added in v1.5.0

SetId sets the Id field's value.

func (*ProvisionedProductDetail) SetIdempotencyToken added in v1.5.0

func (s *ProvisionedProductDetail) SetIdempotencyToken(v string) *ProvisionedProductDetail

SetIdempotencyToken sets the IdempotencyToken field's value.

func (*ProvisionedProductDetail) SetLastRecordId added in v1.5.0

SetLastRecordId sets the LastRecordId field's value.

func (*ProvisionedProductDetail) SetName added in v1.5.0

SetName sets the Name field's value.

func (*ProvisionedProductDetail) SetStatus added in v1.5.0

SetStatus sets the Status field's value.

func (*ProvisionedProductDetail) SetStatusMessage added in v1.5.0

SetStatusMessage sets the StatusMessage field's value.

func (*ProvisionedProductDetail) SetType added in v1.5.0

SetType sets the Type field's value.

func (ProvisionedProductDetail) String

func (s ProvisionedProductDetail) String() string

String returns the string representation

type ProvisioningArtifact

type ProvisioningArtifact struct {

	// The UTC timestamp of the creation time.
	CreatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

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

	// The identifier for the artifact.
	Id *string `min:"1" type:"string"`

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

Contains information indicating the ways in which a product can be provisioned.

func (ProvisioningArtifact) GoString

func (s ProvisioningArtifact) GoString() string

GoString returns the string representation

func (*ProvisioningArtifact) SetCreatedTime added in v1.5.0

func (s *ProvisioningArtifact) SetCreatedTime(v time.Time) *ProvisioningArtifact

SetCreatedTime sets the CreatedTime field's value.

func (*ProvisioningArtifact) SetDescription added in v1.5.0

func (s *ProvisioningArtifact) SetDescription(v string) *ProvisioningArtifact

SetDescription sets the Description field's value.

func (*ProvisioningArtifact) SetId added in v1.5.0

SetId sets the Id field's value.

func (*ProvisioningArtifact) SetName added in v1.5.0

SetName sets the Name field's value.

func (ProvisioningArtifact) String

func (s ProvisioningArtifact) String() string

String returns the string representation

type ProvisioningArtifactDetail added in v1.5.6

type ProvisioningArtifactDetail struct {

	// The UTC timestamp of the creation time.
	CreatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// The text description of the provisioning artifact.
	Description *string `type:"string"`

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

	// The name assigned to the provisioning artifact.
	Name *string `type:"string"`

	// The type of the provisioning artifact.
	Type *string `type:"string" enum:"ProvisioningArtifactType"`
	// contains filtered or unexported fields
}

Detailed provisioning artifact information.

func (ProvisioningArtifactDetail) GoString added in v1.5.6

func (s ProvisioningArtifactDetail) GoString() string

GoString returns the string representation

func (*ProvisioningArtifactDetail) SetCreatedTime added in v1.5.6

SetCreatedTime sets the CreatedTime field's value.

func (*ProvisioningArtifactDetail) SetDescription added in v1.5.6

SetDescription sets the Description field's value.

func (*ProvisioningArtifactDetail) SetId added in v1.5.6

SetId sets the Id field's value.

func (*ProvisioningArtifactDetail) SetName added in v1.5.6

SetName sets the Name field's value.

func (*ProvisioningArtifactDetail) SetType added in v1.5.6

SetType sets the Type field's value.

func (ProvisioningArtifactDetail) String added in v1.5.6

String returns the string representation

type ProvisioningArtifactParameter

type ProvisioningArtifactParameter struct {

	// The default value for this parameter.
	DefaultValue *string `type:"string"`

	// The text 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"`

	// The list of constraints that the administrator has put on the 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
}

A parameter used to successfully provision the product. This value includes a list of allowable values and additional metadata.

func (ProvisioningArtifactParameter) GoString

GoString returns the string representation

func (*ProvisioningArtifactParameter) SetDefaultValue added in v1.5.0

SetDefaultValue sets the DefaultValue field's value.

func (*ProvisioningArtifactParameter) SetDescription added in v1.5.0

SetDescription sets the Description field's value.

func (*ProvisioningArtifactParameter) SetIsNoEcho added in v1.5.0

SetIsNoEcho sets the IsNoEcho field's value.

func (*ProvisioningArtifactParameter) SetParameterConstraints added in v1.5.0

SetParameterConstraints sets the ParameterConstraints field's value.

func (*ProvisioningArtifactParameter) SetParameterKey added in v1.5.0

SetParameterKey sets the ParameterKey field's value.

func (*ProvisioningArtifactParameter) SetParameterType added in v1.5.0

SetParameterType sets the ParameterType field's value.

func (ProvisioningArtifactParameter) String

String returns the string representation

type ProvisioningArtifactProperties added in v1.5.6

type ProvisioningArtifactProperties struct {

	// The text description of the provisioning artifact properties.
	Description *string `type:"string"`

	// Additional information about the provisioning artifact properties.
	//
	// Info is a required field
	Info map[string]*string `min:"1" type:"map" required:"true"`

	// The name assigned to the provisioning artifact properties.
	Name *string `type:"string"`

	// The type of the provisioning artifact properties.
	Type *string `type:"string" enum:"ProvisioningArtifactType"`
	// contains filtered or unexported fields
}

Provisioning artifact properties.

func (ProvisioningArtifactProperties) GoString added in v1.5.6

GoString returns the string representation

func (*ProvisioningArtifactProperties) SetDescription added in v1.5.6

SetDescription sets the Description field's value.

func (*ProvisioningArtifactProperties) SetInfo added in v1.5.6

SetInfo sets the Info field's value.

func (*ProvisioningArtifactProperties) SetName added in v1.5.6

SetName sets the Name field's value.

func (*ProvisioningArtifactProperties) SetType added in v1.5.6

SetType sets the Type field's value.

func (ProvisioningArtifactProperties) String added in v1.5.6

String returns the string representation

func (*ProvisioningArtifactProperties) Validate added in v1.5.6

func (s *ProvisioningArtifactProperties) Validate() error

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

type ProvisioningParameter

type ProvisioningParameter struct {

	// The ProvisioningArtifactParameter.ParameterKey parameter from DescribeProvisioningParameters.
	Key *string `min:"1" type:"string"`

	// The value to use for provisioning. Any constraints on this value can be found
	// in ProvisioningArtifactParameter for Key.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

The arameter key/value pairs used to provision a product.

func (ProvisioningParameter) GoString

func (s ProvisioningParameter) GoString() string

GoString returns the string representation

func (*ProvisioningParameter) SetKey added in v1.5.0

SetKey sets the Key field's value.

func (*ProvisioningParameter) SetValue added in v1.5.0

SetValue sets the Value field's value.

func (ProvisioningParameter) String

func (s ProvisioningParameter) String() string

String returns the string representation

func (*ProvisioningParameter) Validate added in v1.5.6

func (s *ProvisioningParameter) Validate() error

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

type RecordDetail

type RecordDetail struct {

	// The UTC timestamp of the creation time.
	CreatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`

	// The identifier of the path for this product's provisioning.
	PathId *string `min:"1" type:"string"`

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

	// The identifier of the ProvisionedProduct object.
	ProvisionedProductId *string `min:"1" type:"string"`

	// The user-friendly name of the ProvisionedProduct object.
	ProvisionedProductName *string `type:"string"`

	// The type of the ProvisionedProduct object.
	ProvisionedProductType *string `type:"string"`

	// The provisioning artifact identifier for this product.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// A list of errors that occurred while processing the request.
	RecordErrors []*RecordError `type:"list"`

	// The identifier of the ProvisionedProduct object record.
	RecordId *string `min:"1" type:"string"`

	// List of tags associated with this record.
	RecordTags []*RecordTag `type:"list"`

	// The record type for this record.
	RecordType *string `type:"string"`

	// The status of the ProvisionedProduct object.
	Status *string `type:"string" enum:"RecordStatus"`

	// The time when the record for the ProvisionedProduct object was last updated.
	UpdatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`
	// contains filtered or unexported fields
}

The full details of a specific ProvisionedProduct object.

func (RecordDetail) GoString

func (s RecordDetail) GoString() string

GoString returns the string representation

func (*RecordDetail) SetCreatedTime added in v1.5.0

func (s *RecordDetail) SetCreatedTime(v time.Time) *RecordDetail

SetCreatedTime sets the CreatedTime field's value.

func (*RecordDetail) SetPathId added in v1.5.0

func (s *RecordDetail) SetPathId(v string) *RecordDetail

SetPathId sets the PathId field's value.

func (*RecordDetail) SetProductId added in v1.5.0

func (s *RecordDetail) SetProductId(v string) *RecordDetail

SetProductId sets the ProductId field's value.

func (*RecordDetail) SetProvisionedProductId added in v1.5.0

func (s *RecordDetail) SetProvisionedProductId(v string) *RecordDetail

SetProvisionedProductId sets the ProvisionedProductId field's value.

func (*RecordDetail) SetProvisionedProductName added in v1.5.0

func (s *RecordDetail) SetProvisionedProductName(v string) *RecordDetail

SetProvisionedProductName sets the ProvisionedProductName field's value.

func (*RecordDetail) SetProvisionedProductType added in v1.5.0

func (s *RecordDetail) SetProvisionedProductType(v string) *RecordDetail

SetProvisionedProductType sets the ProvisionedProductType field's value.

func (*RecordDetail) SetProvisioningArtifactId added in v1.5.0

func (s *RecordDetail) SetProvisioningArtifactId(v string) *RecordDetail

SetProvisioningArtifactId sets the ProvisioningArtifactId field's value.

func (*RecordDetail) SetRecordErrors added in v1.5.0

func (s *RecordDetail) SetRecordErrors(v []*RecordError) *RecordDetail

SetRecordErrors sets the RecordErrors field's value.

func (*RecordDetail) SetRecordId added in v1.5.0

func (s *RecordDetail) SetRecordId(v string) *RecordDetail

SetRecordId sets the RecordId field's value.

func (*RecordDetail) SetRecordTags added in v1.5.0

func (s *RecordDetail) SetRecordTags(v []*RecordTag) *RecordDetail

SetRecordTags sets the RecordTags field's value.

func (*RecordDetail) SetRecordType added in v1.5.0

func (s *RecordDetail) SetRecordType(v string) *RecordDetail

SetRecordType sets the RecordType field's value.

func (*RecordDetail) SetStatus added in v1.5.0

func (s *RecordDetail) SetStatus(v string) *RecordDetail

SetStatus sets the Status field's value.

func (*RecordDetail) SetUpdatedTime added in v1.5.0

func (s *RecordDetail) SetUpdatedTime(v time.Time) *RecordDetail

SetUpdatedTime sets the UpdatedTime field's value.

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 text description of the error.
	Description *string `type:"string"`
	// contains filtered or unexported fields
}

The error code and description resulting from an operation.

func (RecordError) GoString

func (s RecordError) GoString() string

GoString returns the string representation

func (*RecordError) SetCode added in v1.5.0

func (s *RecordError) SetCode(v string) *RecordError

SetCode sets the Code field's value.

func (*RecordError) SetDescription added in v1.5.0

func (s *RecordError) SetDescription(v string) *RecordError

SetDescription sets the Description field's value.

func (RecordError) String

func (s RecordError) String() string

String returns the string representation

type RecordOutput

type RecordOutput struct {

	// The text 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
}

An output for the specified Product object created as the result of a request. For example, a CloudFormation-backed product that creates an S3 bucket would have an output for the S3 bucket URL.

func (RecordOutput) GoString

func (s RecordOutput) GoString() string

GoString returns the string representation

func (*RecordOutput) SetDescription added in v1.5.0

func (s *RecordOutput) SetDescription(v string) *RecordOutput

SetDescription sets the Description field's value.

func (*RecordOutput) SetOutputKey added in v1.5.0

func (s *RecordOutput) SetOutputKey(v string) *RecordOutput

SetOutputKey sets the OutputKey field's value.

func (*RecordOutput) SetOutputValue added in v1.5.0

func (s *RecordOutput) SetOutputValue(v string) *RecordOutput

SetOutputValue sets the OutputValue field's value.

func (RecordOutput) String

func (s RecordOutput) String() string

String returns the string representation

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
}

A tag associated with the record, stored as a key-value pair.

func (RecordTag) GoString

func (s RecordTag) GoString() string

GoString returns the string representation

func (*RecordTag) SetKey added in v1.5.0

func (s *RecordTag) SetKey(v string) *RecordTag

SetKey sets the Key field's value.

func (*RecordTag) SetValue added in v1.5.0

func (s *RecordTag) SetValue(v string) *RecordTag

SetValue sets the Value field's value.

func (RecordTag) String

func (s RecordTag) String() string

String returns the string representation

type RejectPortfolioShareInput added in v1.5.6

type RejectPortfolioShareInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *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 (RejectPortfolioShareInput) GoString added in v1.5.6

func (s RejectPortfolioShareInput) GoString() string

GoString returns the string representation

func (*RejectPortfolioShareInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*RejectPortfolioShareInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (RejectPortfolioShareInput) String added in v1.5.6

func (s RejectPortfolioShareInput) String() string

String returns the string representation

func (*RejectPortfolioShareInput) Validate added in v1.5.6

func (s *RejectPortfolioShareInput) Validate() error

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

type RejectPortfolioShareOutput added in v1.5.6

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

func (RejectPortfolioShareOutput) GoString added in v1.5.6

func (s RejectPortfolioShareOutput) GoString() string

GoString returns the string representation

func (RejectPortfolioShareOutput) String added in v1.5.6

String returns the string representation

type ScanProvisionedProductsInput

type ScanProvisionedProductsInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The access level for obtaining results. If left unspecified, User level access
	// is used.
	AccessLevelFilter *AccessLevelFilter `type:"structure"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	PageToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ScanProvisionedProductsInput) GoString

func (s ScanProvisionedProductsInput) GoString() string

GoString returns the string representation

func (*ScanProvisionedProductsInput) SetAcceptLanguage added in v1.5.0

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*ScanProvisionedProductsInput) SetAccessLevelFilter added in v1.5.0

SetAccessLevelFilter sets the AccessLevelFilter field's value.

func (*ScanProvisionedProductsInput) SetPageSize added in v1.5.0

SetPageSize sets the PageSize field's value.

func (*ScanProvisionedProductsInput) SetPageToken added in v1.5.0

SetPageToken sets the PageToken field's value.

func (ScanProvisionedProductsInput) String

String returns the string representation

type ScanProvisionedProductsOutput

type ScanProvisionedProductsOutput struct {

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// A list of ProvisionedProduct detail objects.
	ProvisionedProducts []*ProvisionedProductDetail `type:"list"`
	// contains filtered or unexported fields
}

func (ScanProvisionedProductsOutput) GoString

GoString returns the string representation

func (*ScanProvisionedProductsOutput) SetNextPageToken added in v1.5.0

SetNextPageToken sets the NextPageToken field's value.

func (*ScanProvisionedProductsOutput) SetProvisionedProducts added in v1.5.0

SetProvisionedProducts sets the ProvisionedProducts field's value.

func (ScanProvisionedProductsOutput) String

String returns the string representation

type SearchProductsAsAdminInput added in v1.5.6

type SearchProductsAsAdminInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The list of filters with which to limit search results. If no search filters
	// are specified, the output is all the products to which the administrator
	// has access.
	Filters map[string][]*string `type:"map"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	PageToken *string `type:"string"`

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

	// Access level of the source of the product.
	ProductSource *string `type:"string" enum:"ProductSource"`

	// The sort field specifier. If no value is specified, results are not sorted.
	SortBy *string `type:"string" enum:"ProductViewSortBy"`

	// The sort order specifier. If no value is specified, results are not sorted.
	SortOrder *string `type:"string" enum:"SortOrder"`
	// contains filtered or unexported fields
}

func (SearchProductsAsAdminInput) GoString added in v1.5.6

func (s SearchProductsAsAdminInput) GoString() string

GoString returns the string representation

func (*SearchProductsAsAdminInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*SearchProductsAsAdminInput) SetFilters added in v1.5.6

SetFilters sets the Filters field's value.

func (*SearchProductsAsAdminInput) SetPageSize added in v1.5.6

SetPageSize sets the PageSize field's value.

func (*SearchProductsAsAdminInput) SetPageToken added in v1.5.6

SetPageToken sets the PageToken field's value.

func (*SearchProductsAsAdminInput) SetPortfolioId added in v1.5.6

SetPortfolioId sets the PortfolioId field's value.

func (*SearchProductsAsAdminInput) SetProductSource added in v1.5.6

SetProductSource sets the ProductSource field's value.

func (*SearchProductsAsAdminInput) SetSortBy added in v1.5.6

SetSortBy sets the SortBy field's value.

func (*SearchProductsAsAdminInput) SetSortOrder added in v1.5.6

SetSortOrder sets the SortOrder field's value.

func (SearchProductsAsAdminInput) String added in v1.5.6

String returns the string representation

func (*SearchProductsAsAdminInput) Validate added in v1.5.6

func (s *SearchProductsAsAdminInput) Validate() error

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

type SearchProductsAsAdminOutput added in v1.5.6

type SearchProductsAsAdminOutput struct {

	// The page token to use to retrieve the next page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// List of detailed product view information objects.
	ProductViewDetails []*ProductViewDetail `type:"list"`
	// contains filtered or unexported fields
}

func (SearchProductsAsAdminOutput) GoString added in v1.5.6

func (s SearchProductsAsAdminOutput) GoString() string

GoString returns the string representation

func (*SearchProductsAsAdminOutput) SetNextPageToken added in v1.5.6

SetNextPageToken sets the NextPageToken field's value.

func (*SearchProductsAsAdminOutput) SetProductViewDetails added in v1.5.6

SetProductViewDetails sets the ProductViewDetails field's value.

func (SearchProductsAsAdminOutput) String added in v1.5.6

String returns the string representation

type SearchProductsInput

type SearchProductsInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The list of filters with which to limit search results. If no search filters
	// are specified, the output is all the products to which the calling user has
	// access.
	Filters map[string][]*string `type:"map"`

	// The maximum number of items to return in the results. If more results exist
	// than fit in the specified PageSize, the value of NextPageToken in the response
	// is non-null.
	PageSize *int64 `type:"integer"`

	// The page token of the first page retrieved. If null, this retrieves the first
	// page of size PageSize.
	PageToken *string `type:"string"`

	// The sort field specifier. If no value is specified, results are not sorted.
	SortBy *string `type:"string" enum:"ProductViewSortBy"`

	// The sort order specifier. If no value is specified, results are not sorted.
	SortOrder *string `type:"string" enum:"SortOrder"`
	// contains filtered or unexported fields
}

func (SearchProductsInput) GoString

func (s SearchProductsInput) GoString() string

GoString returns the string representation

func (*SearchProductsInput) SetAcceptLanguage added in v1.5.0

func (s *SearchProductsInput) SetAcceptLanguage(v string) *SearchProductsInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*SearchProductsInput) SetFilters added in v1.5.0

func (s *SearchProductsInput) SetFilters(v map[string][]*string) *SearchProductsInput

SetFilters sets the Filters field's value.

func (*SearchProductsInput) SetPageSize added in v1.5.0

func (s *SearchProductsInput) SetPageSize(v int64) *SearchProductsInput

SetPageSize sets the PageSize field's value.

func (*SearchProductsInput) SetPageToken added in v1.5.0

func (s *SearchProductsInput) SetPageToken(v string) *SearchProductsInput

SetPageToken sets the PageToken field's value.

func (*SearchProductsInput) SetSortBy added in v1.5.0

SetSortBy sets the SortBy field's value.

func (*SearchProductsInput) SetSortOrder added in v1.5.0

func (s *SearchProductsInput) SetSortOrder(v string) *SearchProductsInput

SetSortOrder sets the SortOrder field's value.

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 page of results for this operation.
	// If there are no more pages, this value is null.
	NextPageToken *string `type:"string"`

	// A list of the product view aggregation value objects.
	ProductViewAggregations map[string][]*ProductViewAggregationValue `type:"map"`

	// A list of the product view summary objects.
	ProductViewSummaries []*ProductViewSummary `type:"list"`
	// contains filtered or unexported fields
}

func (SearchProductsOutput) GoString

func (s SearchProductsOutput) GoString() string

GoString returns the string representation

func (*SearchProductsOutput) SetNextPageToken added in v1.5.0

func (s *SearchProductsOutput) SetNextPageToken(v string) *SearchProductsOutput

SetNextPageToken sets the NextPageToken field's value.

func (*SearchProductsOutput) SetProductViewAggregations added in v1.5.0

func (s *SearchProductsOutput) SetProductViewAggregations(v map[string][]*ProductViewAggregationValue) *SearchProductsOutput

SetProductViewAggregations sets the ProductViewAggregations field's value.

func (*SearchProductsOutput) SetProductViewSummaries added in v1.5.0

func (s *SearchProductsOutput) SetProductViewSummaries(v []*ProductViewSummary) *SearchProductsOutput

SetProductViewSummaries sets the ProductViewSummaries field's value.

func (SearchProductsOutput) String

func (s SearchProductsOutput) String() string

String returns the string representation

type ServiceCatalog

type ServiceCatalog struct {
	*client.Client
}

Overview

AWS Service Catalog (https://aws.amazon.com/servicecatalog/) allows organizations to create and manage catalogs of IT services that are approved for use on AWS. This documentation provides reference material for the AWS Service Catalog end user API. To get the most out of this documentation, you need to be familiar with the terminology discussed in AWS Service Catalog Concepts (http://docs.aws.amazon.com/servicecatalog/latest/userguide/what-is_concepts.html).

Additional Resources

The service client's operations are safe to be used concurrently. It is not safe to mutate any of the client's properties though.

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *ServiceCatalog

New creates a new instance of the ServiceCatalog client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a ServiceCatalog client from just a session.
svc := servicecatalog.New(mySession)

// Create a ServiceCatalog client with additional configuration
svc := servicecatalog.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*ServiceCatalog) AcceptPortfolioShare added in v1.5.6

func (c *ServiceCatalog) AcceptPortfolioShare(input *AcceptPortfolioShareInput) (*AcceptPortfolioShareOutput, error)

AcceptPortfolioShare API operation for AWS Service Catalog.

Accepts an offer to share a portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation AcceptPortfolioShare for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.AcceptPortfolioShareInput{
		PortfolioId:    aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.AcceptPortfolioShare(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) AcceptPortfolioShareRequest added in v1.5.6

func (c *ServiceCatalog) AcceptPortfolioShareRequest(input *AcceptPortfolioShareInput) (req *request.Request, output *AcceptPortfolioShareOutput)

AcceptPortfolioShareRequest generates a "aws/request.Request" representing the client's request for the AcceptPortfolioShare operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AcceptPortfolioShare for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AcceptPortfolioShare method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AcceptPortfolioShareRequest method.
req, resp := client.AcceptPortfolioShareRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) AssociatePrincipalWithPortfolio added in v1.5.6

AssociatePrincipalWithPortfolio API operation for AWS Service Catalog.

Associates the specified principal ARN with the specified portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation AssociatePrincipalWithPortfolio for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.AssociatePrincipalWithPortfolioInput{
		PortfolioId:    aws.String("Id"),            // Required
		PrincipalARN:   aws.String("PrincipalARN"),  // Required
		PrincipalType:  aws.String("PrincipalType"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.AssociatePrincipalWithPortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) AssociatePrincipalWithPortfolioRequest added in v1.5.6

func (c *ServiceCatalog) AssociatePrincipalWithPortfolioRequest(input *AssociatePrincipalWithPortfolioInput) (req *request.Request, output *AssociatePrincipalWithPortfolioOutput)

AssociatePrincipalWithPortfolioRequest generates a "aws/request.Request" representing the client's request for the AssociatePrincipalWithPortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssociatePrincipalWithPortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssociatePrincipalWithPortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssociatePrincipalWithPortfolioRequest method.
req, resp := client.AssociatePrincipalWithPortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) AssociateProductWithPortfolio added in v1.5.6

AssociateProductWithPortfolio API operation for AWS Service Catalog.

Associates a product with a portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation AssociateProductWithPortfolio for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.AssociateProductWithPortfolioInput{
		PortfolioId:       aws.String("Id"), // Required
		ProductId:         aws.String("Id"), // Required
		AcceptLanguage:    aws.String("AcceptLanguage"),
		SourcePortfolioId: aws.String("Id"),
	}
	resp, err := svc.AssociateProductWithPortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) AssociateProductWithPortfolioRequest added in v1.5.6

func (c *ServiceCatalog) AssociateProductWithPortfolioRequest(input *AssociateProductWithPortfolioInput) (req *request.Request, output *AssociateProductWithPortfolioOutput)

AssociateProductWithPortfolioRequest generates a "aws/request.Request" representing the client's request for the AssociateProductWithPortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssociateProductWithPortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssociateProductWithPortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssociateProductWithPortfolioRequest method.
req, resp := client.AssociateProductWithPortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) CreateConstraint added in v1.5.6

func (c *ServiceCatalog) CreateConstraint(input *CreateConstraintInput) (*CreateConstraintOutput, error)

CreateConstraint API operation for AWS Service Catalog.

Creates a new constraint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation CreateConstraint for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

  • DuplicateResourceException The specified resource is a duplicate.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.CreateConstraintInput{
		IdempotencyToken: aws.String("IdempotencyToken"),     // Required
		Parameters:       aws.String("ConstraintParameters"), // Required
		PortfolioId:      aws.String("Id"),                   // Required
		ProductId:        aws.String("Id"),                   // Required
		Type:             aws.String("ConstraintType"),       // Required
		AcceptLanguage:   aws.String("AcceptLanguage"),
		Description:      aws.String("ConstraintDescription"),
	}
	resp, err := svc.CreateConstraint(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) CreateConstraintRequest added in v1.5.6

func (c *ServiceCatalog) CreateConstraintRequest(input *CreateConstraintInput) (req *request.Request, output *CreateConstraintOutput)

CreateConstraintRequest generates a "aws/request.Request" representing the client's request for the CreateConstraint operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateConstraint for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateConstraint method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateConstraintRequest method.
req, resp := client.CreateConstraintRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) CreatePortfolio added in v1.5.6

func (c *ServiceCatalog) CreatePortfolio(input *CreatePortfolioInput) (*CreatePortfolioOutput, error)

CreatePortfolio API operation for AWS Service Catalog.

Creates a new portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation CreatePortfolio for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.CreatePortfolioInput{
		DisplayName:      aws.String("PortfolioDisplayName"), // Required
		IdempotencyToken: aws.String("IdempotencyToken"),     // Required
		ProviderName:     aws.String("ProviderName"),         // Required
		AcceptLanguage:   aws.String("AcceptLanguage"),
		Description:      aws.String("PortfolioDescription"),
		Tags: []*servicecatalog.Tag{
			{ // Required
				Key:   aws.String("TagKey"),   // Required
				Value: aws.String("TagValue"), // Required
			},
			// More values...
		},
	}
	resp, err := svc.CreatePortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) CreatePortfolioRequest added in v1.5.6

func (c *ServiceCatalog) CreatePortfolioRequest(input *CreatePortfolioInput) (req *request.Request, output *CreatePortfolioOutput)

CreatePortfolioRequest generates a "aws/request.Request" representing the client's request for the CreatePortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreatePortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreatePortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreatePortfolioRequest method.
req, resp := client.CreatePortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) CreatePortfolioShare added in v1.5.6

func (c *ServiceCatalog) CreatePortfolioShare(input *CreatePortfolioShareInput) (*CreatePortfolioShareOutput, error)

CreatePortfolioShare API operation for AWS Service Catalog.

Creates a new portfolio share.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation CreatePortfolioShare for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.CreatePortfolioShareInput{
		AccountId:      aws.String("AccountId"), // Required
		PortfolioId:    aws.String("Id"),        // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.CreatePortfolioShare(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) CreatePortfolioShareRequest added in v1.5.6

func (c *ServiceCatalog) CreatePortfolioShareRequest(input *CreatePortfolioShareInput) (req *request.Request, output *CreatePortfolioShareOutput)

CreatePortfolioShareRequest generates a "aws/request.Request" representing the client's request for the CreatePortfolioShare operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreatePortfolioShare for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreatePortfolioShare method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreatePortfolioShareRequest method.
req, resp := client.CreatePortfolioShareRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) CreateProduct added in v1.5.6

func (c *ServiceCatalog) CreateProduct(input *CreateProductInput) (*CreateProductOutput, error)

CreateProduct API operation for AWS Service Catalog.

Creates a new product.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation CreateProduct for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.CreateProductInput{
		IdempotencyToken: aws.String("IdempotencyToken"), // Required
		Name:             aws.String("ProductViewName"),  // Required
		Owner:            aws.String("ProductViewOwner"), // Required
		ProductType:      aws.String("ProductType"),      // Required
		ProvisioningArtifactParameters: &servicecatalog.ProvisioningArtifactProperties{ // Required
			Info: map[string]*string{ // Required
				"Key": aws.String("ProvisioningArtifactInfoValue"), // Required
				// More values...
			},
			Description: aws.String("ProvisioningArtifactDescription"),
			Name:        aws.String("ProvisioningArtifactName"),
			Type:        aws.String("ProvisioningArtifactType"),
		},
		AcceptLanguage:     aws.String("AcceptLanguage"),
		Description:        aws.String("ProductViewShortDescription"),
		Distributor:        aws.String("ProductViewOwner"),
		SupportDescription: aws.String("SupportDescription"),
		SupportEmail:       aws.String("SupportEmail"),
		SupportUrl:         aws.String("SupportUrl"),
		Tags: []*servicecatalog.Tag{
			{ // Required
				Key:   aws.String("TagKey"),   // Required
				Value: aws.String("TagValue"), // Required
			},
			// More values...
		},
	}
	resp, err := svc.CreateProduct(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) CreateProductRequest added in v1.5.6

func (c *ServiceCatalog) CreateProductRequest(input *CreateProductInput) (req *request.Request, output *CreateProductOutput)

CreateProductRequest generates a "aws/request.Request" representing the client's request for the CreateProduct operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateProduct for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateProduct method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateProductRequest method.
req, resp := client.CreateProductRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) CreateProvisioningArtifact added in v1.5.6

CreateProvisioningArtifact API operation for AWS Service Catalog.

Create a new provisioning artifact for the specified product. This operation will not work with a product that has been shared with you.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation CreateProvisioningArtifact for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.CreateProvisioningArtifactInput{
		IdempotencyToken: aws.String("IdempotencyToken"), // Required
		Parameters: &servicecatalog.ProvisioningArtifactProperties{ // Required
			Info: map[string]*string{ // Required
				"Key": aws.String("ProvisioningArtifactInfoValue"), // Required
				// More values...
			},
			Description: aws.String("ProvisioningArtifactDescription"),
			Name:        aws.String("ProvisioningArtifactName"),
			Type:        aws.String("ProvisioningArtifactType"),
		},
		ProductId:      aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.CreateProvisioningArtifact(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) CreateProvisioningArtifactRequest added in v1.5.6

func (c *ServiceCatalog) CreateProvisioningArtifactRequest(input *CreateProvisioningArtifactInput) (req *request.Request, output *CreateProvisioningArtifactOutput)

CreateProvisioningArtifactRequest generates a "aws/request.Request" representing the client's request for the CreateProvisioningArtifact operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateProvisioningArtifact for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateProvisioningArtifact method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateProvisioningArtifactRequest method.
req, resp := client.CreateProvisioningArtifactRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DeleteConstraint added in v1.5.6

func (c *ServiceCatalog) DeleteConstraint(input *DeleteConstraintInput) (*DeleteConstraintOutput, error)

DeleteConstraint API operation for AWS Service Catalog.

Deletes the specified constraint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DeleteConstraint for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DeleteConstraintInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DeleteConstraint(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DeleteConstraintRequest added in v1.5.6

func (c *ServiceCatalog) DeleteConstraintRequest(input *DeleteConstraintInput) (req *request.Request, output *DeleteConstraintOutput)

DeleteConstraintRequest generates a "aws/request.Request" representing the client's request for the DeleteConstraint operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteConstraint for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteConstraint method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteConstraintRequest method.
req, resp := client.DeleteConstraintRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DeletePortfolio added in v1.5.6

func (c *ServiceCatalog) DeletePortfolio(input *DeletePortfolioInput) (*DeletePortfolioOutput, error)

DeletePortfolio API operation for AWS Service Catalog.

Deletes the specified portfolio. This operation will not work with a portfolio that has been shared with you or if it has products, users, constraints, or shared accounts associated with it.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DeletePortfolio for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceInUseException The operation was requested against a resource that is currently in use. Free the resource from use and retry the operation.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DeletePortfolioInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DeletePortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DeletePortfolioRequest added in v1.5.6

func (c *ServiceCatalog) DeletePortfolioRequest(input *DeletePortfolioInput) (req *request.Request, output *DeletePortfolioOutput)

DeletePortfolioRequest generates a "aws/request.Request" representing the client's request for the DeletePortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeletePortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeletePortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeletePortfolioRequest method.
req, resp := client.DeletePortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DeletePortfolioShare added in v1.5.6

func (c *ServiceCatalog) DeletePortfolioShare(input *DeletePortfolioShareInput) (*DeletePortfolioShareOutput, error)

DeletePortfolioShare API operation for AWS Service Catalog.

Deletes the specified portfolio share.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DeletePortfolioShare for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DeletePortfolioShareInput{
		AccountId:      aws.String("AccountId"), // Required
		PortfolioId:    aws.String("Id"),        // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DeletePortfolioShare(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DeletePortfolioShareRequest added in v1.5.6

func (c *ServiceCatalog) DeletePortfolioShareRequest(input *DeletePortfolioShareInput) (req *request.Request, output *DeletePortfolioShareOutput)

DeletePortfolioShareRequest generates a "aws/request.Request" representing the client's request for the DeletePortfolioShare operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeletePortfolioShare for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeletePortfolioShare method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeletePortfolioShareRequest method.
req, resp := client.DeletePortfolioShareRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DeleteProduct added in v1.5.6

func (c *ServiceCatalog) DeleteProduct(input *DeleteProductInput) (*DeleteProductOutput, error)

DeleteProduct API operation for AWS Service Catalog.

Deletes the specified product. This operation will not work with a product that has been shared with you or is associated with a portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DeleteProduct for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • ResourceInUseException The operation was requested against a resource that is currently in use. Free the resource from use and retry the operation.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DeleteProductInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DeleteProduct(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DeleteProductRequest added in v1.5.6

func (c *ServiceCatalog) DeleteProductRequest(input *DeleteProductInput) (req *request.Request, output *DeleteProductOutput)

DeleteProductRequest generates a "aws/request.Request" representing the client's request for the DeleteProduct operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteProduct for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteProduct method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteProductRequest method.
req, resp := client.DeleteProductRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DeleteProvisioningArtifact added in v1.5.6

DeleteProvisioningArtifact API operation for AWS Service Catalog.

Deletes the specified provisioning artifact. This operation will not work on a provisioning artifact associated with a product that has been shared with you, or on the last provisioning artifact associated with a product (a product must have at least one provisioning artifact).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DeleteProvisioningArtifact for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • ResourceInUseException The operation was requested against a resource that is currently in use. Free the resource from use and retry the operation.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DeleteProvisioningArtifactInput{
		ProductId:              aws.String("Id"), // Required
		ProvisioningArtifactId: aws.String("Id"), // Required
		AcceptLanguage:         aws.String("AcceptLanguage"),
	}
	resp, err := svc.DeleteProvisioningArtifact(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DeleteProvisioningArtifactRequest added in v1.5.6

func (c *ServiceCatalog) DeleteProvisioningArtifactRequest(input *DeleteProvisioningArtifactInput) (req *request.Request, output *DeleteProvisioningArtifactOutput)

DeleteProvisioningArtifactRequest generates a "aws/request.Request" representing the client's request for the DeleteProvisioningArtifact operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteProvisioningArtifact for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteProvisioningArtifact method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteProvisioningArtifactRequest method.
req, resp := client.DeleteProvisioningArtifactRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DescribeConstraint added in v1.5.6

func (c *ServiceCatalog) DescribeConstraint(input *DescribeConstraintInput) (*DescribeConstraintOutput, error)

DescribeConstraint API operation for AWS Service Catalog.

Retrieves detailed information for a specified constraint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DescribeConstraint for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DescribeConstraintInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DescribeConstraint(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DescribeConstraintRequest added in v1.5.6

func (c *ServiceCatalog) DescribeConstraintRequest(input *DescribeConstraintInput) (req *request.Request, output *DescribeConstraintOutput)

DescribeConstraintRequest generates a "aws/request.Request" representing the client's request for the DescribeConstraint operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeConstraint for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeConstraint method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeConstraintRequest method.
req, resp := client.DescribeConstraintRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DescribePortfolio added in v1.5.6

func (c *ServiceCatalog) DescribePortfolio(input *DescribePortfolioInput) (*DescribePortfolioOutput, error)

DescribePortfolio API operation for AWS Service Catalog.

Retrieves detailed information and any tags associated with the specified portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DescribePortfolio for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DescribePortfolioInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DescribePortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DescribePortfolioRequest added in v1.5.6

func (c *ServiceCatalog) DescribePortfolioRequest(input *DescribePortfolioInput) (req *request.Request, output *DescribePortfolioOutput)

DescribePortfolioRequest generates a "aws/request.Request" representing the client's request for the DescribePortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribePortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribePortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribePortfolioRequest method.
req, resp := client.DescribePortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DescribeProduct

func (c *ServiceCatalog) DescribeProduct(input *DescribeProductInput) (*DescribeProductOutput, error)

DescribeProduct API operation for AWS Service Catalog.

Retrieves information about a specified product.

This operation is functionally identical to DescribeProductView except that it takes as input ProductId instead of ProductViewId.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DescribeProduct for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DescribeProductInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DescribeProduct(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DescribeProductAsAdmin added in v1.5.6

func (c *ServiceCatalog) DescribeProductAsAdmin(input *DescribeProductAsAdminInput) (*DescribeProductAsAdminOutput, error)

DescribeProductAsAdmin API operation for AWS Service Catalog.

Retrieves information about a specified product, run with administrator access.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DescribeProductAsAdmin for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DescribeProductAsAdminInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DescribeProductAsAdmin(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DescribeProductAsAdminRequest added in v1.5.6

func (c *ServiceCatalog) DescribeProductAsAdminRequest(input *DescribeProductAsAdminInput) (req *request.Request, output *DescribeProductAsAdminOutput)

DescribeProductAsAdminRequest generates a "aws/request.Request" representing the client's request for the DescribeProductAsAdmin operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeProductAsAdmin for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeProductAsAdmin method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeProductAsAdminRequest method.
req, resp := client.DescribeProductAsAdminRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DescribeProductRequest

func (c *ServiceCatalog) DescribeProductRequest(input *DescribeProductInput) (req *request.Request, output *DescribeProductOutput)

DescribeProductRequest generates a "aws/request.Request" representing the client's request for the DescribeProduct operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeProduct for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeProduct method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeProductRequest method.
req, resp := client.DescribeProductRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DescribeProductView

func (c *ServiceCatalog) DescribeProductView(input *DescribeProductViewInput) (*DescribeProductViewOutput, error)

DescribeProductView API operation for AWS Service Catalog.

Retrieves information about a specified product.

This operation is functionally identical to DescribeProduct except that it takes as input ProductViewId instead of ProductId.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DescribeProductView for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DescribeProductViewInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DescribeProductView(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DescribeProductViewRequest

func (c *ServiceCatalog) DescribeProductViewRequest(input *DescribeProductViewInput) (req *request.Request, output *DescribeProductViewOutput)

DescribeProductViewRequest generates a "aws/request.Request" representing the client's request for the DescribeProductView operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeProductView for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeProductView method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeProductViewRequest method.
req, resp := client.DescribeProductViewRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DescribeProvisioningArtifact added in v1.5.6

DescribeProvisioningArtifact API operation for AWS Service Catalog.

Retrieves detailed information about the specified provisioning artifact.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DescribeProvisioningArtifact for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DescribeProvisioningArtifactInput{
		ProductId:              aws.String("Id"), // Required
		ProvisioningArtifactId: aws.String("Id"), // Required
		AcceptLanguage:         aws.String("AcceptLanguage"),
	}
	resp, err := svc.DescribeProvisioningArtifact(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DescribeProvisioningArtifactRequest added in v1.5.6

func (c *ServiceCatalog) DescribeProvisioningArtifactRequest(input *DescribeProvisioningArtifactInput) (req *request.Request, output *DescribeProvisioningArtifactOutput)

DescribeProvisioningArtifactRequest generates a "aws/request.Request" representing the client's request for the DescribeProvisioningArtifact operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeProvisioningArtifact for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeProvisioningArtifact method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeProvisioningArtifactRequest method.
req, resp := client.DescribeProvisioningArtifactRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DescribeProvisioningParameters

DescribeProvisioningParameters API operation for AWS Service Catalog.

Provides information about parameters required to provision a specified product in a specified manner. Use this operation to obtain the list of ProvisioningArtifactParameters parameters available to call the ProvisionProduct operation for the specified product.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DescribeProvisioningParameters for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DescribeProvisioningParametersInput{
		ProductId:              aws.String("Id"), // Required
		ProvisioningArtifactId: aws.String("Id"), // Required
		AcceptLanguage:         aws.String("AcceptLanguage"),
		PathId:                 aws.String("Id"),
	}
	resp, err := svc.DescribeProvisioningParameters(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DescribeProvisioningParametersRequest

func (c *ServiceCatalog) DescribeProvisioningParametersRequest(input *DescribeProvisioningParametersInput) (req *request.Request, output *DescribeProvisioningParametersOutput)

DescribeProvisioningParametersRequest generates a "aws/request.Request" representing the client's request for the DescribeProvisioningParameters operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeProvisioningParameters for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeProvisioningParameters method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeProvisioningParametersRequest method.
req, resp := client.DescribeProvisioningParametersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DescribeRecord

func (c *ServiceCatalog) DescribeRecord(input *DescribeRecordInput) (*DescribeRecordOutput, error)

DescribeRecord API operation for AWS Service Catalog.

Retrieves a paginated list of the full details of a specific request. Use this operation after calling a request operation (ProvisionProduct, TerminateProvisionedProduct, or UpdateProvisionedProduct).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DescribeRecord for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DescribeRecordInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
		PageSize:       aws.Int64(1),
		PageToken:      aws.String("PageToken"),
	}
	resp, err := svc.DescribeRecord(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DescribeRecordRequest

func (c *ServiceCatalog) DescribeRecordRequest(input *DescribeRecordInput) (req *request.Request, output *DescribeRecordOutput)

DescribeRecordRequest generates a "aws/request.Request" representing the client's request for the DescribeRecord operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeRecord for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeRecord method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeRecordRequest method.
req, resp := client.DescribeRecordRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DisassociatePrincipalFromPortfolio added in v1.5.6

DisassociatePrincipalFromPortfolio API operation for AWS Service Catalog.

Disassociates a previously associated principal ARN from a specified portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DisassociatePrincipalFromPortfolio for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DisassociatePrincipalFromPortfolioInput{
		PortfolioId:    aws.String("Id"),           // Required
		PrincipalARN:   aws.String("PrincipalARN"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DisassociatePrincipalFromPortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DisassociatePrincipalFromPortfolioRequest added in v1.5.6

func (c *ServiceCatalog) DisassociatePrincipalFromPortfolioRequest(input *DisassociatePrincipalFromPortfolioInput) (req *request.Request, output *DisassociatePrincipalFromPortfolioOutput)

DisassociatePrincipalFromPortfolioRequest generates a "aws/request.Request" representing the client's request for the DisassociatePrincipalFromPortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisassociatePrincipalFromPortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisassociatePrincipalFromPortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisassociatePrincipalFromPortfolioRequest method.
req, resp := client.DisassociatePrincipalFromPortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) DisassociateProductFromPortfolio added in v1.5.6

DisassociateProductFromPortfolio API operation for AWS Service Catalog.

Disassociates the specified product from the specified portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation DisassociateProductFromPortfolio for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.DisassociateProductFromPortfolioInput{
		PortfolioId:    aws.String("Id"), // Required
		ProductId:      aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.DisassociateProductFromPortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) DisassociateProductFromPortfolioRequest added in v1.5.6

func (c *ServiceCatalog) DisassociateProductFromPortfolioRequest(input *DisassociateProductFromPortfolioInput) (req *request.Request, output *DisassociateProductFromPortfolioOutput)

DisassociateProductFromPortfolioRequest generates a "aws/request.Request" representing the client's request for the DisassociateProductFromPortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisassociateProductFromPortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisassociateProductFromPortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisassociateProductFromPortfolioRequest method.
req, resp := client.DisassociateProductFromPortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListAcceptedPortfolioShares added in v1.5.6

ListAcceptedPortfolioShares API operation for AWS Service Catalog.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListAcceptedPortfolioShares for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListAcceptedPortfolioSharesInput{
		AcceptLanguage: aws.String("AcceptLanguage"),
		PageSize:       aws.Int64(1),
		PageToken:      aws.String("PageToken"),
	}
	resp, err := svc.ListAcceptedPortfolioShares(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListAcceptedPortfolioSharesRequest added in v1.5.6

func (c *ServiceCatalog) ListAcceptedPortfolioSharesRequest(input *ListAcceptedPortfolioSharesInput) (req *request.Request, output *ListAcceptedPortfolioSharesOutput)

ListAcceptedPortfolioSharesRequest generates a "aws/request.Request" representing the client's request for the ListAcceptedPortfolioShares operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListAcceptedPortfolioShares for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListAcceptedPortfolioShares method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListAcceptedPortfolioSharesRequest method.
req, resp := client.ListAcceptedPortfolioSharesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListConstraintsForPortfolio added in v1.5.6

ListConstraintsForPortfolio API operation for AWS Service Catalog.

Retrieves detailed constraint information for the specified portfolio and product.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListConstraintsForPortfolio for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListConstraintsForPortfolioInput{
		PortfolioId:    aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
		PageSize:       aws.Int64(1),
		PageToken:      aws.String("PageToken"),
		ProductId:      aws.String("Id"),
	}
	resp, err := svc.ListConstraintsForPortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListConstraintsForPortfolioRequest added in v1.5.6

func (c *ServiceCatalog) ListConstraintsForPortfolioRequest(input *ListConstraintsForPortfolioInput) (req *request.Request, output *ListConstraintsForPortfolioOutput)

ListConstraintsForPortfolioRequest generates a "aws/request.Request" representing the client's request for the ListConstraintsForPortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListConstraintsForPortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListConstraintsForPortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListConstraintsForPortfolioRequest method.
req, resp := client.ListConstraintsForPortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListLaunchPaths

func (c *ServiceCatalog) ListLaunchPaths(input *ListLaunchPathsInput) (*ListLaunchPathsOutput, error)

ListLaunchPaths API operation for AWS Service Catalog.

Returns a paginated list of all paths to a 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListLaunchPaths for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListLaunchPathsInput{
		ProductId:      aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
		PageSize:       aws.Int64(1),
		PageToken:      aws.String("PageToken"),
	}
	resp, err := svc.ListLaunchPaths(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListLaunchPathsRequest

func (c *ServiceCatalog) ListLaunchPathsRequest(input *ListLaunchPathsInput) (req *request.Request, output *ListLaunchPathsOutput)

ListLaunchPathsRequest generates a "aws/request.Request" representing the client's request for the ListLaunchPaths operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListLaunchPaths for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListLaunchPaths method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListLaunchPathsRequest method.
req, resp := client.ListLaunchPathsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListPortfolioAccess added in v1.5.6

func (c *ServiceCatalog) ListPortfolioAccess(input *ListPortfolioAccessInput) (*ListPortfolioAccessOutput, error)

ListPortfolioAccess API operation for AWS Service Catalog.

Lists the account IDs that have been authorized sharing of the specified portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListPortfolioAccess for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListPortfolioAccessInput{
		PortfolioId:    aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.ListPortfolioAccess(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListPortfolioAccessRequest added in v1.5.6

func (c *ServiceCatalog) ListPortfolioAccessRequest(input *ListPortfolioAccessInput) (req *request.Request, output *ListPortfolioAccessOutput)

ListPortfolioAccessRequest generates a "aws/request.Request" representing the client's request for the ListPortfolioAccess operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListPortfolioAccess for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListPortfolioAccess method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListPortfolioAccessRequest method.
req, resp := client.ListPortfolioAccessRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListPortfolios added in v1.5.6

func (c *ServiceCatalog) ListPortfolios(input *ListPortfoliosInput) (*ListPortfoliosOutput, error)

ListPortfolios API operation for AWS Service Catalog.

Lists all portfolios in the catalog.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListPortfolios for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListPortfoliosInput{
		AcceptLanguage: aws.String("AcceptLanguage"),
		PageSize:       aws.Int64(1),
		PageToken:      aws.String("PageToken"),
	}
	resp, err := svc.ListPortfolios(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListPortfoliosForProduct added in v1.5.6

func (c *ServiceCatalog) ListPortfoliosForProduct(input *ListPortfoliosForProductInput) (*ListPortfoliosForProductOutput, error)

ListPortfoliosForProduct API operation for AWS Service Catalog.

Lists all portfolios that the specified product is associated with.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListPortfoliosForProduct for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListPortfoliosForProductInput{
		ProductId:      aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
		PageSize:       aws.Int64(1),
		PageToken:      aws.String("PageToken"),
	}
	resp, err := svc.ListPortfoliosForProduct(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListPortfoliosForProductRequest added in v1.5.6

func (c *ServiceCatalog) ListPortfoliosForProductRequest(input *ListPortfoliosForProductInput) (req *request.Request, output *ListPortfoliosForProductOutput)

ListPortfoliosForProductRequest generates a "aws/request.Request" representing the client's request for the ListPortfoliosForProduct operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListPortfoliosForProduct for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListPortfoliosForProduct method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListPortfoliosForProductRequest method.
req, resp := client.ListPortfoliosForProductRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListPortfoliosRequest added in v1.5.6

func (c *ServiceCatalog) ListPortfoliosRequest(input *ListPortfoliosInput) (req *request.Request, output *ListPortfoliosOutput)

ListPortfoliosRequest generates a "aws/request.Request" representing the client's request for the ListPortfolios operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListPortfolios for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListPortfolios method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListPortfoliosRequest method.
req, resp := client.ListPortfoliosRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListPrincipalsForPortfolio added in v1.5.6

ListPrincipalsForPortfolio API operation for AWS Service Catalog.

Lists all principal ARNs associated with the specified portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListPrincipalsForPortfolio for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListPrincipalsForPortfolioInput{
		PortfolioId:    aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
		PageSize:       aws.Int64(1),
		PageToken:      aws.String("PageToken"),
	}
	resp, err := svc.ListPrincipalsForPortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListPrincipalsForPortfolioRequest added in v1.5.6

func (c *ServiceCatalog) ListPrincipalsForPortfolioRequest(input *ListPrincipalsForPortfolioInput) (req *request.Request, output *ListPrincipalsForPortfolioOutput)

ListPrincipalsForPortfolioRequest generates a "aws/request.Request" representing the client's request for the ListPrincipalsForPortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListPrincipalsForPortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListPrincipalsForPortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListPrincipalsForPortfolioRequest method.
req, resp := client.ListPrincipalsForPortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListProvisioningArtifacts added in v1.5.6

ListProvisioningArtifacts API operation for AWS Service Catalog.

Lists all provisioning artifacts associated with the specified product.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListProvisioningArtifacts for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListProvisioningArtifactsInput{
		ProductId:      aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.ListProvisioningArtifacts(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListProvisioningArtifactsRequest added in v1.5.6

func (c *ServiceCatalog) ListProvisioningArtifactsRequest(input *ListProvisioningArtifactsInput) (req *request.Request, output *ListProvisioningArtifactsOutput)

ListProvisioningArtifactsRequest generates a "aws/request.Request" representing the client's request for the ListProvisioningArtifacts operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListProvisioningArtifacts for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListProvisioningArtifacts method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListProvisioningArtifactsRequest method.
req, resp := client.ListProvisioningArtifactsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ListRecordHistory

func (c *ServiceCatalog) ListRecordHistory(input *ListRecordHistoryInput) (*ListRecordHistoryOutput, error)

ListRecordHistory API operation for AWS Service Catalog.

Returns a paginated list of all performed requests, in the form of RecordDetails objects that are filtered as specified.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ListRecordHistory for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ListRecordHistoryInput{
		AcceptLanguage: aws.String("AcceptLanguage"),
		AccessLevelFilter: &servicecatalog.AccessLevelFilter{
			Key:   aws.String("AccessLevelFilterKey"),
			Value: aws.String("AccessLevelFilterValue"),
		},
		PageSize:  aws.Int64(1),
		PageToken: aws.String("PageToken"),
		SearchFilter: &servicecatalog.ListRecordHistorySearchFilter{
			Key:   aws.String("SearchFilterKey"),
			Value: aws.String("SearchFilterValue"),
		},
	}
	resp, err := svc.ListRecordHistory(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ListRecordHistoryRequest

func (c *ServiceCatalog) ListRecordHistoryRequest(input *ListRecordHistoryInput) (req *request.Request, output *ListRecordHistoryOutput)

ListRecordHistoryRequest generates a "aws/request.Request" representing the client's request for the ListRecordHistory operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListRecordHistory for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListRecordHistory method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListRecordHistoryRequest method.
req, resp := client.ListRecordHistoryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ProvisionProduct

func (c *ServiceCatalog) ProvisionProduct(input *ProvisionProductInput) (*ProvisionProductOutput, error)

ProvisionProduct API operation for AWS Service Catalog.

Requests a Provision of a specified product. A ProvisionedProduct is a resourced instance for a product. For example, provisioning a CloudFormation-template-backed product results in launching a CloudFormation stack and all the underlying resources that come with it.

You can check the status of this request using the DescribeRecord operation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ProvisionProduct for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

  • DuplicateResourceException The specified resource is a duplicate.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ProvisionProductInput{
		ProductId:              aws.String("Id"),                     // Required
		ProvisionToken:         aws.String("IdempotencyToken"),       // Required
		ProvisionedProductName: aws.String("ProvisionedProductName"), // Required
		ProvisioningArtifactId: aws.String("Id"),                     // Required
		AcceptLanguage:         aws.String("AcceptLanguage"),
		NotificationArns: []*string{
			aws.String("NotificationArn"), // Required
			// More values...
		},
		PathId: aws.String("Id"),
		ProvisioningParameters: []*servicecatalog.ProvisioningParameter{
			{ // Required
				Key:   aws.String("ParameterKey"),
				Value: aws.String("ParameterValue"),
			},
			// More values...
		},
		Tags: []*servicecatalog.Tag{
			{ // Required
				Key:   aws.String("TagKey"),   // Required
				Value: aws.String("TagValue"), // Required
			},
			// More values...
		},
	}
	resp, err := svc.ProvisionProduct(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ProvisionProductRequest

func (c *ServiceCatalog) ProvisionProductRequest(input *ProvisionProductInput) (req *request.Request, output *ProvisionProductOutput)

ProvisionProductRequest generates a "aws/request.Request" representing the client's request for the ProvisionProduct operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ProvisionProduct for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ProvisionProduct method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ProvisionProductRequest method.
req, resp := client.ProvisionProductRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) RejectPortfolioShare added in v1.5.6

func (c *ServiceCatalog) RejectPortfolioShare(input *RejectPortfolioShareInput) (*RejectPortfolioShareOutput, error)

RejectPortfolioShare API operation for AWS Service Catalog.

Rejects an offer to share a portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation RejectPortfolioShare for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.RejectPortfolioShareInput{
		PortfolioId:    aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
	}
	resp, err := svc.RejectPortfolioShare(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) RejectPortfolioShareRequest added in v1.5.6

func (c *ServiceCatalog) RejectPortfolioShareRequest(input *RejectPortfolioShareInput) (req *request.Request, output *RejectPortfolioShareOutput)

RejectPortfolioShareRequest generates a "aws/request.Request" representing the client's request for the RejectPortfolioShare operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RejectPortfolioShare for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RejectPortfolioShare method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RejectPortfolioShareRequest method.
req, resp := client.RejectPortfolioShareRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) ScanProvisionedProducts

func (c *ServiceCatalog) ScanProvisionedProducts(input *ScanProvisionedProductsInput) (*ScanProvisionedProductsOutput, error)

ScanProvisionedProducts API operation for AWS Service Catalog.

Returns a paginated list of all the ProvisionedProduct objects that are currently available (not terminated).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation ScanProvisionedProducts for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.ScanProvisionedProductsInput{
		AcceptLanguage: aws.String("AcceptLanguage"),
		AccessLevelFilter: &servicecatalog.AccessLevelFilter{
			Key:   aws.String("AccessLevelFilterKey"),
			Value: aws.String("AccessLevelFilterValue"),
		},
		PageSize:  aws.Int64(1),
		PageToken: aws.String("PageToken"),
	}
	resp, err := svc.ScanProvisionedProducts(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) ScanProvisionedProductsRequest

func (c *ServiceCatalog) ScanProvisionedProductsRequest(input *ScanProvisionedProductsInput) (req *request.Request, output *ScanProvisionedProductsOutput)

ScanProvisionedProductsRequest generates a "aws/request.Request" representing the client's request for the ScanProvisionedProducts operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ScanProvisionedProducts for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ScanProvisionedProducts method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ScanProvisionedProductsRequest method.
req, resp := client.ScanProvisionedProductsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) SearchProducts

func (c *ServiceCatalog) SearchProducts(input *SearchProductsInput) (*SearchProductsOutput, error)

SearchProducts API operation for AWS Service Catalog.

Returns a paginated list all of the Products objects to which the caller has access.

The output of this operation can be used as input for other operations, such as DescribeProductView.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation SearchProducts for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.SearchProductsInput{
		AcceptLanguage: aws.String("AcceptLanguage"),
		Filters: map[string][]*string{
			"Key": { // Required
				aws.String("ProductViewFilterValue"), // Required
				// More values...
			},
			// More values...
		},
		PageSize:  aws.Int64(1),
		PageToken: aws.String("PageToken"),
		SortBy:    aws.String("ProductViewSortBy"),
		SortOrder: aws.String("SortOrder"),
	}
	resp, err := svc.SearchProducts(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) SearchProductsAsAdmin added in v1.5.6

func (c *ServiceCatalog) SearchProductsAsAdmin(input *SearchProductsAsAdminInput) (*SearchProductsAsAdminOutput, error)

SearchProductsAsAdmin API operation for AWS Service Catalog.

Retrieves summary and status information about all products created within the caller's account. If a portfolio ID is provided, this operation retrieves information for only those products that are associated with the specified portfolio.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation SearchProductsAsAdmin for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.SearchProductsAsAdminInput{
		AcceptLanguage: aws.String("AcceptLanguage"),
		Filters: map[string][]*string{
			"Key": { // Required
				aws.String("ProductViewFilterValue"), // Required
				// More values...
			},
			// More values...
		},
		PageSize:      aws.Int64(1),
		PageToken:     aws.String("PageToken"),
		PortfolioId:   aws.String("Id"),
		ProductSource: aws.String("ProductSource"),
		SortBy:        aws.String("ProductViewSortBy"),
		SortOrder:     aws.String("SortOrder"),
	}
	resp, err := svc.SearchProductsAsAdmin(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) SearchProductsAsAdminRequest added in v1.5.6

func (c *ServiceCatalog) SearchProductsAsAdminRequest(input *SearchProductsAsAdminInput) (req *request.Request, output *SearchProductsAsAdminOutput)

SearchProductsAsAdminRequest generates a "aws/request.Request" representing the client's request for the SearchProductsAsAdmin operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See SearchProductsAsAdmin for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SearchProductsAsAdmin method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SearchProductsAsAdminRequest method.
req, resp := client.SearchProductsAsAdminRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) SearchProductsRequest

func (c *ServiceCatalog) SearchProductsRequest(input *SearchProductsInput) (req *request.Request, output *SearchProductsOutput)

SearchProductsRequest generates a "aws/request.Request" representing the client's request for the SearchProducts operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See SearchProducts for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SearchProducts method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SearchProductsRequest method.
req, resp := client.SearchProductsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) TerminateProvisionedProduct

TerminateProvisionedProduct API operation for AWS Service Catalog.

Requests termination of an existing ProvisionedProduct object. If there are Tags associated with the object, they are terminated when the ProvisionedProduct object is terminated.

This operation does not delete any records associated with the ProvisionedProduct object.

You can check the status of this request using the DescribeRecord operation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation TerminateProvisionedProduct for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.TerminateProvisionedProductInput{
		TerminateToken:         aws.String("IdempotencyToken"), // Required
		AcceptLanguage:         aws.String("AcceptLanguage"),
		IgnoreErrors:           aws.Bool(true),
		ProvisionedProductId:   aws.String("Id"),
		ProvisionedProductName: aws.String("ProvisionedProductNameOrArn"),
	}
	resp, err := svc.TerminateProvisionedProduct(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) TerminateProvisionedProductRequest

func (c *ServiceCatalog) TerminateProvisionedProductRequest(input *TerminateProvisionedProductInput) (req *request.Request, output *TerminateProvisionedProductOutput)

TerminateProvisionedProductRequest generates a "aws/request.Request" representing the client's request for the TerminateProvisionedProduct operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See TerminateProvisionedProduct for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the TerminateProvisionedProduct method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the TerminateProvisionedProductRequest method.
req, resp := client.TerminateProvisionedProductRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) UpdateConstraint added in v1.5.6

func (c *ServiceCatalog) UpdateConstraint(input *UpdateConstraintInput) (*UpdateConstraintOutput, error)

UpdateConstraint API operation for AWS Service Catalog.

Updates an existing constraint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation UpdateConstraint for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.UpdateConstraintInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
		Description:    aws.String("ConstraintDescription"),
	}
	resp, err := svc.UpdateConstraint(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) UpdateConstraintRequest added in v1.5.6

func (c *ServiceCatalog) UpdateConstraintRequest(input *UpdateConstraintInput) (req *request.Request, output *UpdateConstraintOutput)

UpdateConstraintRequest generates a "aws/request.Request" representing the client's request for the UpdateConstraint operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdateConstraint for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateConstraint method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateConstraintRequest method.
req, resp := client.UpdateConstraintRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) UpdatePortfolio added in v1.5.6

func (c *ServiceCatalog) UpdatePortfolio(input *UpdatePortfolioInput) (*UpdatePortfolioOutput, error)

UpdatePortfolio API operation for AWS Service Catalog.

Updates the specified portfolio's details. This operation will not work with a product that has been shared with you.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation UpdatePortfolio for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

  • LimitExceededException The current limits of the service would have been exceeded by this operation. Reduce the resource use or increase the service limits and retry the operation.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.UpdatePortfolioInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
		AddTags: []*servicecatalog.Tag{
			{ // Required
				Key:   aws.String("TagKey"),   // Required
				Value: aws.String("TagValue"), // Required
			},
			// More values...
		},
		Description:  aws.String("PortfolioDescription"),
		DisplayName:  aws.String("PortfolioDisplayName"),
		ProviderName: aws.String("ProviderName"),
		RemoveTags: []*string{
			aws.String("TagKey"), // Required
			// More values...
		},
	}
	resp, err := svc.UpdatePortfolio(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) UpdatePortfolioRequest added in v1.5.6

func (c *ServiceCatalog) UpdatePortfolioRequest(input *UpdatePortfolioInput) (req *request.Request, output *UpdatePortfolioOutput)

UpdatePortfolioRequest generates a "aws/request.Request" representing the client's request for the UpdatePortfolio operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdatePortfolio for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdatePortfolio method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdatePortfolioRequest method.
req, resp := client.UpdatePortfolioRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) UpdateProduct added in v1.5.6

func (c *ServiceCatalog) UpdateProduct(input *UpdateProductInput) (*UpdateProductOutput, error)

UpdateProduct API operation for AWS Service Catalog.

Updates an existing product.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation UpdateProduct for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.UpdateProductInput{
		Id:             aws.String("Id"), // Required
		AcceptLanguage: aws.String("AcceptLanguage"),
		AddTags: []*servicecatalog.Tag{
			{ // Required
				Key:   aws.String("TagKey"),   // Required
				Value: aws.String("TagValue"), // Required
			},
			// More values...
		},
		Description: aws.String("ProductViewShortDescription"),
		Distributor: aws.String("ProductViewOwner"),
		Name:        aws.String("ProductViewName"),
		Owner:       aws.String("ProductViewOwner"),
		RemoveTags: []*string{
			aws.String("TagKey"), // Required
			// More values...
		},
		SupportDescription: aws.String("SupportDescription"),
		SupportEmail:       aws.String("SupportEmail"),
		SupportUrl:         aws.String("SupportUrl"),
	}
	resp, err := svc.UpdateProduct(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) UpdateProductRequest added in v1.5.6

func (c *ServiceCatalog) UpdateProductRequest(input *UpdateProductInput) (req *request.Request, output *UpdateProductOutput)

UpdateProductRequest generates a "aws/request.Request" representing the client's request for the UpdateProduct operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdateProduct for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateProduct method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateProductRequest method.
req, resp := client.UpdateProductRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) UpdateProvisionedProduct

func (c *ServiceCatalog) UpdateProvisionedProduct(input *UpdateProvisionedProductInput) (*UpdateProvisionedProductOutput, error)

UpdateProvisionedProduct API operation for AWS Service Catalog.

Requests updates to the configuration of an existing ProvisionedProduct object. If there are tags associated with the object, they cannot be updated or added with this operation. Depending on the specific updates requested, this operation may update with no interruption, with some interruption, or replace the ProvisionedProduct object entirely.

You can check the status of this request using the DescribeRecord operation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation UpdateProvisionedProduct for usage and error information.

Returned Error Codes:

  • InvalidParametersException One or more parameters provided to the operation are invalid.

  • ResourceNotFoundException The specified resource was not found.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.UpdateProvisionedProductInput{
		UpdateToken:            aws.String("IdempotencyToken"), // Required
		AcceptLanguage:         aws.String("AcceptLanguage"),
		PathId:                 aws.String("Id"),
		ProductId:              aws.String("Id"),
		ProvisionedProductId:   aws.String("Id"),
		ProvisionedProductName: aws.String("ProvisionedProductNameOrArn"),
		ProvisioningArtifactId: aws.String("Id"),
		ProvisioningParameters: []*servicecatalog.UpdateProvisioningParameter{
			{ // Required
				Key:              aws.String("ParameterKey"),
				UsePreviousValue: aws.Bool(true),
				Value:            aws.String("ParameterValue"),
			},
			// More values...
		},
	}
	resp, err := svc.UpdateProvisionedProduct(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) UpdateProvisionedProductRequest

func (c *ServiceCatalog) UpdateProvisionedProductRequest(input *UpdateProvisionedProductInput) (req *request.Request, output *UpdateProvisionedProductOutput)

UpdateProvisionedProductRequest generates a "aws/request.Request" representing the client's request for the UpdateProvisionedProduct operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdateProvisionedProduct for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateProvisionedProduct method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateProvisionedProductRequest method.
req, resp := client.UpdateProvisionedProductRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*ServiceCatalog) UpdateProvisioningArtifact added in v1.5.6

UpdateProvisioningArtifact API operation for AWS Service Catalog.

Updates an existing provisioning artifact's information. This operation will not work on a provisioning artifact associated with a product that has been shared with you.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Service Catalog's API operation UpdateProvisioningArtifact for usage and error information.

Returned Error Codes:

  • ResourceNotFoundException The specified resource was not found.

  • InvalidParametersException One or more parameters provided to the operation are invalid.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/servicecatalog"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := servicecatalog.New(sess)

	params := &servicecatalog.UpdateProvisioningArtifactInput{
		ProductId:              aws.String("Id"), // Required
		ProvisioningArtifactId: aws.String("Id"), // Required
		AcceptLanguage:         aws.String("AcceptLanguage"),
		Description:            aws.String("ProvisioningArtifactDescription"),
		Name:                   aws.String("ProvisioningArtifactName"),
	}
	resp, err := svc.UpdateProvisioningArtifact(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*ServiceCatalog) UpdateProvisioningArtifactRequest added in v1.5.6

func (c *ServiceCatalog) UpdateProvisioningArtifactRequest(input *UpdateProvisioningArtifactInput) (req *request.Request, output *UpdateProvisioningArtifactOutput)

UpdateProvisioningArtifactRequest generates a "aws/request.Request" representing the client's request for the UpdateProvisioningArtifact operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UpdateProvisioningArtifact for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateProvisioningArtifact method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateProvisioningArtifactRequest method.
req, resp := client.UpdateProvisioningArtifactRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

type Tag

type Tag struct {

	// The ProvisioningArtifactParameter.TagKey parameter from DescribeProvisioningParameters.
	//
	// Key is a required field
	Key *string `min:"1" type:"string" required:"true"`

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

Key/value pairs to associate with this provisioning. These tags are entirely discretionary and are propagated to the resources created in the provisioning.

func (Tag) GoString

func (s Tag) GoString() string

GoString returns the string representation

func (*Tag) SetKey added in v1.5.0

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetValue added in v1.5.0

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

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 TerminateProvisionedProductInput

type TerminateProvisionedProductInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

	// The identifier of the ProvisionedProduct object to terminate. You must specify
	// either ProvisionedProductName or ProvisionedProductId, but not both.
	ProvisionedProductId *string `min:"1" type:"string"`

	// The name of the ProvisionedProduct object to terminate. You must specify
	// either ProvisionedProductName or ProvisionedProductId, but not both.
	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 ProvisionedProduct
	// object is terminated, further requests to terminate the same ProvisionedProduct
	// object always return ResourceNotFound regardless of the value of TerminateToken.
	//
	// TerminateToken is a required field
	TerminateToken *string `min:"1" type:"string" required:"true" idempotencyToken:"true"`
	// contains filtered or unexported fields
}

func (TerminateProvisionedProductInput) GoString

GoString returns the string representation

func (*TerminateProvisionedProductInput) SetAcceptLanguage added in v1.5.0

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*TerminateProvisionedProductInput) SetIgnoreErrors added in v1.5.0

SetIgnoreErrors sets the IgnoreErrors field's value.

func (*TerminateProvisionedProductInput) SetProvisionedProductId added in v1.5.0

SetProvisionedProductId sets the ProvisionedProductId field's value.

func (*TerminateProvisionedProductInput) SetProvisionedProductName added in v1.5.0

SetProvisionedProductName sets the ProvisionedProductName field's value.

func (*TerminateProvisionedProductInput) SetTerminateToken added in v1.5.0

SetTerminateToken sets the TerminateToken field's value.

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 {

	// The detailed result of the TerminateProvisionedProduct request, containing
	// the inputs made to that request, the current state of the request, a pointer
	// to the ProvisionedProduct object that the request is modifying, and a list
	// of any errors that the request encountered.
	RecordDetail *RecordDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (TerminateProvisionedProductOutput) GoString

GoString returns the string representation

func (*TerminateProvisionedProductOutput) SetRecordDetail added in v1.5.0

SetRecordDetail sets the RecordDetail field's value.

func (TerminateProvisionedProductOutput) String

String returns the string representation

type UpdateConstraintInput added in v1.5.6

type UpdateConstraintInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

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

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

func (UpdateConstraintInput) GoString added in v1.5.6

func (s UpdateConstraintInput) GoString() string

GoString returns the string representation

func (*UpdateConstraintInput) SetAcceptLanguage added in v1.5.6

func (s *UpdateConstraintInput) SetAcceptLanguage(v string) *UpdateConstraintInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*UpdateConstraintInput) SetDescription added in v1.5.6

func (s *UpdateConstraintInput) SetDescription(v string) *UpdateConstraintInput

SetDescription sets the Description field's value.

func (*UpdateConstraintInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (UpdateConstraintInput) String added in v1.5.6

func (s UpdateConstraintInput) String() string

String returns the string representation

func (*UpdateConstraintInput) Validate added in v1.5.6

func (s *UpdateConstraintInput) Validate() error

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

type UpdateConstraintOutput added in v1.5.6

type UpdateConstraintOutput struct {

	// The resulting detailed constraint information.
	ConstraintDetail *ConstraintDetail `type:"structure"`

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

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

func (UpdateConstraintOutput) GoString added in v1.5.6

func (s UpdateConstraintOutput) GoString() string

GoString returns the string representation

func (*UpdateConstraintOutput) SetConstraintDetail added in v1.5.6

SetConstraintDetail sets the ConstraintDetail field's value.

func (*UpdateConstraintOutput) SetConstraintParameters added in v1.5.6

func (s *UpdateConstraintOutput) SetConstraintParameters(v string) *UpdateConstraintOutput

SetConstraintParameters sets the ConstraintParameters field's value.

func (*UpdateConstraintOutput) SetStatus added in v1.5.6

SetStatus sets the Status field's value.

func (UpdateConstraintOutput) String added in v1.5.6

func (s UpdateConstraintOutput) String() string

String returns the string representation

type UpdatePortfolioInput added in v1.5.6

type UpdatePortfolioInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// Tags to add to the existing list of tags associated with the portfolio.
	AddTags []*Tag `type:"list"`

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

	// The name to use for display purposes.
	DisplayName *string `min:"1" type:"string"`

	// The identifier of the portfolio for the update request.
	//
	// 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"`

	// Tags to remove from the existing list of tags associated with the portfolio.
	RemoveTags []*string `type:"list"`
	// contains filtered or unexported fields
}

func (UpdatePortfolioInput) GoString added in v1.5.6

func (s UpdatePortfolioInput) GoString() string

GoString returns the string representation

func (*UpdatePortfolioInput) SetAcceptLanguage added in v1.5.6

func (s *UpdatePortfolioInput) SetAcceptLanguage(v string) *UpdatePortfolioInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*UpdatePortfolioInput) SetAddTags added in v1.5.6

func (s *UpdatePortfolioInput) SetAddTags(v []*Tag) *UpdatePortfolioInput

SetAddTags sets the AddTags field's value.

func (*UpdatePortfolioInput) SetDescription added in v1.5.6

func (s *UpdatePortfolioInput) SetDescription(v string) *UpdatePortfolioInput

SetDescription sets the Description field's value.

func (*UpdatePortfolioInput) SetDisplayName added in v1.5.6

func (s *UpdatePortfolioInput) SetDisplayName(v string) *UpdatePortfolioInput

SetDisplayName sets the DisplayName field's value.

func (*UpdatePortfolioInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (*UpdatePortfolioInput) SetProviderName added in v1.5.6

func (s *UpdatePortfolioInput) SetProviderName(v string) *UpdatePortfolioInput

SetProviderName sets the ProviderName field's value.

func (*UpdatePortfolioInput) SetRemoveTags added in v1.5.6

func (s *UpdatePortfolioInput) SetRemoveTags(v []*string) *UpdatePortfolioInput

SetRemoveTags sets the RemoveTags field's value.

func (UpdatePortfolioInput) String added in v1.5.6

func (s UpdatePortfolioInput) String() string

String returns the string representation

func (*UpdatePortfolioInput) Validate added in v1.5.6

func (s *UpdatePortfolioInput) Validate() error

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

type UpdatePortfolioOutput added in v1.5.6

type UpdatePortfolioOutput struct {

	// The resulting detailed portfolio information.
	PortfolioDetail *PortfolioDetail `type:"structure"`

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

func (UpdatePortfolioOutput) GoString added in v1.5.6

func (s UpdatePortfolioOutput) GoString() string

GoString returns the string representation

func (*UpdatePortfolioOutput) SetPortfolioDetail added in v1.5.6

func (s *UpdatePortfolioOutput) SetPortfolioDetail(v *PortfolioDetail) *UpdatePortfolioOutput

SetPortfolioDetail sets the PortfolioDetail field's value.

func (*UpdatePortfolioOutput) SetTags added in v1.5.6

SetTags sets the Tags field's value.

func (UpdatePortfolioOutput) String added in v1.5.6

func (s UpdatePortfolioOutput) String() string

String returns the string representation

type UpdateProductInput added in v1.5.6

type UpdateProductInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// Tags to add to the existing list of tags associated with the product.
	AddTags []*Tag `type:"list"`

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

	// The updated distributor of the product.
	Distributor *string `type:"string"`

	// The identifier of the product for the update request.
	//
	// 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"`

	// Tags to remove from the existing list of tags associated with 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) GoString added in v1.5.6

func (s UpdateProductInput) GoString() string

GoString returns the string representation

func (*UpdateProductInput) SetAcceptLanguage added in v1.5.6

func (s *UpdateProductInput) SetAcceptLanguage(v string) *UpdateProductInput

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*UpdateProductInput) SetAddTags added in v1.5.6

func (s *UpdateProductInput) SetAddTags(v []*Tag) *UpdateProductInput

SetAddTags sets the AddTags field's value.

func (*UpdateProductInput) SetDescription added in v1.5.6

func (s *UpdateProductInput) SetDescription(v string) *UpdateProductInput

SetDescription sets the Description field's value.

func (*UpdateProductInput) SetDistributor added in v1.5.6

func (s *UpdateProductInput) SetDistributor(v string) *UpdateProductInput

SetDistributor sets the Distributor field's value.

func (*UpdateProductInput) SetId added in v1.5.6

SetId sets the Id field's value.

func (*UpdateProductInput) SetName added in v1.5.6

SetName sets the Name field's value.

func (*UpdateProductInput) SetOwner added in v1.5.6

SetOwner sets the Owner field's value.

func (*UpdateProductInput) SetRemoveTags added in v1.5.6

func (s *UpdateProductInput) SetRemoveTags(v []*string) *UpdateProductInput

SetRemoveTags sets the RemoveTags field's value.

func (*UpdateProductInput) SetSupportDescription added in v1.5.6

func (s *UpdateProductInput) SetSupportDescription(v string) *UpdateProductInput

SetSupportDescription sets the SupportDescription field's value.

func (*UpdateProductInput) SetSupportEmail added in v1.5.6

func (s *UpdateProductInput) SetSupportEmail(v string) *UpdateProductInput

SetSupportEmail sets the SupportEmail field's value.

func (*UpdateProductInput) SetSupportUrl added in v1.5.6

func (s *UpdateProductInput) SetSupportUrl(v string) *UpdateProductInput

SetSupportUrl sets the SupportUrl field's value.

func (UpdateProductInput) String added in v1.5.6

func (s UpdateProductInput) String() string

String returns the string representation

func (*UpdateProductInput) Validate added in v1.5.6

func (s *UpdateProductInput) Validate() error

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

type UpdateProductOutput added in v1.5.6

type UpdateProductOutput struct {

	// The resulting detailed product view information.
	ProductViewDetail *ProductViewDetail `type:"structure"`

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

func (UpdateProductOutput) GoString added in v1.5.6

func (s UpdateProductOutput) GoString() string

GoString returns the string representation

func (*UpdateProductOutput) SetProductViewDetail added in v1.5.6

func (s *UpdateProductOutput) SetProductViewDetail(v *ProductViewDetail) *UpdateProductOutput

SetProductViewDetail sets the ProductViewDetail field's value.

func (*UpdateProductOutput) SetTags added in v1.5.6

func (s *UpdateProductOutput) SetTags(v []*Tag) *UpdateProductOutput

SetTags sets the Tags field's value.

func (UpdateProductOutput) String added in v1.5.6

func (s UpdateProductOutput) String() string

String returns the string representation

type UpdateProvisionedProductInput

type UpdateProvisionedProductInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The identifier of the path to use in the updated ProvisionedProduct object.
	// This value is optional if the product has a default path, and is required
	// if there is more than one path for the specified product.
	PathId *string `min:"1" type:"string"`

	// The identifier of the ProvisionedProduct object.
	ProductId *string `min:"1" type:"string"`

	// The identifier of the ProvisionedProduct object to update. You must specify
	// either ProvisionedProductName or ProvisionedProductId, but not both.
	ProvisionedProductId *string `min:"1" type:"string"`

	// The updated name of the ProvisionedProduct object . You must specify either
	// ProvisionedProductName or ProvisionedProductId, but not both.
	ProvisionedProductName *string `min:"1" type:"string"`

	// The provisioning artifact identifier for this product.
	ProvisioningArtifactId *string `min:"1" type:"string"`

	// A list of ProvisioningParameter objects used to update the ProvisionedProduct
	// object.
	ProvisioningParameters []*UpdateProvisioningParameter `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) GoString

GoString returns the string representation

func (*UpdateProvisionedProductInput) SetAcceptLanguage added in v1.5.0

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*UpdateProvisionedProductInput) SetPathId added in v1.5.0

SetPathId sets the PathId field's value.

func (*UpdateProvisionedProductInput) SetProductId added in v1.5.0

SetProductId sets the ProductId field's value.

func (*UpdateProvisionedProductInput) SetProvisionedProductId added in v1.5.0

SetProvisionedProductId sets the ProvisionedProductId field's value.

func (*UpdateProvisionedProductInput) SetProvisionedProductName added in v1.5.0

func (s *UpdateProvisionedProductInput) SetProvisionedProductName(v string) *UpdateProvisionedProductInput

SetProvisionedProductName sets the ProvisionedProductName field's value.

func (*UpdateProvisionedProductInput) SetProvisioningArtifactId added in v1.5.0

func (s *UpdateProvisionedProductInput) SetProvisioningArtifactId(v string) *UpdateProvisionedProductInput

SetProvisioningArtifactId sets the ProvisioningArtifactId field's value.

func (*UpdateProvisionedProductInput) SetProvisioningParameters added in v1.5.0

SetProvisioningParameters sets the ProvisioningParameters field's value.

func (*UpdateProvisionedProductInput) SetUpdateToken added in v1.5.0

SetUpdateToken sets the UpdateToken field's value.

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 {

	// The detailed result of the UpdateProvisionedProduct request, containing the
	// inputs made to that request, the current state of the request, a pointer
	// to the ProvisionedProduct object that the request is modifying, and a list
	// of any errors that the request encountered.
	RecordDetail *RecordDetail `type:"structure"`
	// contains filtered or unexported fields
}

func (UpdateProvisionedProductOutput) GoString

GoString returns the string representation

func (*UpdateProvisionedProductOutput) SetRecordDetail added in v1.5.0

SetRecordDetail sets the RecordDetail field's value.

func (UpdateProvisionedProductOutput) String

String returns the string representation

type UpdateProvisioningArtifactInput added in v1.5.6

type UpdateProvisioningArtifactInput struct {

	// The language code to use for this operation. Supported language codes are
	// as follows:
	//
	// "en" (English)
	//
	// "jp" (Japanese)
	//
	// "zh" (Chinese)
	//
	// If no code is specified, "en" is used as the default.
	AcceptLanguage *string `type:"string"`

	// The updated text description of the provisioning artifact.
	Description *string `type:"string"`

	// 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 for the update request.
	//
	// ProvisioningArtifactId is a required field
	ProvisioningArtifactId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateProvisioningArtifactInput) GoString added in v1.5.6

GoString returns the string representation

func (*UpdateProvisioningArtifactInput) SetAcceptLanguage added in v1.5.6

SetAcceptLanguage sets the AcceptLanguage field's value.

func (*UpdateProvisioningArtifactInput) SetDescription added in v1.5.6

SetDescription sets the Description field's value.

func (*UpdateProvisioningArtifactInput) SetName added in v1.5.6

SetName sets the Name field's value.

func (*UpdateProvisioningArtifactInput) SetProductId added in v1.5.6

SetProductId sets the ProductId field's value.

func (*UpdateProvisioningArtifactInput) SetProvisioningArtifactId added in v1.5.6

SetProvisioningArtifactId sets the ProvisioningArtifactId field's value.

func (UpdateProvisioningArtifactInput) String added in v1.5.6

String returns the string representation

func (*UpdateProvisioningArtifactInput) Validate added in v1.5.6

func (s *UpdateProvisioningArtifactInput) Validate() error

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

type UpdateProvisioningArtifactOutput added in v1.5.6

type UpdateProvisioningArtifactOutput struct {

	// Additional information about the provisioning artifact update request.
	Info map[string]*string `min:"1" type:"map"`

	// The resulting detailed provisioning artifact information.
	ProvisioningArtifactDetail *ProvisioningArtifactDetail `type:"structure"`

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

func (UpdateProvisioningArtifactOutput) GoString added in v1.5.6

GoString returns the string representation

func (*UpdateProvisioningArtifactOutput) SetInfo added in v1.5.6

SetInfo sets the Info field's value.

func (*UpdateProvisioningArtifactOutput) SetProvisioningArtifactDetail added in v1.5.6

SetProvisioningArtifactDetail sets the ProvisioningArtifactDetail field's value.

func (*UpdateProvisioningArtifactOutput) SetStatus added in v1.5.6

SetStatus sets the Status field's value.

func (UpdateProvisioningArtifactOutput) String added in v1.5.6

String returns the string representation

type UpdateProvisioningParameter

type UpdateProvisioningParameter struct {

	// The ProvisioningArtifactParameter.ParameterKey parameter from DescribeProvisioningParameters.
	Key *string `min:"1" type:"string"`

	// If true, uses the currently set value for Key, ignoring UpdateProvisioningParameter.Value.
	UsePreviousValue *bool `type:"boolean"`

	// The value to use for updating the product provisioning. Any constraints on
	// this value can be found in the ProvisioningArtifactParameter parameter for
	// Key.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

The parameter key/value pair used to update a ProvisionedProduct object. If UsePreviousValue is set to true, Value is ignored and the value for Key is kept as previously set (current value).

func (UpdateProvisioningParameter) GoString

func (s UpdateProvisioningParameter) GoString() string

GoString returns the string representation

func (*UpdateProvisioningParameter) SetKey added in v1.5.0

SetKey sets the Key field's value.

func (*UpdateProvisioningParameter) SetUsePreviousValue added in v1.5.0

SetUsePreviousValue sets the UsePreviousValue field's value.

func (*UpdateProvisioningParameter) SetValue added in v1.5.0

SetValue sets the Value field's value.

func (UpdateProvisioningParameter) String

String returns the string representation

func (*UpdateProvisioningParameter) Validate added in v1.5.6

func (s *UpdateProvisioningParameter) Validate() error

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

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) GoString

func (s UsageInstruction) GoString() string

GoString returns the string representation

func (*UsageInstruction) SetType added in v1.5.0

func (s *UsageInstruction) SetType(v string) *UsageInstruction

SetType sets the Type field's value.

func (*UsageInstruction) SetValue added in v1.5.0

func (s *UsageInstruction) SetValue(v string) *UsageInstruction

SetValue sets the Value field's value.

func (UsageInstruction) String

func (s UsageInstruction) String() string

String returns the string representation

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