Documentation ¶
Overview ¶
Package pricing provides the API client, operations, and parameter types for AWS Price List Service.
The Amazon Web Services Price List API is a centralized and convenient way to programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List uses standardized product attributes such as Location , Storage Class , and Operating System , and provides prices at the SKU level. You can use the Amazon Web Services Price List to do the following:
Build cost control and scenario planning tools
Reconcile billing data
Forecast future spend for budgeting purposes
Provide cost benefit analysis that compare your internal workloads with Amazon Web Services
Use GetServices without a service code to retrieve the service codes for all Amazon Web Services services, then GetServices with a service code to retrieve the attribute names for that service. After you have the service code and attribute names, you can use GetAttributeValues to see what values are available for an attribute. With the service code and an attribute name and value, you can use GetProducts to find specific products that you're interested in, such as an AmazonEC2 instance, with a Provisioned IOPS volumeType .
For more information, see Using the Amazon Web Services Price List API in the Billing User Guide.
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) DescribeServices(ctx context.Context, params *DescribeServicesInput, optFns ...func(*Options)) (*DescribeServicesOutput, error)
- func (c *Client) GetAttributeValues(ctx context.Context, params *GetAttributeValuesInput, optFns ...func(*Options)) (*GetAttributeValuesOutput, error)
- func (c *Client) GetPriceListFileUrl(ctx context.Context, params *GetPriceListFileUrlInput, ...) (*GetPriceListFileUrlOutput, error)
- func (c *Client) GetProducts(ctx context.Context, params *GetProductsInput, optFns ...func(*Options)) (*GetProductsOutput, error)
- func (c *Client) ListPriceLists(ctx context.Context, params *ListPriceListsInput, optFns ...func(*Options)) (*ListPriceListsOutput, error)
- func (c *Client) Options() Options
- type DescribeServicesAPIClient
- type DescribeServicesInput
- type DescribeServicesOutput
- type DescribeServicesPaginator
- type DescribeServicesPaginatorOptions
- type EndpointParameters
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type EndpointResolverV2
- type GetAttributeValuesAPIClient
- type GetAttributeValuesInput
- type GetAttributeValuesOutput
- type GetAttributeValuesPaginator
- type GetAttributeValuesPaginatorOptions
- type GetPriceListFileUrlInput
- type GetPriceListFileUrlOutput
- type GetProductsAPIClient
- type GetProductsInput
- type GetProductsOutput
- type GetProductsPaginator
- type GetProductsPaginatorOptions
- type HTTPClient
- type HTTPSignerV4
- type ListPriceListsAPIClient
- type ListPriceListsInput
- type ListPriceListsOutput
- type ListPriceListsPaginator
- type ListPriceListsPaginatorOptions
- type Options
- type ResolveEndpoint
Constants ¶
const ServiceAPIVersion = "2017-10-15"
const ServiceID = "Pricing"
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.21.0
func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
WithEndpointResolverV2 returns a functional option for setting the Client's EndpointResolverV2 option.
func WithSigV4SigningName ¶ added in v1.23.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.23.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.23.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.23.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 Price List 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) DescribeServices ¶
func (c *Client) DescribeServices(ctx context.Context, params *DescribeServicesInput, optFns ...func(*Options)) (*DescribeServicesOutput, error)
Returns the metadata for one service or a list of the metadata for all services. Use this without a service code to get the service codes for all services. Use it with a service code, such as AmazonEC2 , to get information specific to that service, such as the attribute names available for that service. For example, some of the attribute names available for EC2 are volumeType , maxIopsVolume , operation , locationType , and instanceCapacity10xlarge .
func (*Client) GetAttributeValues ¶
func (c *Client) GetAttributeValues(ctx context.Context, params *GetAttributeValuesInput, optFns ...func(*Options)) (*GetAttributeValuesOutput, error)
Returns a list of attribute values. Attributes are similar to the details in a Price List API offer file. For a list of available attributes, see Offer File Definitionsin the Billing and Cost Management User Guide.
func (*Client) GetPriceListFileUrl ¶ added in v1.19.0
func (c *Client) GetPriceListFileUrl(ctx context.Context, params *GetPriceListFileUrlInput, optFns ...func(*Options)) (*GetPriceListFileUrlOutput, error)
This feature is in preview release and is subject to change. Your use of
Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms(Section 1.10).
This returns the URL that you can retrieve your Price List file from. This URL is based on the PriceListArn and FileFormat that you retrieve from the ListPriceLists response.
func (*Client) GetProducts ¶
func (c *Client) GetProducts(ctx context.Context, params *GetProductsInput, optFns ...func(*Options)) (*GetProductsOutput, error)
Returns a list of all products that match the filter criteria.
func (*Client) ListPriceLists ¶ added in v1.19.0
func (c *Client) ListPriceLists(ctx context.Context, params *ListPriceListsInput, optFns ...func(*Options)) (*ListPriceListsOutput, error)
This feature is in preview release and is subject to change. Your use of
Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms(Section 1.10).
This returns a list of Price List references that the requester if authorized to view, given a ServiceCode , CurrencyCode , and an EffectiveDate . Use without a RegionCode filter to list Price List references from all available Amazon Web Services Regions. Use with a RegionCode filter to get the Price List reference that's specific to a specific Amazon Web Services Region. You can use the PriceListArn from the response to get your preferred Price List files through the GetPriceListFileUrlAPI.
type DescribeServicesAPIClient ¶ added in v0.30.0
type DescribeServicesAPIClient interface {
DescribeServices(context.Context, *DescribeServicesInput, ...func(*Options)) (*DescribeServicesOutput, error)
}
DescribeServicesAPIClient is a client that implements the DescribeServices operation.
type DescribeServicesInput ¶
type DescribeServicesInput struct { // The format version that you want the response to be in. // // Valid values are: aws_v1 FormatVersion *string // The maximum number of results that you want returned in the response. MaxResults *int32 // The pagination token that indicates the next set of results that you want to // retrieve. NextToken *string // The code for the service whose information you want to retrieve, such as // AmazonEC2 . You can use the ServiceCode to filter the results in a GetProducts // call. To retrieve a list of all services, leave this blank. ServiceCode *string // contains filtered or unexported fields }
type DescribeServicesOutput ¶
type DescribeServicesOutput struct { // The format version of the response. For example, aws_v1 . FormatVersion *string // The pagination token for the next set of retrievable results. NextToken *string // The service metadata for the service or services in the response. Services []types.Service // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribeServicesPaginator ¶ added in v0.30.0
type DescribeServicesPaginator struct {
// contains filtered or unexported fields
}
DescribeServicesPaginator is a paginator for DescribeServices
func NewDescribeServicesPaginator ¶ added in v0.30.0
func NewDescribeServicesPaginator(client DescribeServicesAPIClient, params *DescribeServicesInput, optFns ...func(*DescribeServicesPaginatorOptions)) *DescribeServicesPaginator
NewDescribeServicesPaginator returns a new DescribeServicesPaginator
func (*DescribeServicesPaginator) HasMorePages ¶ added in v0.30.0
func (p *DescribeServicesPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*DescribeServicesPaginator) NextPage ¶ added in v0.30.0
func (p *DescribeServicesPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*DescribeServicesOutput, error)
NextPage retrieves the next DescribeServices page.
type DescribeServicesPaginatorOptions ¶ added in v0.30.0
type DescribeServicesPaginatorOptions struct { // The maximum number of results that you want returned in the response. 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 }
DescribeServicesPaginatorOptions is the paginator options for DescribeServices
type EndpointParameters ¶ added in v1.21.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.21.0
func (p EndpointParameters) ValidateRequired() error
ValidateRequired validates required parameters are set.
func (EndpointParameters) WithDefaults ¶ added in v1.21.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.21.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.21.0
func NewDefaultEndpointResolverV2() EndpointResolverV2
type GetAttributeValuesAPIClient ¶ added in v0.30.0
type GetAttributeValuesAPIClient interface {
GetAttributeValues(context.Context, *GetAttributeValuesInput, ...func(*Options)) (*GetAttributeValuesOutput, error)
}
GetAttributeValuesAPIClient is a client that implements the GetAttributeValues operation.
type GetAttributeValuesInput ¶
type GetAttributeValuesInput struct { // The name of the attribute that you want to retrieve the values for, such as // volumeType . // // This member is required. AttributeName *string // The service code for the service whose attributes you want to retrieve. For // example, if you want the retrieve an EC2 attribute, use AmazonEC2 . // // This member is required. ServiceCode *string // The maximum number of results to return in response. MaxResults *int32 // The pagination token that indicates the next set of results that you want to // retrieve. NextToken *string // contains filtered or unexported fields }
type GetAttributeValuesOutput ¶
type GetAttributeValuesOutput struct { // The list of values for an attribute. For example, Throughput Optimized HDD and // Provisioned IOPS are two available values for the AmazonEC2 volumeType . AttributeValues []types.AttributeValue // The pagination token that indicates the next set of results to retrieve. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type GetAttributeValuesPaginator ¶ added in v0.30.0
type GetAttributeValuesPaginator struct {
// contains filtered or unexported fields
}
GetAttributeValuesPaginator is a paginator for GetAttributeValues
func NewGetAttributeValuesPaginator ¶ added in v0.30.0
func NewGetAttributeValuesPaginator(client GetAttributeValuesAPIClient, params *GetAttributeValuesInput, optFns ...func(*GetAttributeValuesPaginatorOptions)) *GetAttributeValuesPaginator
NewGetAttributeValuesPaginator returns a new GetAttributeValuesPaginator
func (*GetAttributeValuesPaginator) HasMorePages ¶ added in v0.30.0
func (p *GetAttributeValuesPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*GetAttributeValuesPaginator) NextPage ¶ added in v0.30.0
func (p *GetAttributeValuesPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*GetAttributeValuesOutput, error)
NextPage retrieves the next GetAttributeValues page.
type GetAttributeValuesPaginatorOptions ¶ added in v0.30.0
type GetAttributeValuesPaginatorOptions struct { // The maximum number of results to return in response. 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 }
GetAttributeValuesPaginatorOptions is the paginator options for GetAttributeValues
type GetPriceListFileUrlInput ¶ added in v1.19.0
type GetPriceListFileUrlInput struct { // The format that you want to retrieve your Price List files in. The FileFormat // can be obtained from the [ListPriceLists]response. // // [ListPriceLists]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_ListPriceLists.html // // This member is required. FileFormat *string // The unique identifier that maps to where your Price List files are located. // PriceListArn can be obtained from the [ListPriceLists] response. // // [ListPriceLists]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_ListPriceLists.html // // This member is required. PriceListArn *string // contains filtered or unexported fields }
type GetPriceListFileUrlOutput ¶ added in v1.19.0
type GetPriceListFileUrlOutput struct { // The URL to download your Price List file from. Url *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type GetProductsAPIClient ¶ added in v0.30.0
type GetProductsAPIClient interface {
GetProducts(context.Context, *GetProductsInput, ...func(*Options)) (*GetProductsOutput, error)
}
GetProductsAPIClient is a client that implements the GetProducts operation.
type GetProductsInput ¶
type GetProductsInput struct { // The code for the service whose products you want to retrieve. // // This member is required. ServiceCode *string // The list of filters that limit the returned products. only products that match // all filters are returned. Filters []types.Filter // The format version that you want the response to be in. // // Valid values are: aws_v1 FormatVersion *string // The maximum number of results to return in the response. MaxResults *int32 // The pagination token that indicates the next set of results that you want to // retrieve. NextToken *string // contains filtered or unexported fields }
type GetProductsOutput ¶
type GetProductsOutput struct { // The format version of the response. For example, aws_v1. FormatVersion *string // The pagination token that indicates the next set of results to retrieve. NextToken *string // The list of products that match your filters. The list contains both the // product metadata and the price information. PriceList []string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type GetProductsPaginator ¶ added in v0.30.0
type GetProductsPaginator struct {
// contains filtered or unexported fields
}
GetProductsPaginator is a paginator for GetProducts
func NewGetProductsPaginator ¶ added in v0.30.0
func NewGetProductsPaginator(client GetProductsAPIClient, params *GetProductsInput, optFns ...func(*GetProductsPaginatorOptions)) *GetProductsPaginator
NewGetProductsPaginator returns a new GetProductsPaginator
func (*GetProductsPaginator) HasMorePages ¶ added in v0.30.0
func (p *GetProductsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*GetProductsPaginator) NextPage ¶ added in v0.30.0
func (p *GetProductsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*GetProductsOutput, error)
NextPage retrieves the next GetProducts page.
type GetProductsPaginatorOptions ¶ added in v0.30.0
type GetProductsPaginatorOptions struct { // The maximum number of results to return in the response. 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 }
GetProductsPaginatorOptions is the paginator options for GetProducts
type HTTPSignerV4 ¶
type ListPriceListsAPIClient ¶ added in v1.19.0
type ListPriceListsAPIClient interface {
ListPriceLists(context.Context, *ListPriceListsInput, ...func(*Options)) (*ListPriceListsOutput, error)
}
ListPriceListsAPIClient is a client that implements the ListPriceLists operation.
type ListPriceListsInput ¶ added in v1.19.0
type ListPriceListsInput struct { // The three alphabetical character ISO-4217 currency code that the Price List // files are denominated in. // // This member is required. CurrencyCode *string // The date that the Price List file prices are effective from. // // This member is required. EffectiveDate *time.Time // The service code or the Savings Plan service code for the attributes that you // want to retrieve. For example, to get the list of applicable Amazon EC2 price // lists, use AmazonEC2 . For a full list of service codes containing On-Demand and // Reserved Instance (RI) pricing, use the [DescribeServices]API. // // To retrieve the Reserved Instance and Compute Savings Plan price lists, use // ComputeSavingsPlans . // // To retrieve Machine Learning Savings Plans price lists, use // MachineLearningSavingsPlans . // // [DescribeServices]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_DescribeServices.html#awscostmanagement-pricing_DescribeServices-request-FormatVersion // // This member is required. ServiceCode *string // The maximum number of results to return in the response. MaxResults *int32 // The pagination token that indicates the next set of results that you want to // retrieve. NextToken *string // This is used to filter the Price List by Amazon Web Services Region. For // example, to get the price list only for the US East (N. Virginia) Region, use // us-east-1 . If nothing is specified, you retrieve price lists for all applicable // Regions. The available RegionCode list can be retrieved from [GetAttributeValues] API. // // [GetAttributeValues]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_GetAttributeValues.html RegionCode *string // contains filtered or unexported fields }
type ListPriceListsOutput ¶ added in v1.19.0
type ListPriceListsOutput struct { // The pagination token that indicates the next set of results to retrieve. NextToken *string // The type of price list references that match your request. PriceLists []types.PriceList // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListPriceListsPaginator ¶ added in v1.19.0
type ListPriceListsPaginator struct {
// contains filtered or unexported fields
}
ListPriceListsPaginator is a paginator for ListPriceLists
func NewListPriceListsPaginator ¶ added in v1.19.0
func NewListPriceListsPaginator(client ListPriceListsAPIClient, params *ListPriceListsInput, optFns ...func(*ListPriceListsPaginatorOptions)) *ListPriceListsPaginator
NewListPriceListsPaginator returns a new ListPriceListsPaginator
func (*ListPriceListsPaginator) HasMorePages ¶ added in v1.19.0
func (p *ListPriceListsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListPriceListsPaginator) NextPage ¶ added in v1.19.0
func (p *ListPriceListsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListPriceListsOutput, error)
NextPage retrieves the next ListPriceLists page.
type ListPriceListsPaginatorOptions ¶ added in v1.19.0
type ListPriceListsPaginatorOptions struct { // The maximum number of results to return in the response. 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 }
ListPriceListsPaginatorOptions is the paginator options for ListPriceLists
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 client meter provider. MeterProvider metrics.MeterProvider // 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 client tracer provider. TracerProvider tracing.TracerProvider // 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.23.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