Documentation ¶
Overview ¶
Package mediapackagevod provides the API client, operations, and parameter types for AWS Elemental MediaPackage VOD.
AWS Elemental MediaPackage VOD
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 Client
- func (c *Client) ConfigureLogs(ctx context.Context, params *ConfigureLogsInput, optFns ...func(*Options)) (*ConfigureLogsOutput, error)
- func (c *Client) CreateAsset(ctx context.Context, params *CreateAssetInput, optFns ...func(*Options)) (*CreateAssetOutput, error)
- func (c *Client) CreatePackagingConfiguration(ctx context.Context, params *CreatePackagingConfigurationInput, ...) (*CreatePackagingConfigurationOutput, error)
- func (c *Client) CreatePackagingGroup(ctx context.Context, params *CreatePackagingGroupInput, ...) (*CreatePackagingGroupOutput, error)
- func (c *Client) DeleteAsset(ctx context.Context, params *DeleteAssetInput, optFns ...func(*Options)) (*DeleteAssetOutput, error)
- func (c *Client) DeletePackagingConfiguration(ctx context.Context, params *DeletePackagingConfigurationInput, ...) (*DeletePackagingConfigurationOutput, error)
- func (c *Client) DeletePackagingGroup(ctx context.Context, params *DeletePackagingGroupInput, ...) (*DeletePackagingGroupOutput, error)
- func (c *Client) DescribeAsset(ctx context.Context, params *DescribeAssetInput, optFns ...func(*Options)) (*DescribeAssetOutput, error)
- func (c *Client) DescribePackagingConfiguration(ctx context.Context, params *DescribePackagingConfigurationInput, ...) (*DescribePackagingConfigurationOutput, error)
- func (c *Client) DescribePackagingGroup(ctx context.Context, params *DescribePackagingGroupInput, ...) (*DescribePackagingGroupOutput, error)
- func (c *Client) ListAssets(ctx context.Context, params *ListAssetsInput, optFns ...func(*Options)) (*ListAssetsOutput, error)
- func (c *Client) ListPackagingConfigurations(ctx context.Context, params *ListPackagingConfigurationsInput, ...) (*ListPackagingConfigurationsOutput, error)
- func (c *Client) ListPackagingGroups(ctx context.Context, params *ListPackagingGroupsInput, ...) (*ListPackagingGroupsOutput, error)
- func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, ...) (*ListTagsForResourceOutput, error)
- func (c *Client) Options() Options
- 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)
- func (c *Client) UpdatePackagingGroup(ctx context.Context, params *UpdatePackagingGroupInput, ...) (*UpdatePackagingGroupOutput, error)
- type ConfigureLogsInput
- type ConfigureLogsOutput
- type CreateAssetInput
- type CreateAssetOutput
- type CreatePackagingConfigurationInput
- type CreatePackagingConfigurationOutput
- type CreatePackagingGroupInput
- type CreatePackagingGroupOutput
- type DeleteAssetInput
- type DeleteAssetOutput
- type DeletePackagingConfigurationInput
- type DeletePackagingConfigurationOutput
- type DeletePackagingGroupInput
- type DeletePackagingGroupOutput
- type DescribeAssetInput
- type DescribeAssetOutput
- type DescribePackagingConfigurationInput
- type DescribePackagingConfigurationOutput
- type DescribePackagingGroupInput
- type DescribePackagingGroupOutput
- type EndpointParameters
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type EndpointResolverV2
- type HTTPClient
- type HTTPSignerV4
- type ListAssetsAPIClient
- type ListAssetsInput
- type ListAssetsOutput
- type ListAssetsPaginator
- type ListAssetsPaginatorOptions
- type ListPackagingConfigurationsAPIClient
- type ListPackagingConfigurationsInput
- type ListPackagingConfigurationsOutput
- type ListPackagingConfigurationsPaginator
- type ListPackagingConfigurationsPaginatorOptions
- type ListPackagingGroupsAPIClient
- type ListPackagingGroupsInput
- type ListPackagingGroupsOutput
- type ListPackagingGroupsPaginator
- type ListPackagingGroupsPaginatorOptions
- type ListTagsForResourceInput
- type ListTagsForResourceOutput
- type Options
- type ResolveEndpoint
- type TagResourceInput
- type TagResourceOutput
- type UntagResourceInput
- type UntagResourceOutput
- type UpdatePackagingGroupInput
- type UpdatePackagingGroupOutput
Constants ¶
const ServiceAPIVersion = "2018-11-07"
const ServiceID = "MediaPackage Vod"
Variables ¶
This section is empty.
Functions ¶
func NewDefaultEndpointResolver ¶
func NewDefaultEndpointResolver() *internalendpoints.Resolver
NewDefaultEndpointResolver constructs a new service endpoint resolver
func WithAPIOptions ¶ added in v1.0.0
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 ¶ added in v1.23.0
func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
WithEndpointResolverV2 returns a functional option for setting the Client's EndpointResolverV2 option.
func WithSigV4SigningName ¶ added in v1.27.2
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 ¶ added in v1.27.2
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 ¶ added in v1.27.2
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 ¶ added in v1.27.2
type AuthSchemeResolver interface {
ResolveAuthSchemes(context.Context, *AuthResolverParameters) ([]*smithyauth.Option, error)
}
AuthSchemeResolver returns a set of possible authentication options for an operation.
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client provides the API client to make operations call for AWS Elemental MediaPackage VOD.
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) ConfigureLogs ¶ added in v1.2.0
func (c *Client) ConfigureLogs(ctx context.Context, params *ConfigureLogsInput, optFns ...func(*Options)) (*ConfigureLogsOutput, error)
Changes the packaging group's properities to configure log subscription
func (*Client) CreateAsset ¶
func (c *Client) CreateAsset(ctx context.Context, params *CreateAssetInput, optFns ...func(*Options)) (*CreateAssetOutput, error)
Creates a new MediaPackage VOD Asset resource.
func (*Client) CreatePackagingConfiguration ¶
func (c *Client) CreatePackagingConfiguration(ctx context.Context, params *CreatePackagingConfigurationInput, optFns ...func(*Options)) (*CreatePackagingConfigurationOutput, error)
Creates a new MediaPackage VOD PackagingConfiguration resource.
func (*Client) CreatePackagingGroup ¶
func (c *Client) CreatePackagingGroup(ctx context.Context, params *CreatePackagingGroupInput, optFns ...func(*Options)) (*CreatePackagingGroupOutput, error)
Creates a new MediaPackage VOD PackagingGroup resource.
func (*Client) DeleteAsset ¶
func (c *Client) DeleteAsset(ctx context.Context, params *DeleteAssetInput, optFns ...func(*Options)) (*DeleteAssetOutput, error)
Deletes an existing MediaPackage VOD Asset resource.
func (*Client) DeletePackagingConfiguration ¶
func (c *Client) DeletePackagingConfiguration(ctx context.Context, params *DeletePackagingConfigurationInput, optFns ...func(*Options)) (*DeletePackagingConfigurationOutput, error)
Deletes a MediaPackage VOD PackagingConfiguration resource.
func (*Client) DeletePackagingGroup ¶
func (c *Client) DeletePackagingGroup(ctx context.Context, params *DeletePackagingGroupInput, optFns ...func(*Options)) (*DeletePackagingGroupOutput, error)
Deletes a MediaPackage VOD PackagingGroup resource.
func (*Client) DescribeAsset ¶
func (c *Client) DescribeAsset(ctx context.Context, params *DescribeAssetInput, optFns ...func(*Options)) (*DescribeAssetOutput, error)
Returns a description of a MediaPackage VOD Asset resource.
func (*Client) DescribePackagingConfiguration ¶
func (c *Client) DescribePackagingConfiguration(ctx context.Context, params *DescribePackagingConfigurationInput, optFns ...func(*Options)) (*DescribePackagingConfigurationOutput, error)
Returns a description of a MediaPackage VOD PackagingConfiguration resource.
func (*Client) DescribePackagingGroup ¶
func (c *Client) DescribePackagingGroup(ctx context.Context, params *DescribePackagingGroupInput, optFns ...func(*Options)) (*DescribePackagingGroupOutput, error)
Returns a description of a MediaPackage VOD PackagingGroup resource.
func (*Client) ListAssets ¶
func (c *Client) ListAssets(ctx context.Context, params *ListAssetsInput, optFns ...func(*Options)) (*ListAssetsOutput, error)
Returns a collection of MediaPackage VOD Asset resources.
func (*Client) ListPackagingConfigurations ¶
func (c *Client) ListPackagingConfigurations(ctx context.Context, params *ListPackagingConfigurationsInput, optFns ...func(*Options)) (*ListPackagingConfigurationsOutput, error)
Returns a collection of MediaPackage VOD PackagingConfiguration resources.
func (*Client) ListPackagingGroups ¶
func (c *Client) ListPackagingGroups(ctx context.Context, params *ListPackagingGroupsInput, optFns ...func(*Options)) (*ListPackagingGroupsOutput, error)
Returns a collection of MediaPackage VOD PackagingGroup resources.
func (*Client) ListTagsForResource ¶
func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, optFns ...func(*Options)) (*ListTagsForResourceOutput, error)
Returns a list of the tags assigned to the specified resource.
func (*Client) Options ¶ added in v1.28.0
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) TagResource ¶
func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
Adds tags to the specified resource. You can specify one or more tags to add.
func (*Client) UntagResource ¶
func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
Removes tags from the specified resource. You can specify one or more tags to remove.
func (*Client) UpdatePackagingGroup ¶
func (c *Client) UpdatePackagingGroup(ctx context.Context, params *UpdatePackagingGroupInput, optFns ...func(*Options)) (*UpdatePackagingGroupOutput, error)
Updates a specific packaging group. You can't change the id attribute or any other system-generated attributes.
type ConfigureLogsInput ¶ added in v1.2.0
type ConfigureLogsInput struct { // The ID of a MediaPackage VOD PackagingGroup resource. // // This member is required. Id *string // Configure egress access logging. EgressAccessLogs *types.EgressAccessLogs // contains filtered or unexported fields }
The option to configure log subscription.
type ConfigureLogsOutput ¶ added in v1.2.0
type ConfigureLogsOutput struct { // The ARN of the PackagingGroup. Arn *string // CDN Authorization credentials Authorization *types.Authorization // The time the PackagingGroup was created. CreatedAt *string // The fully qualified domain name for Assets in the PackagingGroup. DomainName *string // Configure egress access logging. EgressAccessLogs *types.EgressAccessLogs // The ID of the PackagingGroup. Id *string // A collection of tags associated with a resource Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type CreateAssetInput ¶
type CreateAssetInput struct { // The unique identifier for the Asset. // // This member is required. Id *string // The ID of the PackagingGroup for the Asset. // // This member is required. PackagingGroupId *string // ARN of the source object in S3. // // This member is required. SourceArn *string // The IAM role ARN used to access the source S3 bucket. // // This member is required. SourceRoleArn *string // The resource ID to include in SPEKE key requests. ResourceId *string // A collection of tags associated with a resource Tags map[string]string // contains filtered or unexported fields }
A new MediaPackage VOD Asset configuration.
type CreateAssetOutput ¶
type CreateAssetOutput struct { // The ARN of the Asset. Arn *string // The time the Asset was initially submitted for Ingest. CreatedAt *string // The list of egress endpoints available for the Asset. EgressEndpoints []types.EgressEndpoint // The unique identifier for the Asset. Id *string // The ID of the PackagingGroup for the Asset. PackagingGroupId *string // The resource ID to include in SPEKE key requests. ResourceId *string // ARN of the source object in S3. SourceArn *string // The IAM role_arn used to access the source S3 bucket. SourceRoleArn *string // A collection of tags associated with a resource Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type CreatePackagingConfigurationInput ¶
type CreatePackagingConfigurationInput struct { // The ID of the PackagingConfiguration. // // This member is required. Id *string // The ID of a PackagingGroup. // // This member is required. PackagingGroupId *string // A CMAF packaging configuration. CmafPackage *types.CmafPackage // A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration. DashPackage *types.DashPackage // An HTTP Live Streaming (HLS) packaging configuration. HlsPackage *types.HlsPackage // A Microsoft Smooth Streaming (MSS) PackagingConfiguration. MssPackage *types.MssPackage // A collection of tags associated with a resource Tags map[string]string // contains filtered or unexported fields }
A new MediaPackage VOD PackagingConfiguration resource configuration.
type CreatePackagingConfigurationOutput ¶
type CreatePackagingConfigurationOutput struct { // The ARN of the PackagingConfiguration. Arn *string // A CMAF packaging configuration. CmafPackage *types.CmafPackage // The time the PackagingConfiguration was created. CreatedAt *string // A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration. DashPackage *types.DashPackage // An HTTP Live Streaming (HLS) packaging configuration. HlsPackage *types.HlsPackage // The ID of the PackagingConfiguration. Id *string // A Microsoft Smooth Streaming (MSS) PackagingConfiguration. MssPackage *types.MssPackage // The ID of a PackagingGroup. PackagingGroupId *string // A collection of tags associated with a resource Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type CreatePackagingGroupInput ¶
type CreatePackagingGroupInput struct { // The ID of the PackagingGroup. // // This member is required. Id *string // CDN Authorization credentials Authorization *types.Authorization // Configure egress access logging. EgressAccessLogs *types.EgressAccessLogs // A collection of tags associated with a resource Tags map[string]string // contains filtered or unexported fields }
A new MediaPackage VOD PackagingGroup resource configuration.
type CreatePackagingGroupOutput ¶
type CreatePackagingGroupOutput struct { // The ARN of the PackagingGroup. Arn *string // CDN Authorization credentials Authorization *types.Authorization // The time the PackagingGroup was created. CreatedAt *string // The fully qualified domain name for Assets in the PackagingGroup. DomainName *string // Configure egress access logging. EgressAccessLogs *types.EgressAccessLogs // The ID of the PackagingGroup. Id *string // A collection of tags associated with a resource Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DeleteAssetInput ¶
type DeleteAssetInput struct { // The ID of the MediaPackage VOD Asset resource to delete. // // This member is required. Id *string // contains filtered or unexported fields }
type DeleteAssetOutput ¶
type DeleteAssetOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DeletePackagingConfigurationInput ¶
type DeletePackagingConfigurationInput struct { // The ID of the MediaPackage VOD PackagingConfiguration resource to delete. // // This member is required. Id *string // contains filtered or unexported fields }
type DeletePackagingConfigurationOutput ¶
type DeletePackagingConfigurationOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DeletePackagingGroupInput ¶
type DeletePackagingGroupInput struct { // The ID of the MediaPackage VOD PackagingGroup resource to delete. // // This member is required. Id *string // contains filtered or unexported fields }
type DeletePackagingGroupOutput ¶
type DeletePackagingGroupOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribeAssetInput ¶
type DescribeAssetInput struct { // The ID of an MediaPackage VOD Asset resource. // // This member is required. Id *string // contains filtered or unexported fields }
type DescribeAssetOutput ¶
type DescribeAssetOutput struct { // The ARN of the Asset. Arn *string // The time the Asset was initially submitted for Ingest. CreatedAt *string // The list of egress endpoints available for the Asset. EgressEndpoints []types.EgressEndpoint // The unique identifier for the Asset. Id *string // The ID of the PackagingGroup for the Asset. PackagingGroupId *string // The resource ID to include in SPEKE key requests. ResourceId *string // ARN of the source object in S3. SourceArn *string // The IAM role_arn used to access the source S3 bucket. SourceRoleArn *string // A collection of tags associated with a resource Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribePackagingConfigurationInput ¶
type DescribePackagingConfigurationInput struct { // The ID of a MediaPackage VOD PackagingConfiguration resource. // // This member is required. Id *string // contains filtered or unexported fields }
type DescribePackagingConfigurationOutput ¶
type DescribePackagingConfigurationOutput struct { // The ARN of the PackagingConfiguration. Arn *string // A CMAF packaging configuration. CmafPackage *types.CmafPackage // The time the PackagingConfiguration was created. CreatedAt *string // A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration. DashPackage *types.DashPackage // An HTTP Live Streaming (HLS) packaging configuration. HlsPackage *types.HlsPackage // The ID of the PackagingConfiguration. Id *string // A Microsoft Smooth Streaming (MSS) PackagingConfiguration. MssPackage *types.MssPackage // The ID of a PackagingGroup. PackagingGroupId *string // A collection of tags associated with a resource Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribePackagingGroupInput ¶
type DescribePackagingGroupInput struct { // The ID of a MediaPackage VOD PackagingGroup resource. // // This member is required. Id *string // contains filtered or unexported fields }
type DescribePackagingGroupOutput ¶
type DescribePackagingGroupOutput struct { // The approximate asset count of the PackagingGroup. ApproximateAssetCount *int32 // The ARN of the PackagingGroup. Arn *string // CDN Authorization credentials Authorization *types.Authorization // The time the PackagingGroup was created. CreatedAt *string // The fully qualified domain name for Assets in the PackagingGroup. DomainName *string // Configure egress access logging. EgressAccessLogs *types.EgressAccessLogs // The ID of the PackagingGroup. Id *string // A collection of tags associated with a resource Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type EndpointParameters ¶ added in v1.23.0
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 ¶ added in v1.23.0
func (p EndpointParameters) ValidateRequired() error
ValidateRequired validates required parameters are set.
func (EndpointParameters) WithDefaults ¶ added in v1.23.0
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 ¶ added in v1.1.0
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 ¶ added in v0.29.0
type EndpointResolverOptions = internalendpoints.Options
EndpointResolverOptions is the service endpoint resolver options
type EndpointResolverV2 ¶ added in v1.23.0
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 ¶ added in v1.23.0
func NewDefaultEndpointResolverV2() EndpointResolverV2
type HTTPSignerV4 ¶
type ListAssetsAPIClient ¶ added in v0.30.0
type ListAssetsAPIClient interface {
ListAssets(context.Context, *ListAssetsInput, ...func(*Options)) (*ListAssetsOutput, error)
}
ListAssetsAPIClient is a client that implements the ListAssets operation.
type ListAssetsInput ¶
type ListAssetsInput struct { // Upper bound on number of records to return. MaxResults *int32 // A token used to resume pagination from the end of a previous request. NextToken *string // Returns Assets associated with the specified PackagingGroup. PackagingGroupId *string // contains filtered or unexported fields }
type ListAssetsOutput ¶
type ListAssetsOutput struct { // A list of MediaPackage VOD Asset resources. Assets []types.AssetShallow // A token that can be used to resume pagination from the end of the collection. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListAssetsPaginator ¶ added in v0.30.0
type ListAssetsPaginator struct {
// contains filtered or unexported fields
}
ListAssetsPaginator is a paginator for ListAssets
func NewListAssetsPaginator ¶ added in v0.30.0
func NewListAssetsPaginator(client ListAssetsAPIClient, params *ListAssetsInput, optFns ...func(*ListAssetsPaginatorOptions)) *ListAssetsPaginator
NewListAssetsPaginator returns a new ListAssetsPaginator
func (*ListAssetsPaginator) HasMorePages ¶ added in v0.30.0
func (p *ListAssetsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListAssetsPaginator) NextPage ¶ added in v0.30.0
func (p *ListAssetsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListAssetsOutput, error)
NextPage retrieves the next ListAssets page.
type ListAssetsPaginatorOptions ¶ added in v0.30.0
type ListAssetsPaginatorOptions struct { // Upper bound on number of records to return. 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 }
ListAssetsPaginatorOptions is the paginator options for ListAssets
type ListPackagingConfigurationsAPIClient ¶ added in v0.30.0
type ListPackagingConfigurationsAPIClient interface {
ListPackagingConfigurations(context.Context, *ListPackagingConfigurationsInput, ...func(*Options)) (*ListPackagingConfigurationsOutput, error)
}
ListPackagingConfigurationsAPIClient is a client that implements the ListPackagingConfigurations operation.
type ListPackagingConfigurationsInput ¶
type ListPackagingConfigurationsInput struct { // Upper bound on number of records to return. MaxResults *int32 // A token used to resume pagination from the end of a previous request. NextToken *string // Returns MediaPackage VOD PackagingConfigurations associated with the specified // PackagingGroup. PackagingGroupId *string // contains filtered or unexported fields }
type ListPackagingConfigurationsOutput ¶
type ListPackagingConfigurationsOutput struct { // A token that can be used to resume pagination from the end of the collection. NextToken *string // A list of MediaPackage VOD PackagingConfiguration resources. PackagingConfigurations []types.PackagingConfiguration // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListPackagingConfigurationsPaginator ¶ added in v0.30.0
type ListPackagingConfigurationsPaginator struct {
// contains filtered or unexported fields
}
ListPackagingConfigurationsPaginator is a paginator for ListPackagingConfigurations
func NewListPackagingConfigurationsPaginator ¶ added in v0.30.0
func NewListPackagingConfigurationsPaginator(client ListPackagingConfigurationsAPIClient, params *ListPackagingConfigurationsInput, optFns ...func(*ListPackagingConfigurationsPaginatorOptions)) *ListPackagingConfigurationsPaginator
NewListPackagingConfigurationsPaginator returns a new ListPackagingConfigurationsPaginator
func (*ListPackagingConfigurationsPaginator) HasMorePages ¶ added in v0.30.0
func (p *ListPackagingConfigurationsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListPackagingConfigurationsPaginator) NextPage ¶ added in v0.30.0
func (p *ListPackagingConfigurationsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListPackagingConfigurationsOutput, error)
NextPage retrieves the next ListPackagingConfigurations page.
type ListPackagingConfigurationsPaginatorOptions ¶ added in v0.30.0
type ListPackagingConfigurationsPaginatorOptions struct { // Upper bound on number of records to return. 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 }
ListPackagingConfigurationsPaginatorOptions is the paginator options for ListPackagingConfigurations
type ListPackagingGroupsAPIClient ¶ added in v0.30.0
type ListPackagingGroupsAPIClient interface {
ListPackagingGroups(context.Context, *ListPackagingGroupsInput, ...func(*Options)) (*ListPackagingGroupsOutput, error)
}
ListPackagingGroupsAPIClient is a client that implements the ListPackagingGroups operation.
type ListPackagingGroupsOutput ¶
type ListPackagingGroupsOutput struct { // A token that can be used to resume pagination from the end of the collection. NextToken *string // A list of MediaPackage VOD PackagingGroup resources. PackagingGroups []types.PackagingGroup // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListPackagingGroupsPaginator ¶ added in v0.30.0
type ListPackagingGroupsPaginator struct {
// contains filtered or unexported fields
}
ListPackagingGroupsPaginator is a paginator for ListPackagingGroups
func NewListPackagingGroupsPaginator ¶ added in v0.30.0
func NewListPackagingGroupsPaginator(client ListPackagingGroupsAPIClient, params *ListPackagingGroupsInput, optFns ...func(*ListPackagingGroupsPaginatorOptions)) *ListPackagingGroupsPaginator
NewListPackagingGroupsPaginator returns a new ListPackagingGroupsPaginator
func (*ListPackagingGroupsPaginator) HasMorePages ¶ added in v0.30.0
func (p *ListPackagingGroupsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListPackagingGroupsPaginator) NextPage ¶ added in v0.30.0
func (p *ListPackagingGroupsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListPackagingGroupsOutput, error)
NextPage retrieves the next ListPackagingGroups page.
type ListPackagingGroupsPaginatorOptions ¶ added in v0.30.0
type ListPackagingGroupsPaginatorOptions struct { // Upper bound on number of records to return. 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 }
ListPackagingGroupsPaginatorOptions is the paginator options for ListPackagingGroups
type ListTagsForResourceInput ¶
type ListTagsForResourceInput struct { // The Amazon Resource Name (ARN) for the resource. You can get this from the // response to any request to the resource. // // This member is required. ResourceArn *string // contains filtered or unexported fields }
type ListTagsForResourceOutput ¶
type ListTagsForResourceOutput struct { // A collection of tags associated with a resource Tags map[string]string // 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 // 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. 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. 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) GetIdentityResolver ¶ added in v1.27.2
func (o Options) GetIdentityResolver(schemeID string) smithyauth.IdentityResolver
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 TagResourceInput ¶
type TagResourceInput struct { // The Amazon Resource Name (ARN) for the resource. You can get this from the // response to any request to the resource. // // This member is required. ResourceArn *string // A collection of tags associated with a resource // // This member is required. Tags map[string]string // 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 { // The Amazon Resource Name (ARN) for the resource. You can get this from the // response to any request to the resource. // // This member is required. ResourceArn *string // A comma-separated list of the tag keys to remove from the resource. // // 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 }
type UpdatePackagingGroupInput ¶
type UpdatePackagingGroupInput struct { // The ID of a MediaPackage VOD PackagingGroup resource. // // This member is required. Id *string // CDN Authorization credentials Authorization *types.Authorization // contains filtered or unexported fields }
A MediaPackage VOD PackagingGroup resource configuration.
type UpdatePackagingGroupOutput ¶
type UpdatePackagingGroupOutput struct { // The approximate asset count of the PackagingGroup. ApproximateAssetCount *int32 // The ARN of the PackagingGroup. Arn *string // CDN Authorization credentials Authorization *types.Authorization // The time the PackagingGroup was created. CreatedAt *string // The fully qualified domain name for Assets in the PackagingGroup. DomainName *string // Configure egress access logging. EgressAccessLogs *types.EgressAccessLogs // The ID of the PackagingGroup. Id *string // A collection of tags associated with a resource Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Source Files ¶
- api_client.go
- api_op_ConfigureLogs.go
- api_op_CreateAsset.go
- api_op_CreatePackagingConfiguration.go
- api_op_CreatePackagingGroup.go
- api_op_DeleteAsset.go
- api_op_DeletePackagingConfiguration.go
- api_op_DeletePackagingGroup.go
- api_op_DescribeAsset.go
- api_op_DescribePackagingConfiguration.go
- api_op_DescribePackagingGroup.go
- api_op_ListAssets.go
- api_op_ListPackagingConfigurations.go
- api_op_ListPackagingGroups.go
- api_op_ListTagsForResource.go
- api_op_TagResource.go
- api_op_UntagResource.go
- api_op_UpdatePackagingGroup.go
- auth.go
- deserializers.go
- doc.go
- endpoints.go
- go_module_metadata.go
- options.go
- serializers.go
- validators.go