Documentation ¶
Overview ¶
Package marketplacecatalog provides the API client, operations, and parameter types for AWS Marketplace Catalog Service.
Catalog API actions allow you to manage your entities through list, describe, and update capabilities. An entity can be a product or an offer on AWS Marketplace.
You can automate your entity update process by integrating the AWS Marketplace Catalog API with your AWS Marketplace product build or deployment pipelines. You can also create your own applications on top of the Catalog API to manage your products on AWS Marketplace.
Index ¶
- Constants
- func NewDefaultEndpointResolver() *internalendpoints.Resolver
- func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
- func WithEndpointResolver(v EndpointResolver) func(*Options)deprecated
- func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
- func WithSigV4SigningName(name string) func(*Options)
- func WithSigV4SigningRegion(region string) func(*Options)
- type AuthResolverParameters
- type AuthSchemeResolver
- type BatchDescribeEntitiesInput
- type BatchDescribeEntitiesOutput
- type CancelChangeSetInput
- type CancelChangeSetOutput
- type Client
- func (c *Client) BatchDescribeEntities(ctx context.Context, params *BatchDescribeEntitiesInput, ...) (*BatchDescribeEntitiesOutput, error)
- func (c *Client) CancelChangeSet(ctx context.Context, params *CancelChangeSetInput, optFns ...func(*Options)) (*CancelChangeSetOutput, error)
- func (c *Client) DeleteResourcePolicy(ctx context.Context, params *DeleteResourcePolicyInput, ...) (*DeleteResourcePolicyOutput, error)
- func (c *Client) DescribeChangeSet(ctx context.Context, params *DescribeChangeSetInput, optFns ...func(*Options)) (*DescribeChangeSetOutput, error)
- func (c *Client) DescribeEntity(ctx context.Context, params *DescribeEntityInput, optFns ...func(*Options)) (*DescribeEntityOutput, error)
- func (c *Client) GetResourcePolicy(ctx context.Context, params *GetResourcePolicyInput, optFns ...func(*Options)) (*GetResourcePolicyOutput, error)
- func (c *Client) ListChangeSets(ctx context.Context, params *ListChangeSetsInput, optFns ...func(*Options)) (*ListChangeSetsOutput, error)
- func (c *Client) ListEntities(ctx context.Context, params *ListEntitiesInput, optFns ...func(*Options)) (*ListEntitiesOutput, error)
- func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, ...) (*ListTagsForResourceOutput, error)
- func (c *Client) Options() Options
- func (c *Client) PutResourcePolicy(ctx context.Context, params *PutResourcePolicyInput, optFns ...func(*Options)) (*PutResourcePolicyOutput, error)
- func (c *Client) StartChangeSet(ctx context.Context, params *StartChangeSetInput, optFns ...func(*Options)) (*StartChangeSetOutput, error)
- func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
- func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
- type DeleteResourcePolicyInput
- type DeleteResourcePolicyOutput
- type DescribeChangeSetInput
- type DescribeChangeSetOutput
- type DescribeEntityInput
- type DescribeEntityOutput
- type EndpointParameters
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type EndpointResolverV2
- type GetResourcePolicyInput
- type GetResourcePolicyOutput
- type HTTPClient
- type HTTPSignerV4
- type IdempotencyTokenProvider
- type ListChangeSetsAPIClient
- type ListChangeSetsInput
- type ListChangeSetsOutput
- type ListChangeSetsPaginator
- type ListChangeSetsPaginatorOptions
- type ListEntitiesAPIClient
- type ListEntitiesInput
- type ListEntitiesOutput
- type ListEntitiesPaginator
- type ListEntitiesPaginatorOptions
- type ListTagsForResourceInput
- type ListTagsForResourceOutput
- type Options
- type PutResourcePolicyInput
- type PutResourcePolicyOutput
- type ResolveEndpoint
- type StartChangeSetInput
- type StartChangeSetOutput
- type TagResourceInput
- type TagResourceOutput
- type UntagResourceInput
- type UntagResourceOutput
Constants ¶
const ServiceAPIVersion = "2018-09-17"
const ServiceID = "Marketplace Catalog"
Variables ¶
This section is empty.
Functions ¶
func NewDefaultEndpointResolver ¶
func NewDefaultEndpointResolver() *internalendpoints.Resolver
NewDefaultEndpointResolver constructs a new service endpoint resolver
func WithAPIOptions ¶
func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
WithAPIOptions returns a functional option for setting the Client's APIOptions option.
func WithEndpointResolver
deprecated
func WithEndpointResolver(v EndpointResolver) func(*Options)
Deprecated: EndpointResolver and WithEndpointResolver. Providing a value for this field will likely prevent you from using any endpoint-related service features released after the introduction of EndpointResolverV2 and BaseEndpoint.
To migrate an EndpointResolver implementation that uses a custom endpoint, set the client option BaseEndpoint instead.
func WithEndpointResolverV2 ¶
func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
WithEndpointResolverV2 returns a functional option for setting the Client's EndpointResolverV2 option.
func WithSigV4SigningName ¶
WithSigV4SigningName applies an override to the authentication workflow to use the given signing name for SigV4-authenticated operations.
This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing name from both auth scheme resolution and endpoint resolution.
func WithSigV4SigningRegion ¶
WithSigV4SigningRegion applies an override to the authentication workflow to use the given signing region for SigV4-authenticated operations.
This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing region from both auth scheme resolution and endpoint resolution.
Types ¶
type AuthResolverParameters ¶
type AuthResolverParameters struct { // The name of the operation being invoked. Operation string // The region in which the operation is being invoked. Region string }
AuthResolverParameters contains the set of inputs necessary for auth scheme resolution.
type AuthSchemeResolver ¶
type AuthSchemeResolver interface {
ResolveAuthSchemes(context.Context, *AuthResolverParameters) ([]*smithyauth.Option, error)
}
AuthSchemeResolver returns a set of possible authentication options for an operation.
type BatchDescribeEntitiesInput ¶
type BatchDescribeEntitiesInput struct { // List of entity IDs and the catalogs the entities are present in. // // This member is required. EntityRequestList []types.EntityRequest // contains filtered or unexported fields }
type BatchDescribeEntitiesOutput ¶
type BatchDescribeEntitiesOutput struct { // Details about each entity. EntityDetails map[string]types.EntityDetail // A map of errors returned, with EntityId as the key and errorDetail as the value. Errors map[string]types.BatchDescribeErrorDetail // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type CancelChangeSetInput ¶
type CancelChangeSetInput struct { // Required. The catalog related to the request. Fixed value: AWSMarketplace . // // This member is required. Catalog *string // Required. The unique identifier of the StartChangeSet request that you want to // cancel. // // This member is required. ChangeSetId *string // contains filtered or unexported fields }
type CancelChangeSetOutput ¶
type CancelChangeSetOutput struct { // The ARN associated with the change set referenced in this request. ChangeSetArn *string // The unique identifier for the change set referenced in this request. ChangeSetId *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client provides the API client to make operations call for AWS Marketplace Catalog Service.
func New ¶
New returns an initialized Client based on the functional options. Provide additional functional options to further configure the behavior of the client, such as changing the client's endpoint or adding custom middleware behavior.
func NewFromConfig ¶
NewFromConfig returns a new client from the provided config.
func (*Client) BatchDescribeEntities ¶
func (c *Client) BatchDescribeEntities(ctx context.Context, params *BatchDescribeEntitiesInput, optFns ...func(*Options)) (*BatchDescribeEntitiesOutput, error)
Returns metadata and content for multiple entities. This is the Batch version of the DescribeEntity API and uses the same IAM permission action as DescribeEntity API.
func (*Client) CancelChangeSet ¶
func (c *Client) CancelChangeSet(ctx context.Context, params *CancelChangeSetInput, optFns ...func(*Options)) (*CancelChangeSetOutput, error)
Used to cancel an open change request. Must be sent before the status of the request changes to APPLYING , the final stage of completing your change request. You can describe a change during the 60-day request history retention period for API calls.
func (*Client) DeleteResourcePolicy ¶
func (c *Client) DeleteResourcePolicy(ctx context.Context, params *DeleteResourcePolicyInput, optFns ...func(*Options)) (*DeleteResourcePolicyOutput, error)
Deletes a resource-based policy on an entity that is identified by its resource ARN.
func (*Client) DescribeChangeSet ¶
func (c *Client) DescribeChangeSet(ctx context.Context, params *DescribeChangeSetInput, optFns ...func(*Options)) (*DescribeChangeSetOutput, error)
Provides information about a given change set.
func (*Client) DescribeEntity ¶
func (c *Client) DescribeEntity(ctx context.Context, params *DescribeEntityInput, optFns ...func(*Options)) (*DescribeEntityOutput, error)
Returns the metadata and content of the entity.
func (*Client) GetResourcePolicy ¶
func (c *Client) GetResourcePolicy(ctx context.Context, params *GetResourcePolicyInput, optFns ...func(*Options)) (*GetResourcePolicyOutput, error)
Gets a resource-based policy of an entity that is identified by its resource ARN.
func (*Client) ListChangeSets ¶
func (c *Client) ListChangeSets(ctx context.Context, params *ListChangeSetsInput, optFns ...func(*Options)) (*ListChangeSetsOutput, error)
Returns the list of change sets owned by the account being used to make the call. You can filter this list by providing any combination of entityId , ChangeSetName , and status. If you provide more than one filter, the API operation applies a logical AND between the filters.
You can describe a change during the 60-day request history retention period for API calls.
func (*Client) ListEntities ¶
func (c *Client) ListEntities(ctx context.Context, params *ListEntitiesInput, optFns ...func(*Options)) (*ListEntitiesOutput, error)
Provides the list of entities of a given type.
func (*Client) ListTagsForResource ¶
func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, optFns ...func(*Options)) (*ListTagsForResourceOutput, error)
Lists all tags that have been added to a resource (either an entity or change set).
func (*Client) Options ¶
Options returns a copy of the client configuration.
Callers SHOULD NOT perform mutations on any inner structures within client config. Config overrides should instead be made on a per-operation basis through functional options.
func (*Client) PutResourcePolicy ¶
func (c *Client) PutResourcePolicy(ctx context.Context, params *PutResourcePolicyInput, optFns ...func(*Options)) (*PutResourcePolicyOutput, error)
Attaches a resource-based policy to an entity. Examples of an entity include: AmiProduct and ContainerProduct .
func (*Client) StartChangeSet ¶
func (c *Client) StartChangeSet(ctx context.Context, params *StartChangeSetInput, optFns ...func(*Options)) (*StartChangeSetOutput, error)
Allows you to request changes for your entities. Within a single ChangeSet , you can't start the same change type against the same entity multiple times. Additionally, when a ChangeSet is running, all the entities targeted by the different changes are locked until the change set has completed (either succeeded, cancelled, or failed). If you try to start a change set containing a change against an entity that is already locked, you will receive a ResourceInUseException error.
For example, you can't start the ChangeSet described in the example later in this topic because it contains two changes to run the same change type ( AddRevisions ) against the same entity ( entity-id@1 ).
For more information about working with change sets, see Working with change sets. For information about change types for single-AMI products, see Working with single-AMI products. Also, for more information about change types available for container-based products, see Working with container products.
func (*Client) TagResource ¶
func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
Tags a resource (either an entity or change set).
func (*Client) UntagResource ¶
func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
Removes a tag or list of tags from a resource (either an entity or change set).
type DeleteResourcePolicyInput ¶
type DeleteResourcePolicyInput struct { // The Amazon Resource Name (ARN) of the entity resource that is associated with // the resource policy. // // This member is required. ResourceArn *string // contains filtered or unexported fields }
type DeleteResourcePolicyOutput ¶
type DeleteResourcePolicyOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribeChangeSetInput ¶
type DescribeChangeSetInput struct { // Required. The catalog related to the request. Fixed value: AWSMarketplace // // This member is required. Catalog *string // Required. The unique identifier for the StartChangeSet request that you want to // describe the details for. // // This member is required. ChangeSetId *string // contains filtered or unexported fields }
type DescribeChangeSetOutput ¶
type DescribeChangeSetOutput struct { // An array of ChangeSummary objects. ChangeSet []types.ChangeSummary // The ARN associated with the unique identifier for the change set referenced in // this request. ChangeSetArn *string // Required. The unique identifier for the change set referenced in this request. ChangeSetId *string // The optional name provided in the StartChangeSet request. If you do not provide // a name, one is set by default. ChangeSetName *string // The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the request // transitioned to a terminal state. The change cannot transition to a different // state. Null if the request is not in a terminal state. EndTime *string // Returned if the change set is in FAILED status. Can be either CLIENT_ERROR , // which means that there are issues with the request (see the ErrorDetailList ), // or SERVER_FAULT , which means that there is a problem in the system, and you // should retry your request. FailureCode types.FailureCode // Returned if there is a failure on the change set, but that failure is not // related to any of the changes in the request. FailureDescription *string // The optional intent provided in the StartChangeSet request. If you do not // provide an intent, APPLY is set by default. Intent types.Intent // The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the request // started. StartTime *string // The status of the change request. Status types.ChangeStatus // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribeEntityInput ¶
type DescribeEntityInput struct { // Required. The catalog related to the request. Fixed value: AWSMarketplace // // This member is required. Catalog *string // Required. The unique ID of the entity to describe. // // This member is required. EntityId *string // contains filtered or unexported fields }
type DescribeEntityOutput ¶
type DescribeEntityOutput struct { // This stringified JSON object includes the details of the entity. Details *string // The JSON value of the details specific to the entity. DetailsDocument document.Interface // The ARN associated to the unique identifier for the entity referenced in this // request. EntityArn *string // The identifier of the entity, in the format of EntityId@RevisionId . EntityIdentifier *string // The named type of the entity, in the format of EntityType@Version . EntityType *string // The last modified date of the entity, in ISO 8601 format (2018-02-27T13:45:22Z). LastModifiedDate *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type EndpointParameters ¶
type EndpointParameters struct { // The AWS region used to dispatch the request. // // Parameter is // required. // // AWS::Region Region *string // When true, use the dual-stack endpoint. If the configured endpoint does not // support dual-stack, dispatching the request MAY return an error. // // Defaults to // false if no value is provided. // // AWS::UseDualStack UseDualStack *bool // When true, send this request to the FIPS-compliant regional endpoint. If the // configured endpoint does not have a FIPS compliant endpoint, dispatching the // request will return an error. // // Defaults to false if no value is // provided. // // AWS::UseFIPS UseFIPS *bool // Override the endpoint used to send this request // // Parameter is // required. // // SDK::Endpoint Endpoint *string }
EndpointParameters provides the parameters that influence how endpoints are resolved.
func (EndpointParameters) ValidateRequired ¶
func (p EndpointParameters) ValidateRequired() error
ValidateRequired validates required parameters are set.
func (EndpointParameters) WithDefaults ¶
func (p EndpointParameters) WithDefaults() EndpointParameters
WithDefaults returns a shallow copy of EndpointParameterswith default values applied to members where applicable.
type EndpointResolver ¶
type EndpointResolver interface {
ResolveEndpoint(region string, options EndpointResolverOptions) (aws.Endpoint, error)
}
EndpointResolver interface for resolving service endpoints.
func EndpointResolverFromURL ¶
func EndpointResolverFromURL(url string, optFns ...func(*aws.Endpoint)) EndpointResolver
EndpointResolverFromURL returns an EndpointResolver configured using the provided endpoint url. By default, the resolved endpoint resolver uses the client region as signing region, and the endpoint source is set to EndpointSourceCustom.You can provide functional options to configure endpoint values for the resolved endpoint.
type EndpointResolverFunc ¶
type EndpointResolverFunc func(region string, options EndpointResolverOptions) (aws.Endpoint, error)
EndpointResolverFunc is a helper utility that wraps a function so it satisfies the EndpointResolver interface. This is useful when you want to add additional endpoint resolving logic, or stub out specific endpoints with custom values.
func (EndpointResolverFunc) ResolveEndpoint ¶
func (fn EndpointResolverFunc) ResolveEndpoint(region string, options EndpointResolverOptions) (endpoint aws.Endpoint, err error)
type EndpointResolverOptions ¶
type EndpointResolverOptions = internalendpoints.Options
EndpointResolverOptions is the service endpoint resolver options
type EndpointResolverV2 ¶
type EndpointResolverV2 interface { // ResolveEndpoint attempts to resolve the endpoint with the provided options, // returning the endpoint if found. Otherwise an error is returned. ResolveEndpoint(ctx context.Context, params EndpointParameters) ( smithyendpoints.Endpoint, error, ) }
EndpointResolverV2 provides the interface for resolving service endpoints.
func NewDefaultEndpointResolverV2 ¶
func NewDefaultEndpointResolverV2() EndpointResolverV2
type GetResourcePolicyInput ¶
type GetResourcePolicyInput struct { // The Amazon Resource Name (ARN) of the entity resource that is associated with // the resource policy. // // This member is required. ResourceArn *string // contains filtered or unexported fields }
type GetResourcePolicyOutput ¶
type GetResourcePolicyOutput struct { // The policy document to set; formatted in JSON. Policy *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type HTTPSignerV4 ¶
type IdempotencyTokenProvider ¶
IdempotencyTokenProvider interface for providing idempotency token
type ListChangeSetsAPIClient ¶
type ListChangeSetsAPIClient interface {
ListChangeSets(context.Context, *ListChangeSetsInput, ...func(*Options)) (*ListChangeSetsOutput, error)
}
ListChangeSetsAPIClient is a client that implements the ListChangeSets operation.
type ListChangeSetsInput ¶
type ListChangeSetsInput struct { // The catalog related to the request. Fixed value: AWSMarketplace // // This member is required. Catalog *string // An array of filter objects. FilterList []types.Filter // The maximum number of results returned by a single call. This value must be // provided in the next call to retrieve the next set of results. By default, this // value is 20. MaxResults *int32 // The token value retrieved from a previous call to access the next page of // results. NextToken *string // An object that contains two attributes, SortBy and SortOrder . Sort *types.Sort // contains filtered or unexported fields }
type ListChangeSetsOutput ¶
type ListChangeSetsOutput struct { // Array of ChangeSetSummaryListItem objects. ChangeSetSummaryList []types.ChangeSetSummaryListItem // The value of the next token, if it exists. Null if there are no more results. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListChangeSetsPaginator ¶
type ListChangeSetsPaginator struct {
// contains filtered or unexported fields
}
ListChangeSetsPaginator is a paginator for ListChangeSets
func NewListChangeSetsPaginator ¶
func NewListChangeSetsPaginator(client ListChangeSetsAPIClient, params *ListChangeSetsInput, optFns ...func(*ListChangeSetsPaginatorOptions)) *ListChangeSetsPaginator
NewListChangeSetsPaginator returns a new ListChangeSetsPaginator
func (*ListChangeSetsPaginator) HasMorePages ¶
func (p *ListChangeSetsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListChangeSetsPaginator) NextPage ¶
func (p *ListChangeSetsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListChangeSetsOutput, error)
NextPage retrieves the next ListChangeSets page.
type ListChangeSetsPaginatorOptions ¶
type ListChangeSetsPaginatorOptions struct { // The maximum number of results returned by a single call. This value must be // provided in the next call to retrieve the next set of results. By default, this // value is 20. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListChangeSetsPaginatorOptions is the paginator options for ListChangeSets
type ListEntitiesAPIClient ¶
type ListEntitiesAPIClient interface {
ListEntities(context.Context, *ListEntitiesInput, ...func(*Options)) (*ListEntitiesOutput, error)
}
ListEntitiesAPIClient is a client that implements the ListEntities operation.
type ListEntitiesInput ¶
type ListEntitiesInput struct { // The catalog related to the request. Fixed value: AWSMarketplace // // This member is required. Catalog *string // The type of entities to retrieve. Valid values are: AmiProduct , // ContainerProduct , DataProduct , SaaSProduct , ProcurementPolicy , Experience , // Audience , BrandingSettings , Offer , Seller , ResaleAuthorization . // // This member is required. EntityType *string // A Union object containing filter shapes for all EntityType s. Each // EntityTypeFilter shape will have filters applicable for that EntityType that // can be used to search or filter entities. EntityTypeFilters types.EntityTypeFilters // A Union object containing Sort shapes for all EntityType s. Each EntityTypeSort // shape will have SortBy and SortOrder applicable for fields on that EntityType . // This can be used to sort the results of the filter query. EntityTypeSort types.EntityTypeSort // An array of filter objects. Each filter object contains two attributes, // filterName and filterValues . FilterList []types.Filter // Specifies the upper limit of the elements on a single page. If a value isn't // provided, the default value is 20. MaxResults *int32 // The value of the next token, if it exists. Null if there are no more results. NextToken *string // Filters the returned set of entities based on their owner. The default is SELF . // To list entities shared with you through AWS Resource Access Manager (AWS RAM), // set to SHARED . Entities shared through the AWS Marketplace Catalog API // PutResourcePolicy operation can't be discovered through the SHARED parameter. OwnershipType types.OwnershipType // An object that contains two attributes, SortBy and SortOrder . Sort *types.Sort // contains filtered or unexported fields }
type ListEntitiesOutput ¶
type ListEntitiesOutput struct { // Array of EntitySummary objects. EntitySummaryList []types.EntitySummary // The value of the next token if it exists. Null if there is no more result. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListEntitiesPaginator ¶
type ListEntitiesPaginator struct {
// contains filtered or unexported fields
}
ListEntitiesPaginator is a paginator for ListEntities
func NewListEntitiesPaginator ¶
func NewListEntitiesPaginator(client ListEntitiesAPIClient, params *ListEntitiesInput, optFns ...func(*ListEntitiesPaginatorOptions)) *ListEntitiesPaginator
NewListEntitiesPaginator returns a new ListEntitiesPaginator
func (*ListEntitiesPaginator) HasMorePages ¶
func (p *ListEntitiesPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListEntitiesPaginator) NextPage ¶
func (p *ListEntitiesPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListEntitiesOutput, error)
NextPage retrieves the next ListEntities page.
type ListEntitiesPaginatorOptions ¶
type ListEntitiesPaginatorOptions struct { // Specifies the upper limit of the elements on a single page. If a value isn't // provided, the default value is 20. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListEntitiesPaginatorOptions is the paginator options for ListEntities
type ListTagsForResourceInput ¶
type ListTagsForResourceInput struct { // Required. The Amazon Resource Name (ARN) associated with the resource you want // to list tags on. // // This member is required. ResourceArn *string // contains filtered or unexported fields }
type ListTagsForResourceOutput ¶
type ListTagsForResourceOutput struct { // Required. The ARN associated with the resource you want to list tags on. ResourceArn *string // Required. A list of objects specifying each key name and value. Number of // objects allowed: 1-50. Tags []types.Tag // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type Options ¶
type Options struct { // Set of options to modify how an operation is invoked. These apply to all // operations invoked for this client. Use functional options on operation call to // modify this list for per operation behavior. APIOptions []func(*middleware.Stack) error // The optional application specific identifier appended to the User-Agent header. AppID string // This endpoint will be given as input to an EndpointResolverV2. It is used for // providing a custom base endpoint that is subject to modifications by the // processing EndpointResolverV2. BaseEndpoint *string // Configures the events that will be sent to the configured logger. ClientLogMode aws.ClientLogMode // The credentials object to use when signing requests. Credentials aws.CredentialsProvider // The configuration DefaultsMode that the SDK should use when constructing the // clients initial default settings. DefaultsMode aws.DefaultsMode // The endpoint options to be used when attempting to resolve an endpoint. EndpointOptions EndpointResolverOptions // The service endpoint resolver. // // Deprecated: Deprecated: EndpointResolver and WithEndpointResolver. Providing a // value for this field will likely prevent you from using any endpoint-related // service features released after the introduction of EndpointResolverV2 and // BaseEndpoint. // // To migrate an EndpointResolver implementation that uses a custom endpoint, set // the client option BaseEndpoint instead. EndpointResolver EndpointResolver // Resolves the endpoint used for a particular service operation. This should be // used over the deprecated EndpointResolver. EndpointResolverV2 EndpointResolverV2 // Signature Version 4 (SigV4) Signer HTTPSignerV4 HTTPSignerV4 // Provides idempotency tokens values that will be automatically populated into // idempotent API operations. IdempotencyTokenProvider IdempotencyTokenProvider // The logger writer interface to write logging messages to. Logger logging.Logger // The region to send requests to. (Required) Region string // RetryMaxAttempts specifies the maximum number attempts an API client will call // an operation that fails with a retryable error. A value of 0 is ignored, and // will not be used to configure the API client created default retryer, or modify // per operation call's retry max attempts. // // If specified in an operation call's functional options with a value that is // different than the constructed client's Options, the Client's Retryer will be // wrapped to use the operation's specific RetryMaxAttempts value. RetryMaxAttempts int // RetryMode specifies the retry mode the API client will be created with, if // Retryer option is not also specified. // // When creating a new API Clients this member will only be used if the Retryer // Options member is nil. This value will be ignored if Retryer is not nil. // // Currently does not support per operation call overrides, may in the future. RetryMode aws.RetryMode // Retryer guides how HTTP requests should be retried in case of recoverable // failures. When nil the API client will use a default retryer. The kind of // default retry created by the API client can be changed with the RetryMode // option. Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig . You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The HTTP client to invoke API calls with. Defaults to client's default HTTP // implementation if nil. HTTPClient HTTPClient // The auth scheme resolver which determines how to authenticate for each // operation. AuthSchemeResolver AuthSchemeResolver // The list of auth schemes supported by the client. AuthSchemes []smithyhttp.AuthScheme // contains filtered or unexported fields }
func (Options) Copy ¶
Copy creates a clone where the APIOptions list is deep copied.
func (Options) GetIdentityResolver ¶
func (o Options) GetIdentityResolver(schemeID string) smithyauth.IdentityResolver
type PutResourcePolicyInput ¶
type PutResourcePolicyInput struct { // The policy document to set; formatted in JSON. // // This member is required. Policy *string // The Amazon Resource Name (ARN) of the entity resource you want to associate // with a resource policy. // // This member is required. ResourceArn *string // contains filtered or unexported fields }
type PutResourcePolicyOutput ¶
type PutResourcePolicyOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ResolveEndpoint ¶
type ResolveEndpoint struct { Resolver EndpointResolver Options EndpointResolverOptions }
func (*ResolveEndpoint) HandleSerialize ¶
func (m *ResolveEndpoint) HandleSerialize(ctx context.Context, in middleware.SerializeInput, next middleware.SerializeHandler) ( out middleware.SerializeOutput, metadata middleware.Metadata, err error, )
func (*ResolveEndpoint) ID ¶
func (*ResolveEndpoint) ID() string
type StartChangeSetInput ¶
type StartChangeSetInput struct { // The catalog related to the request. Fixed value: AWSMarketplace // // This member is required. Catalog *string // Array of change object. // // This member is required. ChangeSet []types.Change // Optional case sensitive string of up to 100 ASCII characters. The change set // name can be used to filter the list of change sets. ChangeSetName *string // A list of objects specifying each key name and value for the ChangeSetTags // property. ChangeSetTags []types.Tag // A unique token to identify the request to ensure idempotency. ClientRequestToken *string // The intent related to the request. The default is APPLY . To test your request // before applying changes to your entities, use VALIDATE . This feature is // currently available for adding versions to single-AMI products. For more // information, see [Add a new version]. // // [Add a new version]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/ami-products.html#ami-add-version Intent types.Intent // contains filtered or unexported fields }
type StartChangeSetOutput ¶
type StartChangeSetOutput struct { // The ARN associated to the unique identifier generated for the request. ChangeSetArn *string // Unique identifier generated for the request. ChangeSetId *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type TagResourceInput ¶
type TagResourceInput struct { // Required. The Amazon Resource Name (ARN) associated with the resource you want // to tag. // // This member is required. ResourceArn *string // Required. A list of objects specifying each key name and value. Number of // objects allowed: 1-50. // // This member is required. Tags []types.Tag // contains filtered or unexported fields }
type TagResourceOutput ¶
type TagResourceOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type UntagResourceInput ¶
type UntagResourceInput struct { // Required. The Amazon Resource Name (ARN) associated with the resource you want // to remove the tag from. // // This member is required. ResourceArn *string // Required. A list of key names of tags to be removed. Number of strings allowed: // 0-256. // // This member is required. TagKeys []string // contains filtered or unexported fields }
type UntagResourceOutput ¶
type UntagResourceOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Source Files ¶
- api_client.go
- api_op_BatchDescribeEntities.go
- api_op_CancelChangeSet.go
- api_op_DeleteResourcePolicy.go
- api_op_DescribeChangeSet.go
- api_op_DescribeEntity.go
- api_op_GetResourcePolicy.go
- api_op_ListChangeSets.go
- api_op_ListEntities.go
- api_op_ListTagsForResource.go
- api_op_PutResourcePolicy.go
- api_op_StartChangeSet.go
- api_op_TagResource.go
- api_op_UntagResource.go
- auth.go
- deserializers.go
- doc.go
- endpoints.go
- go_module_metadata.go
- options.go
- serializers.go
- validators.go