Struct aws_sdk_pricing::client::Client
source · [−]pub struct Client { /* private fields */ }Expand description
Client for AWS Price List Service
Client for invoking operations on AWS Price List Service. Each operation on AWS Price List Service is a method on this
this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.
Examples
Constructing a client and invoking an operation
// create a shared configuration. This can be used & shared between multiple service clients.
let shared_config = aws_config::load_from_env().await;
let client = aws_sdk_pricing::Client::new(&shared_config);
// invoke an operation
/* let rsp = client
.<operation_name>().
.<param>("some value")
.send().await; */Constructing a client with custom configuration
use aws_config::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_pricing::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_pricing::Client::from_conf(config);Implementations
sourceimpl Client
impl Client
sourcepub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
pub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
Creates a client with the given service configuration.
sourceimpl Client
impl Client
sourcepub fn describe_services(&self) -> DescribeServices
pub fn describe_services(&self) -> DescribeServices
Constructs a fluent builder for the DescribeServices operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
service_code(impl Into<String>)/set_service_code(Option<String>):The code for the service whose information you want to retrieve, such as
AmazonEC2. You can use theServiceCodeto filter the results in aGetProductscall. To retrieve a list of all services, leave this blank.format_version(impl Into<String>)/set_format_version(Option<String>):The format version that you want the response to be in.
Valid values are:
aws_v1next_token(impl Into<String>)/set_next_token(Option<String>):The pagination token that indicates the next set of results that you want to retrieve.
max_results(i32)/set_max_results(Option<i32>):The maximum number of results that you want returned in the response.
- On success, responds with
DescribeServicesOutputwith field(s):services(Option<Vec<Service>>):The service metadata for the service or services in the response.
format_version(Option<String>):The format version of the response. For example,
aws_v1.next_token(Option<String>):The pagination token for the next set of retrievable results.
- On failure, responds with
SdkError<DescribeServicesError>
sourcepub fn get_attribute_values(&self) -> GetAttributeValues
pub fn get_attribute_values(&self) -> GetAttributeValues
Constructs a fluent builder for the GetAttributeValues operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
service_code(impl Into<String>)/set_service_code(Option<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.attribute_name(impl Into<String>)/set_attribute_name(Option<String>):The name of the attribute that you want to retrieve the values for, such as
volumeType.next_token(impl Into<String>)/set_next_token(Option<String>):The pagination token that indicates the next set of results that you want to retrieve.
max_results(i32)/set_max_results(Option<i32>):The maximum number of results to return in response.
- On success, responds with
GetAttributeValuesOutputwith field(s):attribute_values(Option<Vec<AttributeValue>>):The list of values for an attribute. For example,
Throughput Optimized HDDandProvisioned IOPSare two available values for theAmazonEC2volumeType.next_token(Option<String>):The pagination token that indicates the next set of results to retrieve.
- On failure, responds with
SdkError<GetAttributeValuesError>
sourcepub fn get_products(&self) -> GetProducts
pub fn get_products(&self) -> GetProducts
Constructs a fluent builder for the GetProducts operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
service_code(impl Into<String>)/set_service_code(Option<String>):The code for the service whose products you want to retrieve.
filters(Vec<Filter>)/set_filters(Option<Vec<Filter>>):The list of filters that limit the returned products. only products that match all filters are returned.
format_version(impl Into<String>)/set_format_version(Option<String>):The format version that you want the response to be in.
Valid values are:
aws_v1next_token(impl Into<String>)/set_next_token(Option<String>):The pagination token that indicates the next set of results that you want to retrieve.
max_results(i32)/set_max_results(Option<i32>):The maximum number of results to return in the response.
- On success, responds with
GetProductsOutputwith field(s):format_version(Option<String>):The format version of the response. For example, aws_v1.
price_list(Option<Vec<String>>):The list of products that match your filters. The list contains both the product metadata and the price information.
next_token(Option<String>):The pagination token that indicates the next set of results to retrieve.
- On failure, responds with
SdkError<GetProductsError>
sourceimpl Client
impl Client
sourcepub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Selfwhere
C: SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
pub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Selfwhere
C: SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
Creates a client with the given service config and connector override.