costexplorer

package
v1.32.11 Latest Latest
Warning

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

Go to latest
Published: Jun 26, 2020 License: Apache-2.0 Imports: 9 Imported by: 92

Documentation

Overview

Package costexplorer provides the client and types for making API requests to AWS Cost Explorer Service.

The Cost Explorer API enables you to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granular data, such as the number of daily write operations for Amazon DynamoDB database tables in your production environment.

Service Endpoint

The Cost Explorer API provides the following endpoint:

For information about costs associated with the Cost Explorer API, see AWS Cost Management Pricing (http://aws.amazon.com/aws-cost-management/pricing/).

See https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25 for more information on this service.

See costexplorer package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/costexplorer/

Using the Client

To contact AWS Cost Explorer Service with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the AWS Cost Explorer Service client CostExplorer for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/costexplorer/#New

Index

Constants

View Source
const (
	// AccountScopePayer is a AccountScope enum value
	AccountScopePayer = "PAYER"

	// AccountScopeLinked is a AccountScope enum value
	AccountScopeLinked = "LINKED"
)
View Source
const (
	// ContextCostAndUsage is a Context enum value
	ContextCostAndUsage = "COST_AND_USAGE"

	// ContextReservations is a Context enum value
	ContextReservations = "RESERVATIONS"

	// ContextSavingsPlans is a Context enum value
	ContextSavingsPlans = "SAVINGS_PLANS"
)
View Source
const (
	// DimensionAz is a Dimension enum value
	DimensionAz = "AZ"

	// DimensionInstanceType is a Dimension enum value
	DimensionInstanceType = "INSTANCE_TYPE"

	// DimensionLinkedAccount is a Dimension enum value
	DimensionLinkedAccount = "LINKED_ACCOUNT"

	// DimensionLinkedAccountName is a Dimension enum value
	DimensionLinkedAccountName = "LINKED_ACCOUNT_NAME"

	// DimensionOperation is a Dimension enum value
	DimensionOperation = "OPERATION"

	// DimensionPurchaseType is a Dimension enum value
	DimensionPurchaseType = "PURCHASE_TYPE"

	// DimensionRegion is a Dimension enum value
	DimensionRegion = "REGION"

	// DimensionService is a Dimension enum value
	DimensionService = "SERVICE"

	// DimensionServiceCode is a Dimension enum value
	DimensionServiceCode = "SERVICE_CODE"

	// DimensionUsageType is a Dimension enum value
	DimensionUsageType = "USAGE_TYPE"

	// DimensionUsageTypeGroup is a Dimension enum value
	DimensionUsageTypeGroup = "USAGE_TYPE_GROUP"

	// DimensionRecordType is a Dimension enum value
	DimensionRecordType = "RECORD_TYPE"

	// DimensionOperatingSystem is a Dimension enum value
	DimensionOperatingSystem = "OPERATING_SYSTEM"

	// DimensionTenancy is a Dimension enum value
	DimensionTenancy = "TENANCY"

	// DimensionScope is a Dimension enum value
	DimensionScope = "SCOPE"

	// DimensionPlatform is a Dimension enum value
	DimensionPlatform = "PLATFORM"

	// DimensionSubscriptionId is a Dimension enum value
	DimensionSubscriptionId = "SUBSCRIPTION_ID"

	// DimensionLegalEntityName is a Dimension enum value
	DimensionLegalEntityName = "LEGAL_ENTITY_NAME"

	// DimensionDeploymentOption is a Dimension enum value
	DimensionDeploymentOption = "DEPLOYMENT_OPTION"

	// DimensionDatabaseEngine is a Dimension enum value
	DimensionDatabaseEngine = "DATABASE_ENGINE"

	// DimensionCacheEngine is a Dimension enum value
	DimensionCacheEngine = "CACHE_ENGINE"

	// DimensionInstanceTypeFamily is a Dimension enum value
	DimensionInstanceTypeFamily = "INSTANCE_TYPE_FAMILY"

	// DimensionBillingEntity is a Dimension enum value
	DimensionBillingEntity = "BILLING_ENTITY"

	// DimensionReservationId is a Dimension enum value
	DimensionReservationId = "RESERVATION_ID"

	// DimensionResourceId is a Dimension enum value
	DimensionResourceId = "RESOURCE_ID"

	// DimensionRightsizingType is a Dimension enum value
	DimensionRightsizingType = "RIGHTSIZING_TYPE"

	// DimensionSavingsPlansType is a Dimension enum value
	DimensionSavingsPlansType = "SAVINGS_PLANS_TYPE"

	// DimensionSavingsPlanArn is a Dimension enum value
	DimensionSavingsPlanArn = "SAVINGS_PLAN_ARN"

	// DimensionPaymentOption is a Dimension enum value
	DimensionPaymentOption = "PAYMENT_OPTION"
)
View Source
const (
	// GranularityDaily is a Granularity enum value
	GranularityDaily = "DAILY"

	// GranularityMonthly is a Granularity enum value
	GranularityMonthly = "MONTHLY"

	// GranularityHourly is a Granularity enum value
	GranularityHourly = "HOURLY"
)
View Source
const (
	// GroupDefinitionTypeDimension is a GroupDefinitionType enum value
	GroupDefinitionTypeDimension = "DIMENSION"

	// GroupDefinitionTypeTag is a GroupDefinitionType enum value
	GroupDefinitionTypeTag = "TAG"

	// GroupDefinitionTypeCostCategory is a GroupDefinitionType enum value
	GroupDefinitionTypeCostCategory = "COST_CATEGORY"
)
View Source
const (
	// LookbackPeriodInDaysSevenDays is a LookbackPeriodInDays enum value
	LookbackPeriodInDaysSevenDays = "SEVEN_DAYS"

	// LookbackPeriodInDaysThirtyDays is a LookbackPeriodInDays enum value
	LookbackPeriodInDaysThirtyDays = "THIRTY_DAYS"

	// LookbackPeriodInDaysSixtyDays is a LookbackPeriodInDays enum value
	LookbackPeriodInDaysSixtyDays = "SIXTY_DAYS"
)
View Source
const (
	// MatchOptionEquals is a MatchOption enum value
	MatchOptionEquals = "EQUALS"

	// MatchOptionStartsWith is a MatchOption enum value
	MatchOptionStartsWith = "STARTS_WITH"

	// MatchOptionEndsWith is a MatchOption enum value
	MatchOptionEndsWith = "ENDS_WITH"

	// MatchOptionContains is a MatchOption enum value
	MatchOptionContains = "CONTAINS"

	// MatchOptionCaseSensitive is a MatchOption enum value
	MatchOptionCaseSensitive = "CASE_SENSITIVE"

	// MatchOptionCaseInsensitive is a MatchOption enum value
	MatchOptionCaseInsensitive = "CASE_INSENSITIVE"
)
View Source
const (
	// MetricBlendedCost is a Metric enum value
	MetricBlendedCost = "BLENDED_COST"

	// MetricUnblendedCost is a Metric enum value
	MetricUnblendedCost = "UNBLENDED_COST"

	// MetricAmortizedCost is a Metric enum value
	MetricAmortizedCost = "AMORTIZED_COST"

	// MetricNetUnblendedCost is a Metric enum value
	MetricNetUnblendedCost = "NET_UNBLENDED_COST"

	// MetricNetAmortizedCost is a Metric enum value
	MetricNetAmortizedCost = "NET_AMORTIZED_COST"

	// MetricUsageQuantity is a Metric enum value
	MetricUsageQuantity = "USAGE_QUANTITY"

	// MetricNormalizedUsageAmount is a Metric enum value
	MetricNormalizedUsageAmount = "NORMALIZED_USAGE_AMOUNT"
)
View Source
const (
	// OfferingClassStandard is a OfferingClass enum value
	OfferingClassStandard = "STANDARD"

	// OfferingClassConvertible is a OfferingClass enum value
	OfferingClassConvertible = "CONVERTIBLE"
)
View Source
const (
	// PaymentOptionNoUpfront is a PaymentOption enum value
	PaymentOptionNoUpfront = "NO_UPFRONT"

	// PaymentOptionPartialUpfront is a PaymentOption enum value
	PaymentOptionPartialUpfront = "PARTIAL_UPFRONT"

	// PaymentOptionAllUpfront is a PaymentOption enum value
	PaymentOptionAllUpfront = "ALL_UPFRONT"

	// PaymentOptionLightUtilization is a PaymentOption enum value
	PaymentOptionLightUtilization = "LIGHT_UTILIZATION"

	// PaymentOptionMediumUtilization is a PaymentOption enum value
	PaymentOptionMediumUtilization = "MEDIUM_UTILIZATION"

	// PaymentOptionHeavyUtilization is a PaymentOption enum value
	PaymentOptionHeavyUtilization = "HEAVY_UTILIZATION"
)
View Source
const (
	// RecommendationTargetSameInstanceFamily is a RecommendationTarget enum value
	RecommendationTargetSameInstanceFamily = "SAME_INSTANCE_FAMILY"

	// RecommendationTargetCrossInstanceFamily is a RecommendationTarget enum value
	RecommendationTargetCrossInstanceFamily = "CROSS_INSTANCE_FAMILY"
)
View Source
const (
	// RightsizingTypeTerminate is a RightsizingType enum value
	RightsizingTypeTerminate = "TERMINATE"

	// RightsizingTypeModify is a RightsizingType enum value
	RightsizingTypeModify = "MODIFY"
)
View Source
const (
	// SupportedSavingsPlansTypeComputeSp is a SupportedSavingsPlansType enum value
	SupportedSavingsPlansTypeComputeSp = "COMPUTE_SP"

	// SupportedSavingsPlansTypeEc2InstanceSp is a SupportedSavingsPlansType enum value
	SupportedSavingsPlansTypeEc2InstanceSp = "EC2_INSTANCE_SP"
)
View Source
const (
	// TermInYearsOneYear is a TermInYears enum value
	TermInYearsOneYear = "ONE_YEAR"

	// TermInYearsThreeYears is a TermInYears enum value
	TermInYearsThreeYears = "THREE_YEARS"
)
View Source
const (

	// ErrCodeBillExpirationException for service response error code
	// "BillExpirationException".
	//
	// The requested report expired. Update the date interval and try again.
	ErrCodeBillExpirationException = "BillExpirationException"

	// ErrCodeDataUnavailableException for service response error code
	// "DataUnavailableException".
	//
	// The requested data is unavailable.
	ErrCodeDataUnavailableException = "DataUnavailableException"

	// ErrCodeInvalidNextTokenException for service response error code
	// "InvalidNextTokenException".
	//
	// The pagination token is invalid. Try again without a pagination token.
	ErrCodeInvalidNextTokenException = "InvalidNextTokenException"

	// ErrCodeLimitExceededException for service response error code
	// "LimitExceededException".
	//
	// You made too many calls in a short period of time. Try again later.
	ErrCodeLimitExceededException = "LimitExceededException"

	// ErrCodeRequestChangedException for service response error code
	// "RequestChangedException".
	//
	// Your request parameters changed between pages. Try again with the old parameters
	// or without a pagination token.
	ErrCodeRequestChangedException = "RequestChangedException"

	// ErrCodeResourceNotFoundException for service response error code
	// "ResourceNotFoundException".
	//
	// The specified ARN in the request doesn't exist.
	ErrCodeResourceNotFoundException = "ResourceNotFoundException"

	// ErrCodeServiceQuotaExceededException for service response error code
	// "ServiceQuotaExceededException".
	//
	// You've reached the limit on the number of resources you can create, or exceeded
	// the size of an individual resources.
	ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException"

	// ErrCodeUnresolvableUsageUnitException for service response error code
	// "UnresolvableUsageUnitException".
	//
	// Cost Explorer was unable to identify the usage unit. Provide UsageType/UsageTypeGroup
	// filter selections that contain matching units, for example: hours.
	ErrCodeUnresolvableUsageUnitException = "UnresolvableUsageUnitException"
)
View Source
const (
	ServiceName = "ce"            // Name of service.
	EndpointsID = ServiceName     // ID to lookup a service endpoint with.
	ServiceID   = "Cost Explorer" // ServiceID is a unique identifier of a specific service.
)

Service information constants

View Source
const (
	// CostCategoryRuleVersionCostCategoryExpressionV1 is a CostCategoryRuleVersion enum value
	CostCategoryRuleVersionCostCategoryExpressionV1 = "CostCategoryExpression.v1"
)

The rule schema version in this particular Cost Category.

Variables

This section is empty.

Functions

This section is empty.

Types

type BillExpirationException added in v1.28.0

type BillExpirationException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"Message" type:"string"`
	// contains filtered or unexported fields
}

The requested report expired. Update the date interval and try again.

func (*BillExpirationException) Code added in v1.28.0

func (s *BillExpirationException) Code() string

Code returns the exception type name.

func (*BillExpirationException) Error added in v1.28.0

func (s *BillExpirationException) Error() string

func (BillExpirationException) GoString added in v1.28.0

func (s BillExpirationException) GoString() string

GoString returns the string representation

func (*BillExpirationException) Message added in v1.28.0

func (s *BillExpirationException) Message() string

Message returns the exception's message.

func (*BillExpirationException) OrigErr added in v1.28.0

func (s *BillExpirationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*BillExpirationException) RequestID added in v1.28.0

func (s *BillExpirationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*BillExpirationException) StatusCode added in v1.28.0

func (s *BillExpirationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (BillExpirationException) String added in v1.28.0

func (s BillExpirationException) String() string

String returns the string representation

type CostCategory added in v1.25.42

type CostCategory struct {

	// The unique identifier for your Cost Category.
	//
	// CostCategoryArn is a required field
	CostCategoryArn *string `min:"20" type:"string" required:"true"`

	// The Cost Category's effective end date.
	EffectiveEnd *string `min:"20" type:"string"`

	// The Cost Category's effective start date.
	//
	// EffectiveStart is a required field
	EffectiveStart *string `min:"20" type:"string" required:"true"`

	// The unique name of the Cost Category.
	//
	// Name is a required field
	Name *string `min:"1" type:"string" required:"true"`

	// The rule schema version in this particular Cost Category.
	//
	// RuleVersion is a required field
	RuleVersion *string `type:"string" required:"true" enum:"CostCategoryRuleVersion"`

	// Rules are processed in order. If there are multiple rules that match the
	// line item, then the first rule to match is used to determine that Cost Category
	// value.
	//
	// Rules is a required field
	Rules []*CostCategoryRule `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

The structure of Cost Categories. This includes detailed metadata and the set of rules for the CostCategory object.

func (CostCategory) GoString added in v1.25.42

func (s CostCategory) GoString() string

GoString returns the string representation

func (*CostCategory) SetCostCategoryArn added in v1.25.42

func (s *CostCategory) SetCostCategoryArn(v string) *CostCategory

SetCostCategoryArn sets the CostCategoryArn field's value.

func (*CostCategory) SetEffectiveEnd added in v1.25.42

func (s *CostCategory) SetEffectiveEnd(v string) *CostCategory

SetEffectiveEnd sets the EffectiveEnd field's value.

func (*CostCategory) SetEffectiveStart added in v1.25.42

func (s *CostCategory) SetEffectiveStart(v string) *CostCategory

SetEffectiveStart sets the EffectiveStart field's value.

func (*CostCategory) SetName added in v1.25.42

func (s *CostCategory) SetName(v string) *CostCategory

SetName sets the Name field's value.

func (*CostCategory) SetRuleVersion added in v1.25.42

func (s *CostCategory) SetRuleVersion(v string) *CostCategory

SetRuleVersion sets the RuleVersion field's value.

func (*CostCategory) SetRules added in v1.25.42

func (s *CostCategory) SetRules(v []*CostCategoryRule) *CostCategory

SetRules sets the Rules field's value.

func (CostCategory) String added in v1.25.42

func (s CostCategory) String() string

String returns the string representation

type CostCategoryReference added in v1.25.42

type CostCategoryReference struct {

	// The unique identifier for your Cost Category.
	CostCategoryArn *string `min:"20" type:"string"`

	// The Cost Category's effective end date.
	EffectiveEnd *string `min:"20" type:"string"`

	// The Cost Category's effective start date.
	EffectiveStart *string `min:"20" type:"string"`

	// The unique name of the Cost Category.
	Name *string `min:"1" type:"string"`

	// The number of rules associated with a specific Cost Category.
	NumberOfRules *int64 `type:"integer"`
	// contains filtered or unexported fields
}

A reference to a Cost Category containing only enough information to identify the Cost Category.

You can use this information to retrieve the full Cost Category information using DescribeCostCategory.

func (CostCategoryReference) GoString added in v1.25.42

func (s CostCategoryReference) GoString() string

GoString returns the string representation

func (*CostCategoryReference) SetCostCategoryArn added in v1.25.42

func (s *CostCategoryReference) SetCostCategoryArn(v string) *CostCategoryReference

SetCostCategoryArn sets the CostCategoryArn field's value.

func (*CostCategoryReference) SetEffectiveEnd added in v1.25.42

func (s *CostCategoryReference) SetEffectiveEnd(v string) *CostCategoryReference

SetEffectiveEnd sets the EffectiveEnd field's value.

func (*CostCategoryReference) SetEffectiveStart added in v1.25.42

func (s *CostCategoryReference) SetEffectiveStart(v string) *CostCategoryReference

SetEffectiveStart sets the EffectiveStart field's value.

func (*CostCategoryReference) SetName added in v1.25.42

SetName sets the Name field's value.

func (*CostCategoryReference) SetNumberOfRules added in v1.30.10

func (s *CostCategoryReference) SetNumberOfRules(v int64) *CostCategoryReference

SetNumberOfRules sets the NumberOfRules field's value.

func (CostCategoryReference) String added in v1.25.42

func (s CostCategoryReference) String() string

String returns the string representation

type CostCategoryRule added in v1.25.42

type CostCategoryRule struct {

	// An Expression (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html)
	// object used to categorize costs. This supports dimensions, Tags, and nested
	// expressions. Currently the only dimensions supported are LINKED_ACCOUNT,
	// SERVICE_CODE, RECORD_TYPE, and LINKED_ACCOUNT_NAME.
	//
	// Root level OR is not supported. We recommend that you create a separate rule
	// instead.
	//
	// RECORD_TYPE is a dimension used for Cost Explorer APIs, and is also supported
	// for Cost Category expressions. This dimension uses different terms, depending
	// on whether you're using the console or API/JSON editor. For a detailed comparison,
	// see Term Comparisons (https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-cost-categories.html#cost-categories-terms)
	// in the AWS Billing and Cost Management User Guide.
	//
	// Rule is a required field
	Rule *Expression `type:"structure" required:"true"`

	// The value a line item will be categorized as, if it matches the rule.
	//
	// Value is a required field
	Value *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.

func (CostCategoryRule) GoString added in v1.25.42

func (s CostCategoryRule) GoString() string

GoString returns the string representation

func (*CostCategoryRule) SetRule added in v1.25.42

SetRule sets the Rule field's value.

func (*CostCategoryRule) SetValue added in v1.25.42

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

SetValue sets the Value field's value.

func (CostCategoryRule) String added in v1.25.42

func (s CostCategoryRule) String() string

String returns the string representation

func (*CostCategoryRule) Validate added in v1.25.42

func (s *CostCategoryRule) Validate() error

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

type CostCategoryValues added in v1.25.42

type CostCategoryValues struct {

	// The unique name of the Cost Category.
	Key *string `min:"1" type:"string"`

	// The specific value of the Cost Category.
	Values []*string `type:"list"`
	// contains filtered or unexported fields
}

The Cost Categories values used for filtering the costs.

func (CostCategoryValues) GoString added in v1.25.42

func (s CostCategoryValues) GoString() string

GoString returns the string representation

func (*CostCategoryValues) SetKey added in v1.25.42

SetKey sets the Key field's value.

func (*CostCategoryValues) SetValues added in v1.25.42

func (s *CostCategoryValues) SetValues(v []*string) *CostCategoryValues

SetValues sets the Values field's value.

func (CostCategoryValues) String added in v1.25.42

func (s CostCategoryValues) String() string

String returns the string representation

func (*CostCategoryValues) Validate added in v1.25.42

func (s *CostCategoryValues) Validate() error

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

type CostExplorer

type CostExplorer struct {
	*client.Client
}

CostExplorer provides the API operation methods for making requests to AWS Cost Explorer Service. See this package's package overview docs for details on the service.

CostExplorer methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

func New

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

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

Example:

mySession := session.Must(session.NewSession())

// Create a CostExplorer client from just a session.
svc := costexplorer.New(mySession)

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

func (*CostExplorer) CreateCostCategoryDefinition added in v1.25.42

func (c *CostExplorer) CreateCostCategoryDefinition(input *CreateCostCategoryDefinitionInput) (*CreateCostCategoryDefinitionOutput, error)

CreateCostCategoryDefinition API operation for AWS Cost Explorer Service.

Creates a new Cost Category with the requested name and rules.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation CreateCostCategoryDefinition for usage and error information.

Returned Error Types:

  • ServiceQuotaExceededException You've reached the limit on the number of resources you can create, or exceeded the size of an individual resources.

  • LimitExceededException You made too many calls in a short period of time. Try again later.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CreateCostCategoryDefinition

func (*CostExplorer) CreateCostCategoryDefinitionRequest added in v1.25.42

func (c *CostExplorer) CreateCostCategoryDefinitionRequest(input *CreateCostCategoryDefinitionInput) (req *request.Request, output *CreateCostCategoryDefinitionOutput)

CreateCostCategoryDefinitionRequest generates a "aws/request.Request" representing the client's request for the CreateCostCategoryDefinition operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateCostCategoryDefinition for more information on using the CreateCostCategoryDefinition API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CreateCostCategoryDefinition

func (*CostExplorer) CreateCostCategoryDefinitionWithContext added in v1.25.42

func (c *CostExplorer) CreateCostCategoryDefinitionWithContext(ctx aws.Context, input *CreateCostCategoryDefinitionInput, opts ...request.Option) (*CreateCostCategoryDefinitionOutput, error)

CreateCostCategoryDefinitionWithContext is the same as CreateCostCategoryDefinition with the addition of the ability to pass a context and additional request options.

See CreateCostCategoryDefinition for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) DeleteCostCategoryDefinition added in v1.25.42

func (c *CostExplorer) DeleteCostCategoryDefinition(input *DeleteCostCategoryDefinitionInput) (*DeleteCostCategoryDefinitionOutput, error)

DeleteCostCategoryDefinition API operation for AWS Cost Explorer Service.

Deletes a Cost Category. Expenses from this month going forward will no longer be categorized with this Cost Category.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation DeleteCostCategoryDefinition for usage and error information.

Returned Error Types:

  • ResourceNotFoundException The specified ARN in the request doesn't exist.

  • LimitExceededException You made too many calls in a short period of time. Try again later.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/DeleteCostCategoryDefinition

func (*CostExplorer) DeleteCostCategoryDefinitionRequest added in v1.25.42

func (c *CostExplorer) DeleteCostCategoryDefinitionRequest(input *DeleteCostCategoryDefinitionInput) (req *request.Request, output *DeleteCostCategoryDefinitionOutput)

DeleteCostCategoryDefinitionRequest generates a "aws/request.Request" representing the client's request for the DeleteCostCategoryDefinition operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteCostCategoryDefinition for more information on using the DeleteCostCategoryDefinition API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/DeleteCostCategoryDefinition

func (*CostExplorer) DeleteCostCategoryDefinitionWithContext added in v1.25.42

func (c *CostExplorer) DeleteCostCategoryDefinitionWithContext(ctx aws.Context, input *DeleteCostCategoryDefinitionInput, opts ...request.Option) (*DeleteCostCategoryDefinitionOutput, error)

DeleteCostCategoryDefinitionWithContext is the same as DeleteCostCategoryDefinition with the addition of the ability to pass a context and additional request options.

See DeleteCostCategoryDefinition for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) DescribeCostCategoryDefinition added in v1.25.42

DescribeCostCategoryDefinition API operation for AWS Cost Explorer Service.

Returns the name, ARN, rules, definition, and effective dates of a Cost Category that's defined in the account.

You have the option to use EffectiveOn to return a Cost Category that is active on a specific date. If there is no EffectiveOn specified, you’ll see a Cost Category that is effective on the current date. If Cost Category is still effective, EffectiveEnd is omitted in the response.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation DescribeCostCategoryDefinition for usage and error information.

Returned Error Types:

  • ResourceNotFoundException The specified ARN in the request doesn't exist.

  • LimitExceededException You made too many calls in a short period of time. Try again later.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/DescribeCostCategoryDefinition

func (*CostExplorer) DescribeCostCategoryDefinitionRequest added in v1.25.42

func (c *CostExplorer) DescribeCostCategoryDefinitionRequest(input *DescribeCostCategoryDefinitionInput) (req *request.Request, output *DescribeCostCategoryDefinitionOutput)

DescribeCostCategoryDefinitionRequest generates a "aws/request.Request" representing the client's request for the DescribeCostCategoryDefinition operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeCostCategoryDefinition for more information on using the DescribeCostCategoryDefinition API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/DescribeCostCategoryDefinition

func (*CostExplorer) DescribeCostCategoryDefinitionWithContext added in v1.25.42

func (c *CostExplorer) DescribeCostCategoryDefinitionWithContext(ctx aws.Context, input *DescribeCostCategoryDefinitionInput, opts ...request.Option) (*DescribeCostCategoryDefinitionOutput, error)

DescribeCostCategoryDefinitionWithContext is the same as DescribeCostCategoryDefinition with the addition of the ability to pass a context and additional request options.

See DescribeCostCategoryDefinition for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetCostAndUsage

func (c *CostExplorer) GetCostAndUsage(input *GetCostAndUsageInput) (*GetCostAndUsageOutput, error)

GetCostAndUsage API operation for AWS Cost Explorer Service.

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_GetDimensionValues.html) operation. Master accounts in an organization in AWS Organizations have access to all member accounts.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetCostAndUsage for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • BillExpirationException The requested report expired. Update the date interval and try again.

  • DataUnavailableException The requested data is unavailable.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

  • RequestChangedException Your request parameters changed between pages. Try again with the old parameters or without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetCostAndUsage

func (*CostExplorer) GetCostAndUsageRequest

func (c *CostExplorer) GetCostAndUsageRequest(input *GetCostAndUsageInput) (req *request.Request, output *GetCostAndUsageOutput)

GetCostAndUsageRequest generates a "aws/request.Request" representing the client's request for the GetCostAndUsage operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetCostAndUsage for more information on using the GetCostAndUsage API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetCostAndUsage

func (*CostExplorer) GetCostAndUsageWithContext

func (c *CostExplorer) GetCostAndUsageWithContext(ctx aws.Context, input *GetCostAndUsageInput, opts ...request.Option) (*GetCostAndUsageOutput, error)

GetCostAndUsageWithContext is the same as GetCostAndUsage with the addition of the ability to pass a context and additional request options.

See GetCostAndUsage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetCostAndUsageWithResources added in v1.25.32

func (c *CostExplorer) GetCostAndUsageWithResources(input *GetCostAndUsageWithResourcesInput) (*GetCostAndUsageWithResourcesOutput, error)

GetCostAndUsageWithResources API operation for AWS Cost Explorer Service.

Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_GetDimensionValues.html) operation. Master accounts in an organization in AWS Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only.

This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information on how to access the Settings page, see Controlling Access for Cost Explorer (https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ce-access.html) in the AWS Billing and Cost Management User Guide.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetCostAndUsageWithResources for usage and error information.

Returned Error Types:

  • DataUnavailableException The requested data is unavailable.

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • BillExpirationException The requested report expired. Update the date interval and try again.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

  • RequestChangedException Your request parameters changed between pages. Try again with the old parameters or without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetCostAndUsageWithResources

func (*CostExplorer) GetCostAndUsageWithResourcesRequest added in v1.25.32

func (c *CostExplorer) GetCostAndUsageWithResourcesRequest(input *GetCostAndUsageWithResourcesInput) (req *request.Request, output *GetCostAndUsageWithResourcesOutput)

GetCostAndUsageWithResourcesRequest generates a "aws/request.Request" representing the client's request for the GetCostAndUsageWithResources operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetCostAndUsageWithResources for more information on using the GetCostAndUsageWithResources API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetCostAndUsageWithResources

func (*CostExplorer) GetCostAndUsageWithResourcesWithContext added in v1.25.32

func (c *CostExplorer) GetCostAndUsageWithResourcesWithContext(ctx aws.Context, input *GetCostAndUsageWithResourcesInput, opts ...request.Option) (*GetCostAndUsageWithResourcesOutput, error)

GetCostAndUsageWithResourcesWithContext is the same as GetCostAndUsageWithResources with the addition of the ability to pass a context and additional request options.

See GetCostAndUsageWithResources for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetCostForecast added in v1.15.78

func (c *CostExplorer) GetCostForecast(input *GetCostForecastInput) (*GetCostForecastOutput, error)

GetCostForecast API operation for AWS Cost Explorer Service.

Retrieves a forecast for how much Amazon Web Services predicts that you will spend over the forecast time period that you select, based on your past costs.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetCostForecast for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • DataUnavailableException The requested data is unavailable.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetCostForecast

func (*CostExplorer) GetCostForecastRequest added in v1.15.78

func (c *CostExplorer) GetCostForecastRequest(input *GetCostForecastInput) (req *request.Request, output *GetCostForecastOutput)

GetCostForecastRequest generates a "aws/request.Request" representing the client's request for the GetCostForecast operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetCostForecast for more information on using the GetCostForecast API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetCostForecast

func (*CostExplorer) GetCostForecastWithContext added in v1.15.78

func (c *CostExplorer) GetCostForecastWithContext(ctx aws.Context, input *GetCostForecastInput, opts ...request.Option) (*GetCostForecastOutput, error)

GetCostForecastWithContext is the same as GetCostForecast with the addition of the ability to pass a context and additional request options.

See GetCostForecast for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetDimensionValues

func (c *CostExplorer) GetDimensionValues(input *GetDimensionValuesInput) (*GetDimensionValuesOutput, error)

GetDimensionValues API operation for AWS Cost Explorer Service.

Retrieves all available filter values for a specified filter over a period of time. You can search the dimension values for an arbitrary string.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetDimensionValues for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • BillExpirationException The requested report expired. Update the date interval and try again.

  • DataUnavailableException The requested data is unavailable.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

  • RequestChangedException Your request parameters changed between pages. Try again with the old parameters or without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetDimensionValues

func (*CostExplorer) GetDimensionValuesRequest

func (c *CostExplorer) GetDimensionValuesRequest(input *GetDimensionValuesInput) (req *request.Request, output *GetDimensionValuesOutput)

GetDimensionValuesRequest generates a "aws/request.Request" representing the client's request for the GetDimensionValues operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetDimensionValues for more information on using the GetDimensionValues API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetDimensionValues

func (*CostExplorer) GetDimensionValuesWithContext

func (c *CostExplorer) GetDimensionValuesWithContext(ctx aws.Context, input *GetDimensionValuesInput, opts ...request.Option) (*GetDimensionValuesOutput, error)

GetDimensionValuesWithContext is the same as GetDimensionValues with the addition of the ability to pass a context and additional request options.

See GetDimensionValues for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetReservationCoverage added in v1.13.3

func (c *CostExplorer) GetReservationCoverage(input *GetReservationCoverageInput) (*GetReservationCoverageOutput, error)

GetReservationCoverage API operation for AWS Cost Explorer Service.

Retrieves the reservation coverage for your account. This enables you to see how much of your Amazon Elastic Compute Cloud, Amazon ElastiCache, Amazon Relational Database Service, or Amazon Redshift usage is covered by a reservation. An organization's master account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data about reservation usage by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

To determine valid values for a dimension, use the GetDimensionValues operation.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetReservationCoverage for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • DataUnavailableException The requested data is unavailable.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationCoverage

func (*CostExplorer) GetReservationCoverageRequest added in v1.13.3

func (c *CostExplorer) GetReservationCoverageRequest(input *GetReservationCoverageInput) (req *request.Request, output *GetReservationCoverageOutput)

GetReservationCoverageRequest generates a "aws/request.Request" representing the client's request for the GetReservationCoverage operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetReservationCoverage for more information on using the GetReservationCoverage API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationCoverage

func (*CostExplorer) GetReservationCoverageWithContext added in v1.13.3

func (c *CostExplorer) GetReservationCoverageWithContext(ctx aws.Context, input *GetReservationCoverageInput, opts ...request.Option) (*GetReservationCoverageOutput, error)

GetReservationCoverageWithContext is the same as GetReservationCoverage with the addition of the ability to pass a context and additional request options.

See GetReservationCoverage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetReservationPurchaseRecommendation added in v1.13.17

GetReservationPurchaseRecommendation API operation for AWS Cost Explorer Service.

Gets recommendations for which reservations to purchase. These recommendations could help you reduce your costs. Reservations provide a discounted hourly rate (up to 75%) compared to On-Demand pricing.

AWS generates your recommendations by identifying your On-Demand usage during a specific time period and collecting your usage into categories that are eligible for a reservation. After AWS has these categories, it simulates every combination of reservations in each category of usage to identify the best number of each type of RI to purchase to maximize your estimated savings.

For example, AWS automatically aggregates your Amazon EC2 Linux, shared tenancy, and c4 family usage in the US West (Oregon) Region and recommends that you buy size-flexible regional reservations to apply to the c4 family usage. AWS recommends the smallest size instance in an instance family. This makes it easier to purchase a size-flexible RI. AWS also shows the equal number of normalized units so that you can purchase any instance size that you want. For this example, your RI recommendation would be for c4.large because that is the smallest size instance in the c4 instance family.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetReservationPurchaseRecommendation for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • DataUnavailableException The requested data is unavailable.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationPurchaseRecommendation

func (*CostExplorer) GetReservationPurchaseRecommendationRequest added in v1.13.17

func (c *CostExplorer) GetReservationPurchaseRecommendationRequest(input *GetReservationPurchaseRecommendationInput) (req *request.Request, output *GetReservationPurchaseRecommendationOutput)

GetReservationPurchaseRecommendationRequest generates a "aws/request.Request" representing the client's request for the GetReservationPurchaseRecommendation operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetReservationPurchaseRecommendation for more information on using the GetReservationPurchaseRecommendation API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationPurchaseRecommendation

func (*CostExplorer) GetReservationPurchaseRecommendationWithContext added in v1.13.17

func (c *CostExplorer) GetReservationPurchaseRecommendationWithContext(ctx aws.Context, input *GetReservationPurchaseRecommendationInput, opts ...request.Option) (*GetReservationPurchaseRecommendationOutput, error)

GetReservationPurchaseRecommendationWithContext is the same as GetReservationPurchaseRecommendation with the addition of the ability to pass a context and additional request options.

See GetReservationPurchaseRecommendation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetReservationUtilization

func (c *CostExplorer) GetReservationUtilization(input *GetReservationUtilizationInput) (*GetReservationUtilizationOutput, error)

GetReservationUtilization API operation for AWS Cost Explorer Service.

Retrieves the reservation utilization for your account. Master accounts in an organization have access to member accounts. You can filter data by dimensions in a time period. You can use GetDimensionValues to determine the possible dimension values. Currently, you can group only by SUBSCRIPTION_ID.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetReservationUtilization for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • DataUnavailableException The requested data is unavailable.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationUtilization

func (*CostExplorer) GetReservationUtilizationRequest

func (c *CostExplorer) GetReservationUtilizationRequest(input *GetReservationUtilizationInput) (req *request.Request, output *GetReservationUtilizationOutput)

GetReservationUtilizationRequest generates a "aws/request.Request" representing the client's request for the GetReservationUtilization operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetReservationUtilization for more information on using the GetReservationUtilization API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetReservationUtilization

func (*CostExplorer) GetReservationUtilizationWithContext

func (c *CostExplorer) GetReservationUtilizationWithContext(ctx aws.Context, input *GetReservationUtilizationInput, opts ...request.Option) (*GetReservationUtilizationOutput, error)

GetReservationUtilizationWithContext is the same as GetReservationUtilization with the addition of the ability to pass a context and additional request options.

See GetReservationUtilization for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetRightsizingRecommendation added in v1.21.6

func (c *CostExplorer) GetRightsizingRecommendation(input *GetRightsizingRecommendationInput) (*GetRightsizingRecommendationOutput, error)

GetRightsizingRecommendation API operation for AWS Cost Explorer Service.

Creates recommendations that helps you save cost by identifying idle and underutilized Amazon EC2 instances.

Recommendations are generated to either downsize or terminate instances, along with providing savings detail and metrics. For details on calculation and function, see Optimizing Your Cost with Rightsizing Recommendations (https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/ce-what-is.html).

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetRightsizingRecommendation for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetRightsizingRecommendation

func (*CostExplorer) GetRightsizingRecommendationRequest added in v1.21.6

func (c *CostExplorer) GetRightsizingRecommendationRequest(input *GetRightsizingRecommendationInput) (req *request.Request, output *GetRightsizingRecommendationOutput)

GetRightsizingRecommendationRequest generates a "aws/request.Request" representing the client's request for the GetRightsizingRecommendation operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetRightsizingRecommendation for more information on using the GetRightsizingRecommendation API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetRightsizingRecommendation

func (*CostExplorer) GetRightsizingRecommendationWithContext added in v1.21.6

func (c *CostExplorer) GetRightsizingRecommendationWithContext(ctx aws.Context, input *GetRightsizingRecommendationInput, opts ...request.Option) (*GetRightsizingRecommendationOutput, error)

GetRightsizingRecommendationWithContext is the same as GetRightsizingRecommendation with the addition of the ability to pass a context and additional request options.

See GetRightsizingRecommendation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetSavingsPlansCoverage added in v1.25.28

func (c *CostExplorer) GetSavingsPlansCoverage(input *GetSavingsPlansCoverageInput) (*GetSavingsPlansCoverageOutput, error)

GetSavingsPlansCoverage API operation for AWS Cost Explorer Service.

Retrieves the Savings Plans covered for your account. This enables you to see how much of your cost is covered by a Savings Plan. An organization’s master account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

To determine valid values for a dimension, use the GetDimensionValues operation.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetSavingsPlansCoverage for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • DataUnavailableException The requested data is unavailable.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansCoverage

func (*CostExplorer) GetSavingsPlansCoveragePages added in v1.25.28

func (c *CostExplorer) GetSavingsPlansCoveragePages(input *GetSavingsPlansCoverageInput, fn func(*GetSavingsPlansCoverageOutput, bool) bool) error

GetSavingsPlansCoveragePages iterates over the pages of a GetSavingsPlansCoverage operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetSavingsPlansCoverage method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetSavingsPlansCoverage operation.
pageNum := 0
err := client.GetSavingsPlansCoveragePages(params,
    func(page *costexplorer.GetSavingsPlansCoverageOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CostExplorer) GetSavingsPlansCoveragePagesWithContext added in v1.25.28

func (c *CostExplorer) GetSavingsPlansCoveragePagesWithContext(ctx aws.Context, input *GetSavingsPlansCoverageInput, fn func(*GetSavingsPlansCoverageOutput, bool) bool, opts ...request.Option) error

GetSavingsPlansCoveragePagesWithContext same as GetSavingsPlansCoveragePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetSavingsPlansCoverageRequest added in v1.25.28

func (c *CostExplorer) GetSavingsPlansCoverageRequest(input *GetSavingsPlansCoverageInput) (req *request.Request, output *GetSavingsPlansCoverageOutput)

GetSavingsPlansCoverageRequest generates a "aws/request.Request" representing the client's request for the GetSavingsPlansCoverage operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetSavingsPlansCoverage for more information on using the GetSavingsPlansCoverage API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansCoverage

func (*CostExplorer) GetSavingsPlansCoverageWithContext added in v1.25.28

func (c *CostExplorer) GetSavingsPlansCoverageWithContext(ctx aws.Context, input *GetSavingsPlansCoverageInput, opts ...request.Option) (*GetSavingsPlansCoverageOutput, error)

GetSavingsPlansCoverageWithContext is the same as GetSavingsPlansCoverage with the addition of the ability to pass a context and additional request options.

See GetSavingsPlansCoverage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetSavingsPlansPurchaseRecommendation added in v1.25.28

GetSavingsPlansPurchaseRecommendation API operation for AWS Cost Explorer Service.

Retrieves your request parameters, Savings Plan Recommendations Summary and Details.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetSavingsPlansPurchaseRecommendation for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansPurchaseRecommendation

func (*CostExplorer) GetSavingsPlansPurchaseRecommendationRequest added in v1.25.28

func (c *CostExplorer) GetSavingsPlansPurchaseRecommendationRequest(input *GetSavingsPlansPurchaseRecommendationInput) (req *request.Request, output *GetSavingsPlansPurchaseRecommendationOutput)

GetSavingsPlansPurchaseRecommendationRequest generates a "aws/request.Request" representing the client's request for the GetSavingsPlansPurchaseRecommendation operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetSavingsPlansPurchaseRecommendation for more information on using the GetSavingsPlansPurchaseRecommendation API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansPurchaseRecommendation

func (*CostExplorer) GetSavingsPlansPurchaseRecommendationWithContext added in v1.25.28

func (c *CostExplorer) GetSavingsPlansPurchaseRecommendationWithContext(ctx aws.Context, input *GetSavingsPlansPurchaseRecommendationInput, opts ...request.Option) (*GetSavingsPlansPurchaseRecommendationOutput, error)

GetSavingsPlansPurchaseRecommendationWithContext is the same as GetSavingsPlansPurchaseRecommendation with the addition of the ability to pass a context and additional request options.

See GetSavingsPlansPurchaseRecommendation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetSavingsPlansUtilization added in v1.25.28

func (c *CostExplorer) GetSavingsPlansUtilization(input *GetSavingsPlansUtilizationInput) (*GetSavingsPlansUtilizationOutput, error)

GetSavingsPlansUtilization API operation for AWS Cost Explorer Service.

Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Master accounts in an organization have access to member accounts. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

You cannot group by any dimension values for GetSavingsPlansUtilization.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetSavingsPlansUtilization for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • DataUnavailableException The requested data is unavailable.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansUtilization

func (*CostExplorer) GetSavingsPlansUtilizationDetails added in v1.25.28

GetSavingsPlansUtilizationDetails API operation for AWS Cost Explorer Service.

Retrieves attribute data along with aggregate utilization and savings data for a given time period. This doesn't support granular or grouped data (daily/monthly) in response. You can't retrieve data by dates in a single response similar to GetSavingsPlanUtilization, but you have the option to make multiple calls to GetSavingsPlanUtilizationDetails by providing individual dates. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

GetSavingsPlanUtilizationDetails internally groups data by SavingsPlansArn.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetSavingsPlansUtilizationDetails for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • DataUnavailableException The requested data is unavailable.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansUtilizationDetails

func (*CostExplorer) GetSavingsPlansUtilizationDetailsPages added in v1.25.28

func (c *CostExplorer) GetSavingsPlansUtilizationDetailsPages(input *GetSavingsPlansUtilizationDetailsInput, fn func(*GetSavingsPlansUtilizationDetailsOutput, bool) bool) error

GetSavingsPlansUtilizationDetailsPages iterates over the pages of a GetSavingsPlansUtilizationDetails operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetSavingsPlansUtilizationDetails method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetSavingsPlansUtilizationDetails operation.
pageNum := 0
err := client.GetSavingsPlansUtilizationDetailsPages(params,
    func(page *costexplorer.GetSavingsPlansUtilizationDetailsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CostExplorer) GetSavingsPlansUtilizationDetailsPagesWithContext added in v1.25.28

func (c *CostExplorer) GetSavingsPlansUtilizationDetailsPagesWithContext(ctx aws.Context, input *GetSavingsPlansUtilizationDetailsInput, fn func(*GetSavingsPlansUtilizationDetailsOutput, bool) bool, opts ...request.Option) error

GetSavingsPlansUtilizationDetailsPagesWithContext same as GetSavingsPlansUtilizationDetailsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetSavingsPlansUtilizationDetailsRequest added in v1.25.28

func (c *CostExplorer) GetSavingsPlansUtilizationDetailsRequest(input *GetSavingsPlansUtilizationDetailsInput) (req *request.Request, output *GetSavingsPlansUtilizationDetailsOutput)

GetSavingsPlansUtilizationDetailsRequest generates a "aws/request.Request" representing the client's request for the GetSavingsPlansUtilizationDetails operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetSavingsPlansUtilizationDetails for more information on using the GetSavingsPlansUtilizationDetails API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansUtilizationDetails

func (*CostExplorer) GetSavingsPlansUtilizationDetailsWithContext added in v1.25.28

func (c *CostExplorer) GetSavingsPlansUtilizationDetailsWithContext(ctx aws.Context, input *GetSavingsPlansUtilizationDetailsInput, opts ...request.Option) (*GetSavingsPlansUtilizationDetailsOutput, error)

GetSavingsPlansUtilizationDetailsWithContext is the same as GetSavingsPlansUtilizationDetails with the addition of the ability to pass a context and additional request options.

See GetSavingsPlansUtilizationDetails for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetSavingsPlansUtilizationRequest added in v1.25.28

func (c *CostExplorer) GetSavingsPlansUtilizationRequest(input *GetSavingsPlansUtilizationInput) (req *request.Request, output *GetSavingsPlansUtilizationOutput)

GetSavingsPlansUtilizationRequest generates a "aws/request.Request" representing the client's request for the GetSavingsPlansUtilization operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetSavingsPlansUtilization for more information on using the GetSavingsPlansUtilization API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlansUtilization

func (*CostExplorer) GetSavingsPlansUtilizationWithContext added in v1.25.28

func (c *CostExplorer) GetSavingsPlansUtilizationWithContext(ctx aws.Context, input *GetSavingsPlansUtilizationInput, opts ...request.Option) (*GetSavingsPlansUtilizationOutput, error)

GetSavingsPlansUtilizationWithContext is the same as GetSavingsPlansUtilization with the addition of the ability to pass a context and additional request options.

See GetSavingsPlansUtilization for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetTags

func (c *CostExplorer) GetTags(input *GetTagsInput) (*GetTagsOutput, error)

GetTags API operation for AWS Cost Explorer Service.

Queries for available tag keys and tag values for a specified period. You can search the tag values for an arbitrary string.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetTags for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • BillExpirationException The requested report expired. Update the date interval and try again.

  • DataUnavailableException The requested data is unavailable.

  • InvalidNextTokenException The pagination token is invalid. Try again without a pagination token.

  • RequestChangedException Your request parameters changed between pages. Try again with the old parameters or without a pagination token.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetTags

func (*CostExplorer) GetTagsRequest

func (c *CostExplorer) GetTagsRequest(input *GetTagsInput) (req *request.Request, output *GetTagsOutput)

GetTagsRequest generates a "aws/request.Request" representing the client's request for the GetTags operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetTags for more information on using the GetTags API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetTags

func (*CostExplorer) GetTagsWithContext

func (c *CostExplorer) GetTagsWithContext(ctx aws.Context, input *GetTagsInput, opts ...request.Option) (*GetTagsOutput, error)

GetTagsWithContext is the same as GetTags with the addition of the ability to pass a context and additional request options.

See GetTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) GetUsageForecast added in v1.20.16

func (c *CostExplorer) GetUsageForecast(input *GetUsageForecastInput) (*GetUsageForecastOutput, error)

GetUsageForecast API operation for AWS Cost Explorer Service.

Retrieves a forecast for how much Amazon Web Services predicts that you will use over the forecast time period that you select, based on your past usage.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation GetUsageForecast for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

  • DataUnavailableException The requested data is unavailable.

  • UnresolvableUsageUnitException Cost Explorer was unable to identify the usage unit. Provide UsageType/UsageTypeGroup filter selections that contain matching units, for example: hours.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetUsageForecast

func (*CostExplorer) GetUsageForecastRequest added in v1.20.16

func (c *CostExplorer) GetUsageForecastRequest(input *GetUsageForecastInput) (req *request.Request, output *GetUsageForecastOutput)

GetUsageForecastRequest generates a "aws/request.Request" representing the client's request for the GetUsageForecast operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetUsageForecast for more information on using the GetUsageForecast API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetUsageForecast

func (*CostExplorer) GetUsageForecastWithContext added in v1.20.16

func (c *CostExplorer) GetUsageForecastWithContext(ctx aws.Context, input *GetUsageForecastInput, opts ...request.Option) (*GetUsageForecastOutput, error)

GetUsageForecastWithContext is the same as GetUsageForecast with the addition of the ability to pass a context and additional request options.

See GetUsageForecast for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) ListCostCategoryDefinitions added in v1.25.42

func (c *CostExplorer) ListCostCategoryDefinitions(input *ListCostCategoryDefinitionsInput) (*ListCostCategoryDefinitionsOutput, error)

ListCostCategoryDefinitions API operation for AWS Cost Explorer Service.

Returns the name, ARN, NumberOfRules and effective dates of all Cost Categories defined in the account. You have the option to use EffectiveOn to return a list of Cost Categories that were active on a specific date. If there is no EffectiveOn specified, you’ll see Cost Categories that are effective on the current date. If Cost Category is still effective, EffectiveEnd is omitted in the response. ListCostCategoryDefinitions supports pagination. The request can have a MaxResults range up to 100.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation ListCostCategoryDefinitions for usage and error information.

Returned Error Types:

  • LimitExceededException You made too many calls in a short period of time. Try again later.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ListCostCategoryDefinitions

func (*CostExplorer) ListCostCategoryDefinitionsPages added in v1.30.10

func (c *CostExplorer) ListCostCategoryDefinitionsPages(input *ListCostCategoryDefinitionsInput, fn func(*ListCostCategoryDefinitionsOutput, bool) bool) error

ListCostCategoryDefinitionsPages iterates over the pages of a ListCostCategoryDefinitions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListCostCategoryDefinitions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListCostCategoryDefinitions operation.
pageNum := 0
err := client.ListCostCategoryDefinitionsPages(params,
    func(page *costexplorer.ListCostCategoryDefinitionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CostExplorer) ListCostCategoryDefinitionsPagesWithContext added in v1.30.10

func (c *CostExplorer) ListCostCategoryDefinitionsPagesWithContext(ctx aws.Context, input *ListCostCategoryDefinitionsInput, fn func(*ListCostCategoryDefinitionsOutput, bool) bool, opts ...request.Option) error

ListCostCategoryDefinitionsPagesWithContext same as ListCostCategoryDefinitionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) ListCostCategoryDefinitionsRequest added in v1.25.42

func (c *CostExplorer) ListCostCategoryDefinitionsRequest(input *ListCostCategoryDefinitionsInput) (req *request.Request, output *ListCostCategoryDefinitionsOutput)

ListCostCategoryDefinitionsRequest generates a "aws/request.Request" representing the client's request for the ListCostCategoryDefinitions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListCostCategoryDefinitions for more information on using the ListCostCategoryDefinitions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ListCostCategoryDefinitions

func (*CostExplorer) ListCostCategoryDefinitionsWithContext added in v1.25.42

func (c *CostExplorer) ListCostCategoryDefinitionsWithContext(ctx aws.Context, input *ListCostCategoryDefinitionsInput, opts ...request.Option) (*ListCostCategoryDefinitionsOutput, error)

ListCostCategoryDefinitionsWithContext is the same as ListCostCategoryDefinitions with the addition of the ability to pass a context and additional request options.

See ListCostCategoryDefinitions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CostExplorer) UpdateCostCategoryDefinition added in v1.25.42

func (c *CostExplorer) UpdateCostCategoryDefinition(input *UpdateCostCategoryDefinitionInput) (*UpdateCostCategoryDefinitionOutput, error)

UpdateCostCategoryDefinition API operation for AWS Cost Explorer Service.

Updates an existing Cost Category. Changes made to the Cost Category rules will be used to categorize the current month’s expenses and future expenses. This won’t change categorization for the previous months.

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

See the AWS API reference guide for AWS Cost Explorer Service's API operation UpdateCostCategoryDefinition for usage and error information.

Returned Error Types:

  • ResourceNotFoundException The specified ARN in the request doesn't exist.

  • ServiceQuotaExceededException You've reached the limit on the number of resources you can create, or exceeded the size of an individual resources.

  • LimitExceededException You made too many calls in a short period of time. Try again later.

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/UpdateCostCategoryDefinition

func (*CostExplorer) UpdateCostCategoryDefinitionRequest added in v1.25.42

func (c *CostExplorer) UpdateCostCategoryDefinitionRequest(input *UpdateCostCategoryDefinitionInput) (req *request.Request, output *UpdateCostCategoryDefinitionOutput)

UpdateCostCategoryDefinitionRequest generates a "aws/request.Request" representing the client's request for the UpdateCostCategoryDefinition operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdateCostCategoryDefinition for more information on using the UpdateCostCategoryDefinition API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/UpdateCostCategoryDefinition

func (*CostExplorer) UpdateCostCategoryDefinitionWithContext added in v1.25.42

func (c *CostExplorer) UpdateCostCategoryDefinitionWithContext(ctx aws.Context, input *UpdateCostCategoryDefinitionInput, opts ...request.Option) (*UpdateCostCategoryDefinitionOutput, error)

UpdateCostCategoryDefinitionWithContext is the same as UpdateCostCategoryDefinition with the addition of the ability to pass a context and additional request options.

See UpdateCostCategoryDefinition for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type Coverage added in v1.13.3

type Coverage struct {

	// The amount of cost that the reservation covered.
	CoverageCost *CoverageCost `type:"structure"`

	// The amount of instance usage that the reservation covered, in hours.
	CoverageHours *CoverageHours `type:"structure"`

	// The amount of instance usage that the reservation covered, in normalized
	// units.
	CoverageNormalizedUnits *CoverageNormalizedUnits `type:"structure"`
	// contains filtered or unexported fields
}

The amount of instance usage that a reservation covered.

func (Coverage) GoString added in v1.13.3

func (s Coverage) GoString() string

GoString returns the string representation

func (*Coverage) SetCoverageCost added in v1.16.0

func (s *Coverage) SetCoverageCost(v *CoverageCost) *Coverage

SetCoverageCost sets the CoverageCost field's value.

func (*Coverage) SetCoverageHours added in v1.13.3

func (s *Coverage) SetCoverageHours(v *CoverageHours) *Coverage

SetCoverageHours sets the CoverageHours field's value.

func (*Coverage) SetCoverageNormalizedUnits added in v1.16.0

func (s *Coverage) SetCoverageNormalizedUnits(v *CoverageNormalizedUnits) *Coverage

SetCoverageNormalizedUnits sets the CoverageNormalizedUnits field's value.

func (Coverage) String added in v1.13.3

func (s Coverage) String() string

String returns the string representation

type CoverageByTime added in v1.13.3

type CoverageByTime struct {

	// The groups of instances that the reservation covered.
	Groups []*ReservationCoverageGroup `type:"list"`

	// The period that this coverage was used over.
	TimePeriod *DateInterval `type:"structure"`

	// The total reservation coverage, in hours.
	Total *Coverage `type:"structure"`
	// contains filtered or unexported fields
}

Reservation coverage for a specified period, in hours.

func (CoverageByTime) GoString added in v1.13.3

func (s CoverageByTime) GoString() string

GoString returns the string representation

func (*CoverageByTime) SetGroups added in v1.13.3

SetGroups sets the Groups field's value.

func (*CoverageByTime) SetTimePeriod added in v1.13.3

func (s *CoverageByTime) SetTimePeriod(v *DateInterval) *CoverageByTime

SetTimePeriod sets the TimePeriod field's value.

func (*CoverageByTime) SetTotal added in v1.13.3

func (s *CoverageByTime) SetTotal(v *Coverage) *CoverageByTime

SetTotal sets the Total field's value.

func (CoverageByTime) String added in v1.13.3

func (s CoverageByTime) String() string

String returns the string representation

type CoverageCost added in v1.16.0

type CoverageCost struct {

	// How much an On-Demand Instance costs.
	OnDemandCost *string `type:"string"`
	// contains filtered or unexported fields
}

How much it costs to run an instance.

func (CoverageCost) GoString added in v1.16.0

func (s CoverageCost) GoString() string

GoString returns the string representation

func (*CoverageCost) SetOnDemandCost added in v1.16.0

func (s *CoverageCost) SetOnDemandCost(v string) *CoverageCost

SetOnDemandCost sets the OnDemandCost field's value.

func (CoverageCost) String added in v1.16.0

func (s CoverageCost) String() string

String returns the string representation

type CoverageHours added in v1.13.3

type CoverageHours struct {

	// The percentage of instance hours that a reservation covered.
	CoverageHoursPercentage *string `type:"string"`

	// The number of instance running hours that On-Demand Instances covered.
	OnDemandHours *string `type:"string"`

	// The number of instance running hours that reservations covered.
	ReservedHours *string `type:"string"`

	// The total instance usage, in hours.
	TotalRunningHours *string `type:"string"`
	// contains filtered or unexported fields
}

How long a running instance either used a reservation or was On-Demand.

func (CoverageHours) GoString added in v1.13.3

func (s CoverageHours) GoString() string

GoString returns the string representation

func (*CoverageHours) SetCoverageHoursPercentage added in v1.13.3

func (s *CoverageHours) SetCoverageHoursPercentage(v string) *CoverageHours

SetCoverageHoursPercentage sets the CoverageHoursPercentage field's value.

func (*CoverageHours) SetOnDemandHours added in v1.13.3

func (s *CoverageHours) SetOnDemandHours(v string) *CoverageHours

SetOnDemandHours sets the OnDemandHours field's value.

func (*CoverageHours) SetReservedHours added in v1.13.3

func (s *CoverageHours) SetReservedHours(v string) *CoverageHours

SetReservedHours sets the ReservedHours field's value.

func (*CoverageHours) SetTotalRunningHours added in v1.13.3

func (s *CoverageHours) SetTotalRunningHours(v string) *CoverageHours

SetTotalRunningHours sets the TotalRunningHours field's value.

func (CoverageHours) String added in v1.13.3

func (s CoverageHours) String() string

String returns the string representation

type CoverageNormalizedUnits added in v1.16.0

type CoverageNormalizedUnits struct {

	// The percentage of your used instance normalized units that a reservation
	// covers.
	CoverageNormalizedUnitsPercentage *string `type:"string"`

	// The number of normalized units that are covered by On-Demand Instances instead
	// of a reservation.
	OnDemandNormalizedUnits *string `type:"string"`

	// The number of normalized units that a reservation covers.
	ReservedNormalizedUnits *string `type:"string"`

	// The total number of normalized units that you used.
	TotalRunningNormalizedUnits *string `type:"string"`
	// contains filtered or unexported fields
}

The amount of instance usage, in normalized units. Normalized units enable you to see your EC2 usage for multiple sizes of instances in a uniform way. For example, suppose you run an xlarge instance and a 2xlarge instance. If you run both instances for the same amount of time, the 2xlarge instance uses twice as much of your reservation as the xlarge instance, even though both instances show only one instance-hour. Using normalized units instead of instance-hours, the xlarge instance used 8 normalized units, and the 2xlarge instance used 16 normalized units.

For more information, see Modifying Reserved Instances (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-modifying.html) in the Amazon Elastic Compute Cloud User Guide for Linux Instances.

func (CoverageNormalizedUnits) GoString added in v1.16.0

func (s CoverageNormalizedUnits) GoString() string

GoString returns the string representation

func (*CoverageNormalizedUnits) SetCoverageNormalizedUnitsPercentage added in v1.16.0

func (s *CoverageNormalizedUnits) SetCoverageNormalizedUnitsPercentage(v string) *CoverageNormalizedUnits

SetCoverageNormalizedUnitsPercentage sets the CoverageNormalizedUnitsPercentage field's value.

func (*CoverageNormalizedUnits) SetOnDemandNormalizedUnits added in v1.16.0

func (s *CoverageNormalizedUnits) SetOnDemandNormalizedUnits(v string) *CoverageNormalizedUnits

SetOnDemandNormalizedUnits sets the OnDemandNormalizedUnits field's value.

func (*CoverageNormalizedUnits) SetReservedNormalizedUnits added in v1.16.0

func (s *CoverageNormalizedUnits) SetReservedNormalizedUnits(v string) *CoverageNormalizedUnits

SetReservedNormalizedUnits sets the ReservedNormalizedUnits field's value.

func (*CoverageNormalizedUnits) SetTotalRunningNormalizedUnits added in v1.16.0

func (s *CoverageNormalizedUnits) SetTotalRunningNormalizedUnits(v string) *CoverageNormalizedUnits

SetTotalRunningNormalizedUnits sets the TotalRunningNormalizedUnits field's value.

func (CoverageNormalizedUnits) String added in v1.16.0

func (s CoverageNormalizedUnits) String() string

String returns the string representation

type CreateCostCategoryDefinitionInput added in v1.25.42

type CreateCostCategoryDefinitionInput struct {

	// The unique name of the Cost Category.
	//
	// Name is a required field
	Name *string `min:"1" type:"string" required:"true"`

	// The rule schema version in this particular Cost Category.
	//
	// RuleVersion is a required field
	RuleVersion *string `type:"string" required:"true" enum:"CostCategoryRuleVersion"`

	// The Cost Category rules used to categorize costs. For more information, see
	// CostCategoryRule (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_CostCategoryRule.html).
	//
	// Rules is a required field
	Rules []*CostCategoryRule `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (CreateCostCategoryDefinitionInput) GoString added in v1.25.42

GoString returns the string representation

func (*CreateCostCategoryDefinitionInput) SetName added in v1.25.42

SetName sets the Name field's value.

func (*CreateCostCategoryDefinitionInput) SetRuleVersion added in v1.25.42

SetRuleVersion sets the RuleVersion field's value.

func (*CreateCostCategoryDefinitionInput) SetRules added in v1.25.42

SetRules sets the Rules field's value.

func (CreateCostCategoryDefinitionInput) String added in v1.25.42

String returns the string representation

func (*CreateCostCategoryDefinitionInput) Validate added in v1.25.42

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

type CreateCostCategoryDefinitionOutput added in v1.25.42

type CreateCostCategoryDefinitionOutput struct {

	// The unique identifier for your newly created Cost Category.
	CostCategoryArn *string `min:"20" type:"string"`

	// The Cost Category's effective start date.
	EffectiveStart *string `min:"20" type:"string"`
	// contains filtered or unexported fields
}

func (CreateCostCategoryDefinitionOutput) GoString added in v1.25.42

GoString returns the string representation

func (*CreateCostCategoryDefinitionOutput) SetCostCategoryArn added in v1.25.42

SetCostCategoryArn sets the CostCategoryArn field's value.

func (*CreateCostCategoryDefinitionOutput) SetEffectiveStart added in v1.25.42

SetEffectiveStart sets the EffectiveStart field's value.

func (CreateCostCategoryDefinitionOutput) String added in v1.25.42

String returns the string representation

type CurrentInstance added in v1.21.6

type CurrentInstance struct {

	// The currency code that Amazon Web Services used to calculate the costs for
	// this instance.
	CurrencyCode *string `type:"string"`

	// Current On Demand cost of operating this instance on a monthly basis.
	MonthlyCost *string `type:"string"`

	// Number of hours during the lookback period billed at On Demand rates.
	OnDemandHoursInLookbackPeriod *string `type:"string"`

	// Number of hours during the lookback period covered by reservations.
	ReservationCoveredHoursInLookbackPeriod *string `type:"string"`

	// Details about the resource and utilization.
	ResourceDetails *ResourceDetails `type:"structure"`

	// Resource ID of the current instance.
	ResourceId *string `type:"string"`

	// Utilization information of the current instance during the lookback period.
	ResourceUtilization *ResourceUtilization `type:"structure"`

	// Number of hours during the lookback period covered by Savings Plans.
	SavingsPlansCoveredHoursInLookbackPeriod *string `type:"string"`

	// Cost allocation resource tags applied to the instance.
	Tags []*TagValues `type:"list"`

	// The total number of hours the instance ran during the lookback period.
	TotalRunningHoursInLookbackPeriod *string `type:"string"`
	// contains filtered or unexported fields
}

Context about the current instance.

func (CurrentInstance) GoString added in v1.21.6

func (s CurrentInstance) GoString() string

GoString returns the string representation

func (*CurrentInstance) SetCurrencyCode added in v1.21.6

func (s *CurrentInstance) SetCurrencyCode(v string) *CurrentInstance

SetCurrencyCode sets the CurrencyCode field's value.

func (*CurrentInstance) SetMonthlyCost added in v1.21.6

func (s *CurrentInstance) SetMonthlyCost(v string) *CurrentInstance

SetMonthlyCost sets the MonthlyCost field's value.

func (*CurrentInstance) SetOnDemandHoursInLookbackPeriod added in v1.21.6

func (s *CurrentInstance) SetOnDemandHoursInLookbackPeriod(v string) *CurrentInstance

SetOnDemandHoursInLookbackPeriod sets the OnDemandHoursInLookbackPeriod field's value.

func (*CurrentInstance) SetReservationCoveredHoursInLookbackPeriod added in v1.21.6

func (s *CurrentInstance) SetReservationCoveredHoursInLookbackPeriod(v string) *CurrentInstance

SetReservationCoveredHoursInLookbackPeriod sets the ReservationCoveredHoursInLookbackPeriod field's value.

func (*CurrentInstance) SetResourceDetails added in v1.21.6

func (s *CurrentInstance) SetResourceDetails(v *ResourceDetails) *CurrentInstance

SetResourceDetails sets the ResourceDetails field's value.

func (*CurrentInstance) SetResourceId added in v1.21.6

func (s *CurrentInstance) SetResourceId(v string) *CurrentInstance

SetResourceId sets the ResourceId field's value.

func (*CurrentInstance) SetResourceUtilization added in v1.21.6

func (s *CurrentInstance) SetResourceUtilization(v *ResourceUtilization) *CurrentInstance

SetResourceUtilization sets the ResourceUtilization field's value.

func (*CurrentInstance) SetSavingsPlansCoveredHoursInLookbackPeriod added in v1.25.28

func (s *CurrentInstance) SetSavingsPlansCoveredHoursInLookbackPeriod(v string) *CurrentInstance

SetSavingsPlansCoveredHoursInLookbackPeriod sets the SavingsPlansCoveredHoursInLookbackPeriod field's value.

func (*CurrentInstance) SetTags added in v1.21.6

func (s *CurrentInstance) SetTags(v []*TagValues) *CurrentInstance

SetTags sets the Tags field's value.

func (*CurrentInstance) SetTotalRunningHoursInLookbackPeriod added in v1.21.6

func (s *CurrentInstance) SetTotalRunningHoursInLookbackPeriod(v string) *CurrentInstance

SetTotalRunningHoursInLookbackPeriod sets the TotalRunningHoursInLookbackPeriod field's value.

func (CurrentInstance) String added in v1.21.6

func (s CurrentInstance) String() string

String returns the string representation

type DataUnavailableException added in v1.28.0

type DataUnavailableException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"Message" type:"string"`
	// contains filtered or unexported fields
}

The requested data is unavailable.

func (*DataUnavailableException) Code added in v1.28.0

func (s *DataUnavailableException) Code() string

Code returns the exception type name.

func (*DataUnavailableException) Error added in v1.28.0

func (s *DataUnavailableException) Error() string

func (DataUnavailableException) GoString added in v1.28.0

func (s DataUnavailableException) GoString() string

GoString returns the string representation

func (*DataUnavailableException) Message added in v1.28.0

func (s *DataUnavailableException) Message() string

Message returns the exception's message.

func (*DataUnavailableException) OrigErr added in v1.28.0

func (s *DataUnavailableException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DataUnavailableException) RequestID added in v1.28.0

func (s *DataUnavailableException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DataUnavailableException) StatusCode added in v1.28.0

func (s *DataUnavailableException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DataUnavailableException) String added in v1.28.0

func (s DataUnavailableException) String() string

String returns the string representation

type DateInterval

type DateInterval struct {

	// The end of the time period that you want the usage and costs for. The end
	// date is exclusive. For example, if end is 2017-05-01, AWS retrieves cost
	// and usage data from the start date up to, but not including, 2017-05-01.
	//
	// End is a required field
	End *string `type:"string" required:"true"`

	// The beginning of the time period that you want the usage and costs for. The
	// start date is inclusive. For example, if start is 2017-01-01, AWS retrieves
	// cost and usage data starting at 2017-01-01 up to the end date.
	//
	// Start is a required field
	Start *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

The time period that you want the usage and costs for.

func (DateInterval) GoString

func (s DateInterval) GoString() string

GoString returns the string representation

func (*DateInterval) SetEnd

func (s *DateInterval) SetEnd(v string) *DateInterval

SetEnd sets the End field's value.

func (*DateInterval) SetStart

func (s *DateInterval) SetStart(v string) *DateInterval

SetStart sets the Start field's value.

func (DateInterval) String

func (s DateInterval) String() string

String returns the string representation

func (*DateInterval) Validate

func (s *DateInterval) Validate() error

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

type DeleteCostCategoryDefinitionInput added in v1.25.42

type DeleteCostCategoryDefinitionInput struct {

	// The unique identifier for your Cost Category.
	//
	// CostCategoryArn is a required field
	CostCategoryArn *string `min:"20" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteCostCategoryDefinitionInput) GoString added in v1.25.42

GoString returns the string representation

func (*DeleteCostCategoryDefinitionInput) SetCostCategoryArn added in v1.25.42

SetCostCategoryArn sets the CostCategoryArn field's value.

func (DeleteCostCategoryDefinitionInput) String added in v1.25.42

String returns the string representation

func (*DeleteCostCategoryDefinitionInput) Validate added in v1.25.42

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

type DeleteCostCategoryDefinitionOutput added in v1.25.42

type DeleteCostCategoryDefinitionOutput struct {

	// The unique identifier for your Cost Category.
	CostCategoryArn *string `min:"20" type:"string"`

	// The effective end date of the Cost Category as a result of deleting it. No
	// costs after this date will be categorized by the deleted Cost Category.
	EffectiveEnd *string `min:"20" type:"string"`
	// contains filtered or unexported fields
}

func (DeleteCostCategoryDefinitionOutput) GoString added in v1.25.42

GoString returns the string representation

func (*DeleteCostCategoryDefinitionOutput) SetCostCategoryArn added in v1.25.42

SetCostCategoryArn sets the CostCategoryArn field's value.

func (*DeleteCostCategoryDefinitionOutput) SetEffectiveEnd added in v1.25.42

SetEffectiveEnd sets the EffectiveEnd field's value.

func (DeleteCostCategoryDefinitionOutput) String added in v1.25.42

String returns the string representation

type DescribeCostCategoryDefinitionInput added in v1.25.42

type DescribeCostCategoryDefinitionInput struct {

	// The unique identifier for your Cost Category.
	//
	// CostCategoryArn is a required field
	CostCategoryArn *string `min:"20" type:"string" required:"true"`

	// The date when the Cost Category was effective.
	EffectiveOn *string `min:"20" type:"string"`
	// contains filtered or unexported fields
}

func (DescribeCostCategoryDefinitionInput) GoString added in v1.25.42

GoString returns the string representation

func (*DescribeCostCategoryDefinitionInput) SetCostCategoryArn added in v1.25.42

SetCostCategoryArn sets the CostCategoryArn field's value.

func (*DescribeCostCategoryDefinitionInput) SetEffectiveOn added in v1.25.42

SetEffectiveOn sets the EffectiveOn field's value.

func (DescribeCostCategoryDefinitionInput) String added in v1.25.42

String returns the string representation

func (*DescribeCostCategoryDefinitionInput) Validate added in v1.25.42

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

type DescribeCostCategoryDefinitionOutput added in v1.25.42

type DescribeCostCategoryDefinitionOutput struct {

	// The structure of Cost Categories. This includes detailed metadata and the
	// set of rules for the CostCategory object.
	CostCategory *CostCategory `type:"structure"`
	// contains filtered or unexported fields
}

func (DescribeCostCategoryDefinitionOutput) GoString added in v1.25.42

GoString returns the string representation

func (*DescribeCostCategoryDefinitionOutput) SetCostCategory added in v1.25.42

SetCostCategory sets the CostCategory field's value.

func (DescribeCostCategoryDefinitionOutput) String added in v1.25.42

String returns the string representation

type DimensionValues

type DimensionValues struct {

	// The names of the metadata types that you can use to filter and group your
	// results. For example, AZ returns a list of Availability Zones.
	Key *string `type:"string" enum:"Dimension"`

	// The match options that you can use to filter your results. MatchOptions is
	// only applicable for actions related to Cost Category. The default values
	// for MatchOptions is EQUALS and CASE_SENSITIVE.
	MatchOptions []*string `type:"list"`

	// The metadata values that you can use to filter and group your results. You
	// can use GetDimensionValues to find specific values.
	Values []*string `type:"list"`
	// contains filtered or unexported fields
}

The metadata that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

func (DimensionValues) GoString

func (s DimensionValues) GoString() string

GoString returns the string representation

func (*DimensionValues) SetKey

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

SetKey sets the Key field's value.

func (*DimensionValues) SetMatchOptions added in v1.30.10

func (s *DimensionValues) SetMatchOptions(v []*string) *DimensionValues

SetMatchOptions sets the MatchOptions field's value.

func (*DimensionValues) SetValues

func (s *DimensionValues) SetValues(v []*string) *DimensionValues

SetValues sets the Values field's value.

func (DimensionValues) String

func (s DimensionValues) String() string

String returns the string representation

type DimensionValuesWithAttributes

type DimensionValuesWithAttributes struct {

	// The attribute that applies to a specific Dimension.
	Attributes map[string]*string `type:"map"`

	// The value of a dimension with a specific attribute.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

The metadata of a specific type that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

func (DimensionValuesWithAttributes) GoString

GoString returns the string representation

func (*DimensionValuesWithAttributes) SetAttributes

SetAttributes sets the Attributes field's value.

func (*DimensionValuesWithAttributes) SetValue

SetValue sets the Value field's value.

func (DimensionValuesWithAttributes) String

String returns the string representation

type EC2InstanceDetails added in v1.13.17

type EC2InstanceDetails struct {

	// The Availability Zone of the recommended reservation.
	AvailabilityZone *string `type:"string"`

	// Whether the recommendation is for a current-generation instance.
	CurrentGeneration *bool `type:"boolean"`

	// The instance family of the recommended reservation.
	Family *string `type:"string"`

	// The type of instance that AWS recommends.
	InstanceType *string `type:"string"`

	// The platform of the recommended reservation. The platform is the specific
	// combination of operating system, license model, and software on an instance.
	Platform *string `type:"string"`

	// The AWS Region of the recommended reservation.
	Region *string `type:"string"`

	// Whether the recommended reservation is size flexible.
	SizeFlexEligible *bool `type:"boolean"`

	// Whether the recommended reservation is dedicated or shared.
	Tenancy *string `type:"string"`
	// contains filtered or unexported fields
}

Details about the Amazon EC2 instances that AWS recommends that you purchase.

func (EC2InstanceDetails) GoString added in v1.13.17

func (s EC2InstanceDetails) GoString() string

GoString returns the string representation

func (*EC2InstanceDetails) SetAvailabilityZone added in v1.13.17

func (s *EC2InstanceDetails) SetAvailabilityZone(v string) *EC2InstanceDetails

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*EC2InstanceDetails) SetCurrentGeneration added in v1.13.17

func (s *EC2InstanceDetails) SetCurrentGeneration(v bool) *EC2InstanceDetails

SetCurrentGeneration sets the CurrentGeneration field's value.

func (*EC2InstanceDetails) SetFamily added in v1.13.17

func (s *EC2InstanceDetails) SetFamily(v string) *EC2InstanceDetails

SetFamily sets the Family field's value.

func (*EC2InstanceDetails) SetInstanceType added in v1.13.17

func (s *EC2InstanceDetails) SetInstanceType(v string) *EC2InstanceDetails

SetInstanceType sets the InstanceType field's value.

func (*EC2InstanceDetails) SetPlatform added in v1.13.17

func (s *EC2InstanceDetails) SetPlatform(v string) *EC2InstanceDetails

SetPlatform sets the Platform field's value.

func (*EC2InstanceDetails) SetRegion added in v1.13.17

func (s *EC2InstanceDetails) SetRegion(v string) *EC2InstanceDetails

SetRegion sets the Region field's value.

func (*EC2InstanceDetails) SetSizeFlexEligible added in v1.13.17

func (s *EC2InstanceDetails) SetSizeFlexEligible(v bool) *EC2InstanceDetails

SetSizeFlexEligible sets the SizeFlexEligible field's value.

func (*EC2InstanceDetails) SetTenancy added in v1.13.17

func (s *EC2InstanceDetails) SetTenancy(v string) *EC2InstanceDetails

SetTenancy sets the Tenancy field's value.

func (EC2InstanceDetails) String added in v1.13.17

func (s EC2InstanceDetails) String() string

String returns the string representation

type EC2ResourceDetails added in v1.21.6

type EC2ResourceDetails struct {

	// Hourly public On Demand rate for the instance type.
	HourlyOnDemandRate *string `type:"string"`

	// The type of Amazon Web Services instance.
	InstanceType *string `type:"string"`

	// Memory capacity of Amazon Web Services instance.
	Memory *string `type:"string"`

	// Network performance capacity of the Amazon Web Services instance.
	NetworkPerformance *string `type:"string"`

	// The platform of the Amazon Web Services instance. The platform is the specific
	// combination of operating system, license model, and software on an instance.
	Platform *string `type:"string"`

	// The Amazon Web Services Region of the instance.
	Region *string `type:"string"`

	// The SKU of the product.
	Sku *string `type:"string"`

	// The disk storage of the Amazon Web Services instance (Not EBS storage).
	Storage *string `type:"string"`

	// Number of VCPU cores in the Amazon Web Services instance type.
	Vcpu *string `type:"string"`
	// contains filtered or unexported fields
}

Details on the Amazon EC2 Resource.

func (EC2ResourceDetails) GoString added in v1.21.6

func (s EC2ResourceDetails) GoString() string

GoString returns the string representation

func (*EC2ResourceDetails) SetHourlyOnDemandRate added in v1.21.6

func (s *EC2ResourceDetails) SetHourlyOnDemandRate(v string) *EC2ResourceDetails

SetHourlyOnDemandRate sets the HourlyOnDemandRate field's value.

func (*EC2ResourceDetails) SetInstanceType added in v1.21.6

func (s *EC2ResourceDetails) SetInstanceType(v string) *EC2ResourceDetails

SetInstanceType sets the InstanceType field's value.

func (*EC2ResourceDetails) SetMemory added in v1.21.6

func (s *EC2ResourceDetails) SetMemory(v string) *EC2ResourceDetails

SetMemory sets the Memory field's value.

func (*EC2ResourceDetails) SetNetworkPerformance added in v1.21.6

func (s *EC2ResourceDetails) SetNetworkPerformance(v string) *EC2ResourceDetails

SetNetworkPerformance sets the NetworkPerformance field's value.

func (*EC2ResourceDetails) SetPlatform added in v1.21.6

func (s *EC2ResourceDetails) SetPlatform(v string) *EC2ResourceDetails

SetPlatform sets the Platform field's value.

func (*EC2ResourceDetails) SetRegion added in v1.21.6

func (s *EC2ResourceDetails) SetRegion(v string) *EC2ResourceDetails

SetRegion sets the Region field's value.

func (*EC2ResourceDetails) SetSku added in v1.21.6

SetSku sets the Sku field's value.

func (*EC2ResourceDetails) SetStorage added in v1.21.6

func (s *EC2ResourceDetails) SetStorage(v string) *EC2ResourceDetails

SetStorage sets the Storage field's value.

func (*EC2ResourceDetails) SetVcpu added in v1.21.6

SetVcpu sets the Vcpu field's value.

func (EC2ResourceDetails) String added in v1.21.6

func (s EC2ResourceDetails) String() string

String returns the string representation

type EC2ResourceUtilization added in v1.21.6

type EC2ResourceUtilization struct {

	// Maximum observed or expected CPU utilization of the instance.
	MaxCpuUtilizationPercentage *string `type:"string"`

	// Maximum observed or expected memory utilization of the instance.
	MaxMemoryUtilizationPercentage *string `type:"string"`

	// Maximum observed or expected storage utilization of the instance (does not
	// measure EBS storage).
	MaxStorageUtilizationPercentage *string `type:"string"`
	// contains filtered or unexported fields
}

Utilization metrics of the instance.

func (EC2ResourceUtilization) GoString added in v1.21.6

func (s EC2ResourceUtilization) GoString() string

GoString returns the string representation

func (*EC2ResourceUtilization) SetMaxCpuUtilizationPercentage added in v1.21.6

func (s *EC2ResourceUtilization) SetMaxCpuUtilizationPercentage(v string) *EC2ResourceUtilization

SetMaxCpuUtilizationPercentage sets the MaxCpuUtilizationPercentage field's value.

func (*EC2ResourceUtilization) SetMaxMemoryUtilizationPercentage added in v1.21.6

func (s *EC2ResourceUtilization) SetMaxMemoryUtilizationPercentage(v string) *EC2ResourceUtilization

SetMaxMemoryUtilizationPercentage sets the MaxMemoryUtilizationPercentage field's value.

func (*EC2ResourceUtilization) SetMaxStorageUtilizationPercentage added in v1.21.6

func (s *EC2ResourceUtilization) SetMaxStorageUtilizationPercentage(v string) *EC2ResourceUtilization

SetMaxStorageUtilizationPercentage sets the MaxStorageUtilizationPercentage field's value.

func (EC2ResourceUtilization) String added in v1.21.6

func (s EC2ResourceUtilization) String() string

String returns the string representation

type EC2Specification added in v1.13.17

type EC2Specification struct {

	// Whether you want a recommendation for standard or convertible reservations.
	OfferingClass *string `type:"string" enum:"OfferingClass"`
	// contains filtered or unexported fields
}

The Amazon EC2 hardware specifications that you want AWS to provide recommendations for.

func (EC2Specification) GoString added in v1.13.17

func (s EC2Specification) GoString() string

GoString returns the string representation

func (*EC2Specification) SetOfferingClass added in v1.13.17

func (s *EC2Specification) SetOfferingClass(v string) *EC2Specification

SetOfferingClass sets the OfferingClass field's value.

func (EC2Specification) String added in v1.13.17

func (s EC2Specification) String() string

String returns the string representation

type ESInstanceDetails added in v1.14.25

type ESInstanceDetails struct {

	// Whether the recommendation is for a current-generation instance.
	CurrentGeneration *bool `type:"boolean"`

	// The class of instance that AWS recommends.
	InstanceClass *string `type:"string"`

	// The size of instance that AWS recommends.
	InstanceSize *string `type:"string"`

	// The AWS Region of the recommended reservation.
	Region *string `type:"string"`

	// Whether the recommended reservation is size flexible.
	SizeFlexEligible *bool `type:"boolean"`
	// contains filtered or unexported fields
}

Details about the Amazon ES instances that AWS recommends that you purchase.

func (ESInstanceDetails) GoString added in v1.14.25

func (s ESInstanceDetails) GoString() string

GoString returns the string representation

func (*ESInstanceDetails) SetCurrentGeneration added in v1.14.25

func (s *ESInstanceDetails) SetCurrentGeneration(v bool) *ESInstanceDetails

SetCurrentGeneration sets the CurrentGeneration field's value.

func (*ESInstanceDetails) SetInstanceClass added in v1.14.25

func (s *ESInstanceDetails) SetInstanceClass(v string) *ESInstanceDetails

SetInstanceClass sets the InstanceClass field's value.

func (*ESInstanceDetails) SetInstanceSize added in v1.14.25

func (s *ESInstanceDetails) SetInstanceSize(v string) *ESInstanceDetails

SetInstanceSize sets the InstanceSize field's value.

func (*ESInstanceDetails) SetRegion added in v1.14.25

func (s *ESInstanceDetails) SetRegion(v string) *ESInstanceDetails

SetRegion sets the Region field's value.

func (*ESInstanceDetails) SetSizeFlexEligible added in v1.14.25

func (s *ESInstanceDetails) SetSizeFlexEligible(v bool) *ESInstanceDetails

SetSizeFlexEligible sets the SizeFlexEligible field's value.

func (ESInstanceDetails) String added in v1.14.25

func (s ESInstanceDetails) String() string

String returns the string representation

type ElastiCacheInstanceDetails added in v1.14.25

type ElastiCacheInstanceDetails struct {

	// Whether the recommendation is for a current generation instance.
	CurrentGeneration *bool `type:"boolean"`

	// The instance family of the recommended reservation.
	Family *string `type:"string"`

	// The type of node that AWS recommends.
	NodeType *string `type:"string"`

	// The description of the recommended reservation.
	ProductDescription *string `type:"string"`

	// The AWS Region of the recommended reservation.
	Region *string `type:"string"`

	// Whether the recommended reservation is size flexible.
	SizeFlexEligible *bool `type:"boolean"`
	// contains filtered or unexported fields
}

Details about the Amazon ElastiCache instances that AWS recommends that you purchase.

func (ElastiCacheInstanceDetails) GoString added in v1.14.25

func (s ElastiCacheInstanceDetails) GoString() string

GoString returns the string representation

func (*ElastiCacheInstanceDetails) SetCurrentGeneration added in v1.14.25

func (s *ElastiCacheInstanceDetails) SetCurrentGeneration(v bool) *ElastiCacheInstanceDetails

SetCurrentGeneration sets the CurrentGeneration field's value.

func (*ElastiCacheInstanceDetails) SetFamily added in v1.14.25

SetFamily sets the Family field's value.

func (*ElastiCacheInstanceDetails) SetNodeType added in v1.14.25

SetNodeType sets the NodeType field's value.

func (*ElastiCacheInstanceDetails) SetProductDescription added in v1.14.25

func (s *ElastiCacheInstanceDetails) SetProductDescription(v string) *ElastiCacheInstanceDetails

SetProductDescription sets the ProductDescription field's value.

func (*ElastiCacheInstanceDetails) SetRegion added in v1.14.25

SetRegion sets the Region field's value.

func (*ElastiCacheInstanceDetails) SetSizeFlexEligible added in v1.14.25

func (s *ElastiCacheInstanceDetails) SetSizeFlexEligible(v bool) *ElastiCacheInstanceDetails

SetSizeFlexEligible sets the SizeFlexEligible field's value.

func (ElastiCacheInstanceDetails) String added in v1.14.25

String returns the string representation

type Expression

type Expression struct {

	// Return results that match both Dimension objects.
	And []*Expression `type:"list"`

	// The filter based on CostCategory values.
	CostCategories *CostCategoryValues `type:"structure"`

	// The specific Dimension to use for Expression.
	Dimensions *DimensionValues `type:"structure"`

	// Return results that don't match a Dimension object.
	Not *Expression `type:"structure"`

	// Return results that match either Dimension object.
	Or []*Expression `type:"list"`

	// The specific Tag to use for Expression.
	Tags *TagValues `type:"structure"`
	// contains filtered or unexported fields
}

Use Expression to filter by cost or by usage. There are two patterns:

  • Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for REGION==us-east-1 OR REGION==us-west-1. The Expression for that looks like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ] } } The list of dimension values are OR'd together to retrieve cost or usage data. You can create Expression and DimensionValues objects using either with* methods or set* methods in multiple lines.

  • Compound dimension values with logical operations - You can use multiple Expression types and the logical operators AND/OR/NOT to create a list of one or more Expression objects. This allows you to filter on more advanced options. For example, you can filter on ((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer). The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } Because each Expression can have only one operator, the service returns an error if more than one is specified. The following example shows an Expression object that creates an error. { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }

For GetRightsizingRecommendation action, a combination of OR and NOT is not supported. OR is not supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited to LINKED_ACCOUNT, REGION, or RIGHTSIZING_TYPE.

func (Expression) GoString

func (s Expression) GoString() string

GoString returns the string representation

func (*Expression) SetAnd

func (s *Expression) SetAnd(v []*Expression) *Expression

SetAnd sets the And field's value.

func (*Expression) SetCostCategories added in v1.25.42

func (s *Expression) SetCostCategories(v *CostCategoryValues) *Expression

SetCostCategories sets the CostCategories field's value.

func (*Expression) SetDimensions

func (s *Expression) SetDimensions(v *DimensionValues) *Expression

SetDimensions sets the Dimensions field's value.

func (*Expression) SetNot

func (s *Expression) SetNot(v *Expression) *Expression

SetNot sets the Not field's value.

func (*Expression) SetOr

func (s *Expression) SetOr(v []*Expression) *Expression

SetOr sets the Or field's value.

func (*Expression) SetTags

func (s *Expression) SetTags(v *TagValues) *Expression

SetTags sets the Tags field's value.

func (Expression) String

func (s Expression) String() string

String returns the string representation

func (*Expression) Validate added in v1.25.42

func (s *Expression) Validate() error

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

type ForecastResult added in v1.15.78

type ForecastResult struct {

	// The mean value of the forecast.
	MeanValue *string `type:"string"`

	// The lower limit for the prediction interval.
	PredictionIntervalLowerBound *string `type:"string"`

	// The upper limit for the prediction interval.
	PredictionIntervalUpperBound *string `type:"string"`

	// The period of time that the forecast covers.
	TimePeriod *DateInterval `type:"structure"`
	// contains filtered or unexported fields
}

The forecast created for your query.

func (ForecastResult) GoString added in v1.15.78

func (s ForecastResult) GoString() string

GoString returns the string representation

func (*ForecastResult) SetMeanValue added in v1.15.78

func (s *ForecastResult) SetMeanValue(v string) *ForecastResult

SetMeanValue sets the MeanValue field's value.

func (*ForecastResult) SetPredictionIntervalLowerBound added in v1.15.78

func (s *ForecastResult) SetPredictionIntervalLowerBound(v string) *ForecastResult

SetPredictionIntervalLowerBound sets the PredictionIntervalLowerBound field's value.

func (*ForecastResult) SetPredictionIntervalUpperBound added in v1.15.78

func (s *ForecastResult) SetPredictionIntervalUpperBound(v string) *ForecastResult

SetPredictionIntervalUpperBound sets the PredictionIntervalUpperBound field's value.

func (*ForecastResult) SetTimePeriod added in v1.15.78

func (s *ForecastResult) SetTimePeriod(v *DateInterval) *ForecastResult

SetTimePeriod sets the TimePeriod field's value.

func (ForecastResult) String added in v1.15.78

func (s ForecastResult) String() string

String returns the string representation

type GetCostAndUsageInput

type GetCostAndUsageInput struct {

	// Filters AWS costs by different dimensions. For example, you can specify SERVICE
	// and LINKED_ACCOUNT and get the costs that are associated with that account's
	// usage of that service. You can nest Expression objects to define any combination
	// of dimension filters. For more information, see Expression (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html).
	Filter *Expression `type:"structure"`

	// Sets the AWS cost granularity to MONTHLY or DAILY, or HOURLY. If Granularity
	// isn't set, the response object doesn't include the Granularity, either MONTHLY
	// or DAILY, or HOURLY.
	Granularity *string `type:"string" enum:"Granularity"`

	// You can group AWS costs using up to two different groups, either dimensions,
	// tag keys, or both.
	//
	// When you group by tag key, you get all tag values, including empty strings.
	//
	// Valid values are AZ, INSTANCE_TYPE, LEGAL_ENTITY_NAME, LINKED_ACCOUNT, OPERATION,
	// PLATFORM, PURCHASE_TYPE, SERVICE, TAGS, TENANCY, RECORD_TYPE, and USAGE_TYPE.
	GroupBy []*GroupDefinition `type:"list"`

	// Which metrics are returned in the query. For more information about blended
	// and unblended rates, see Why does the "blended" annotation appear on some
	// line items in my bill? (http://aws.amazon.com/premiumsupport/knowledge-center/blended-rates-intro/).
	//
	// Valid values are AmortizedCost, BlendedCost, NetAmortizedCost, NetUnblendedCost,
	// NormalizedUsageAmount, UnblendedCost, and UsageQuantity.
	//
	// If you return the UsageQuantity metric, the service aggregates all usage
	// numbers without taking into account the units. For example, if you aggregate
	// usageQuantity across all of Amazon EC2, the results aren't meaningful because
	// Amazon EC2 compute hours and data transfer are measured in different units
	// (for example, hours vs. GB). To get more meaningful UsageQuantity metrics,
	// filter by UsageType or UsageTypeGroups.
	//
	// Metrics is required for GetCostAndUsage requests.
	Metrics []*string `type:"list"`

	// The token to retrieve the next set of results. AWS provides the token when
	// the response from a previous call has more results than the maximum page
	// size.
	NextPageToken *string `type:"string"`

	// Sets the start and end dates for retrieving AWS costs. The start date is
	// inclusive, but the end date is exclusive. For example, if start is 2017-01-01
	// and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01
	// up to and including 2017-04-30 but not including 2017-05-01.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetCostAndUsageInput) GoString

func (s GetCostAndUsageInput) GoString() string

GoString returns the string representation

func (*GetCostAndUsageInput) SetFilter

SetFilter sets the Filter field's value.

func (*GetCostAndUsageInput) SetGranularity

func (s *GetCostAndUsageInput) SetGranularity(v string) *GetCostAndUsageInput

SetGranularity sets the Granularity field's value.

func (*GetCostAndUsageInput) SetGroupBy

SetGroupBy sets the GroupBy field's value.

func (*GetCostAndUsageInput) SetMetrics

func (s *GetCostAndUsageInput) SetMetrics(v []*string) *GetCostAndUsageInput

SetMetrics sets the Metrics field's value.

func (*GetCostAndUsageInput) SetNextPageToken

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

SetNextPageToken sets the NextPageToken field's value.

func (*GetCostAndUsageInput) SetTimePeriod

SetTimePeriod sets the TimePeriod field's value.

func (GetCostAndUsageInput) String

func (s GetCostAndUsageInput) String() string

String returns the string representation

func (*GetCostAndUsageInput) Validate

func (s *GetCostAndUsageInput) Validate() error

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

type GetCostAndUsageOutput

type GetCostAndUsageOutput struct {

	// The groups that are specified by the Filter or GroupBy parameters in the
	// request.
	GroupDefinitions []*GroupDefinition `type:"list"`

	// The token for the next set of retrievable results. AWS provides the token
	// when the response from a previous call has more results than the maximum
	// page size.
	NextPageToken *string `type:"string"`

	// The time period that is covered by the results in the response.
	ResultsByTime []*ResultByTime `type:"list"`
	// contains filtered or unexported fields
}

func (GetCostAndUsageOutput) GoString

func (s GetCostAndUsageOutput) GoString() string

GoString returns the string representation

func (*GetCostAndUsageOutput) SetGroupDefinitions

func (s *GetCostAndUsageOutput) SetGroupDefinitions(v []*GroupDefinition) *GetCostAndUsageOutput

SetGroupDefinitions sets the GroupDefinitions field's value.

func (*GetCostAndUsageOutput) SetNextPageToken

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

SetNextPageToken sets the NextPageToken field's value.

func (*GetCostAndUsageOutput) SetResultsByTime

func (s *GetCostAndUsageOutput) SetResultsByTime(v []*ResultByTime) *GetCostAndUsageOutput

SetResultsByTime sets the ResultsByTime field's value.

func (GetCostAndUsageOutput) String

func (s GetCostAndUsageOutput) String() string

String returns the string representation

type GetCostAndUsageWithResourcesInput added in v1.25.32

type GetCostAndUsageWithResourcesInput struct {

	// Filters Amazon Web Services costs by different dimensions. For example, you
	// can specify SERVICE and LINKED_ACCOUNT and get the costs that are associated
	// with that account's usage of that service. You can nest Expression objects
	// to define any combination of dimension filters. For more information, see
	// Expression (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html).
	//
	// The GetCostAndUsageWithResources operation requires that you either group
	// by or filter by a ResourceId.
	Filter *Expression `type:"structure"`

	// Sets the AWS cost granularity to MONTHLY, DAILY, or HOURLY. If Granularity
	// isn't set, the response object doesn't include the Granularity, MONTHLY,
	// DAILY, or HOURLY.
	Granularity *string `type:"string" enum:"Granularity"`

	// You can group Amazon Web Services costs using up to two different groups:
	// either dimensions, tag keys, or both.
	GroupBy []*GroupDefinition `type:"list"`

	// Which metrics are returned in the query. For more information about blended
	// and unblended rates, see Why does the "blended" annotation appear on some
	// line items in my bill? (http://aws.amazon.com/premiumsupport/knowledge-center/blended-rates-intro/).
	//
	// Valid values are AmortizedCost, BlendedCost, NetAmortizedCost, NetUnblendedCost,
	// NormalizedUsageAmount, UnblendedCost, and UsageQuantity.
	//
	// If you return the UsageQuantity metric, the service aggregates all usage
	// numbers without taking the units into account. For example, if you aggregate
	// usageQuantity across all of Amazon EC2, the results aren't meaningful because
	// Amazon EC2 compute hours and data transfer are measured in different units
	// (for example, hours vs. GB). To get more meaningful UsageQuantity metrics,
	// filter by UsageType or UsageTypeGroups.
	//
	// Metrics is required for GetCostAndUsageWithResources requests.
	Metrics []*string `type:"list"`

	// The token to retrieve the next set of results. AWS provides the token when
	// the response from a previous call has more results than the maximum page
	// size.
	NextPageToken *string `type:"string"`

	// Sets the start and end dates for retrieving Amazon Web Services costs. The
	// range must be within the last 14 days (the start date cannot be earlier than
	// 14 days ago). The start date is inclusive, but the end date is exclusive.
	// For example, if start is 2017-01-01 and end is 2017-05-01, then the cost
	// and usage data is retrieved from 2017-01-01 up to and including 2017-04-30
	// but not including 2017-05-01.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetCostAndUsageWithResourcesInput) GoString added in v1.25.32

GoString returns the string representation

func (*GetCostAndUsageWithResourcesInput) SetFilter added in v1.25.32

SetFilter sets the Filter field's value.

func (*GetCostAndUsageWithResourcesInput) SetGranularity added in v1.25.32

SetGranularity sets the Granularity field's value.

func (*GetCostAndUsageWithResourcesInput) SetGroupBy added in v1.25.32

SetGroupBy sets the GroupBy field's value.

func (*GetCostAndUsageWithResourcesInput) SetMetrics added in v1.25.32

SetMetrics sets the Metrics field's value.

func (*GetCostAndUsageWithResourcesInput) SetNextPageToken added in v1.25.32

SetNextPageToken sets the NextPageToken field's value.

func (*GetCostAndUsageWithResourcesInput) SetTimePeriod added in v1.25.32

SetTimePeriod sets the TimePeriod field's value.

func (GetCostAndUsageWithResourcesInput) String added in v1.25.32

String returns the string representation

func (*GetCostAndUsageWithResourcesInput) Validate added in v1.25.32

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

type GetCostAndUsageWithResourcesOutput added in v1.25.32

type GetCostAndUsageWithResourcesOutput struct {

	// The groups that are specified by the Filter or GroupBy parameters in the
	// request.
	GroupDefinitions []*GroupDefinition `type:"list"`

	// The token for the next set of retrievable results. AWS provides the token
	// when the response from a previous call has more results than the maximum
	// page size.
	NextPageToken *string `type:"string"`

	// The time period that is covered by the results in the response.
	ResultsByTime []*ResultByTime `type:"list"`
	// contains filtered or unexported fields
}

func (GetCostAndUsageWithResourcesOutput) GoString added in v1.25.32

GoString returns the string representation

func (*GetCostAndUsageWithResourcesOutput) SetGroupDefinitions added in v1.25.32

SetGroupDefinitions sets the GroupDefinitions field's value.

func (*GetCostAndUsageWithResourcesOutput) SetNextPageToken added in v1.25.32

SetNextPageToken sets the NextPageToken field's value.

func (*GetCostAndUsageWithResourcesOutput) SetResultsByTime added in v1.25.32

SetResultsByTime sets the ResultsByTime field's value.

func (GetCostAndUsageWithResourcesOutput) String added in v1.25.32

String returns the string representation

type GetCostForecastInput added in v1.15.78

type GetCostForecastInput struct {

	// The filters that you want to use to filter your forecast. Cost Explorer API
	// supports all of the Cost Explorer filters.
	Filter *Expression `type:"structure"`

	// How granular you want the forecast to be. You can get 3 months of DAILY forecasts
	// or 12 months of MONTHLY forecasts.
	//
	// The GetCostForecast operation supports only DAILY and MONTHLY granularities.
	//
	// Granularity is a required field
	Granularity *string `type:"string" required:"true" enum:"Granularity"`

	// Which metric Cost Explorer uses to create your forecast. For more information
	// about blended and unblended rates, see Why does the "blended" annotation
	// appear on some line items in my bill? (http://aws.amazon.com/premiumsupport/knowledge-center/blended-rates-intro/).
	//
	// Valid values for a GetCostForecast call are the following:
	//
	//    * AMORTIZED_COST
	//
	//    * BLENDED_COST
	//
	//    * NET_AMORTIZED_COST
	//
	//    * NET_UNBLENDED_COST
	//
	//    * UNBLENDED_COST
	//
	// Metric is a required field
	Metric *string `type:"string" required:"true" enum:"Metric"`

	// Cost Explorer always returns the mean forecast as a single point. You can
	// request a prediction interval around the mean by specifying a confidence
	// level. The higher the confidence level, the more confident Cost Explorer
	// is about the actual value falling in the prediction interval. Higher confidence
	// levels result in wider prediction intervals.
	PredictionIntervalLevel *int64 `min:"51" type:"integer"`

	// The period of time that you want the forecast to cover.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetCostForecastInput) GoString added in v1.15.78

func (s GetCostForecastInput) GoString() string

GoString returns the string representation

func (*GetCostForecastInput) SetFilter added in v1.15.78

SetFilter sets the Filter field's value.

func (*GetCostForecastInput) SetGranularity added in v1.15.78

func (s *GetCostForecastInput) SetGranularity(v string) *GetCostForecastInput

SetGranularity sets the Granularity field's value.

func (*GetCostForecastInput) SetMetric added in v1.15.78

SetMetric sets the Metric field's value.

func (*GetCostForecastInput) SetPredictionIntervalLevel added in v1.15.78

func (s *GetCostForecastInput) SetPredictionIntervalLevel(v int64) *GetCostForecastInput

SetPredictionIntervalLevel sets the PredictionIntervalLevel field's value.

func (*GetCostForecastInput) SetTimePeriod added in v1.15.78

SetTimePeriod sets the TimePeriod field's value.

func (GetCostForecastInput) String added in v1.15.78

func (s GetCostForecastInput) String() string

String returns the string representation

func (*GetCostForecastInput) Validate added in v1.15.78

func (s *GetCostForecastInput) Validate() error

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

type GetCostForecastOutput added in v1.15.78

type GetCostForecastOutput struct {

	// The forecasts for your query, in order. For DAILY forecasts, this is a list
	// of days. For MONTHLY forecasts, this is a list of months.
	ForecastResultsByTime []*ForecastResult `type:"list"`

	// How much you are forecasted to spend over the forecast period, in USD.
	Total *MetricValue `type:"structure"`
	// contains filtered or unexported fields
}

func (GetCostForecastOutput) GoString added in v1.15.78

func (s GetCostForecastOutput) GoString() string

GoString returns the string representation

func (*GetCostForecastOutput) SetForecastResultsByTime added in v1.15.78

func (s *GetCostForecastOutput) SetForecastResultsByTime(v []*ForecastResult) *GetCostForecastOutput

SetForecastResultsByTime sets the ForecastResultsByTime field's value.

func (*GetCostForecastOutput) SetTotal added in v1.15.78

SetTotal sets the Total field's value.

func (GetCostForecastOutput) String added in v1.15.78

func (s GetCostForecastOutput) String() string

String returns the string representation

type GetDimensionValuesInput

type GetDimensionValuesInput struct {

	// The context for the call to GetDimensionValues. This can be RESERVATIONS
	// or COST_AND_USAGE. The default value is COST_AND_USAGE. If the context is
	// set to RESERVATIONS, the resulting dimension values can be used in the GetReservationUtilization
	// operation. If the context is set to COST_AND_USAGE, the resulting dimension
	// values can be used in the GetCostAndUsage operation.
	//
	// If you set the context to COST_AND_USAGE, you can use the following dimensions
	// for searching:
	//
	//    * AZ - The Availability Zone. An example is us-east-1a.
	//
	//    * DATABASE_ENGINE - The Amazon Relational Database Service database. Examples
	//    are Aurora or MySQL.
	//
	//    * INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.
	//
	//    * LEGAL_ENTITY_NAME - The name of the organization that sells you AWS
	//    services, such as Amazon Web Services.
	//
	//    * LINKED_ACCOUNT - The description in the attribute map that includes
	//    the full name of the member account. The value field contains the AWS
	//    ID of the member account.
	//
	//    * OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.
	//
	//    * OPERATION - The action performed. Examples include RunInstance and CreateBucket.
	//
	//    * PLATFORM - The Amazon EC2 operating system. Examples are Windows or
	//    Linux.
	//
	//    * PURCHASE_TYPE - The reservation type of the purchase to which this usage
	//    is related. Examples include On-Demand Instances and Standard Reserved
	//    Instances.
	//
	//    * SERVICE - The AWS service such as Amazon DynamoDB.
	//
	//    * USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes.
	//    The response for the GetDimensionValues operation includes a unit attribute.
	//    Examples include GB and Hrs.
	//
	//    * USAGE_TYPE_GROUP - The grouping of common usage types. An example is
	//    Amazon EC2: CloudWatch – Alarms. The response for this operation includes
	//    a unit attribute.
	//
	//    * RECORD_TYPE - The different types of charges such as RI fees, usage
	//    costs, tax refunds, and credits.
	//
	//    * RESOURCE_ID - The unique identifier of the resource. ResourceId is an
	//    opt-in feature only available for last 14 days for EC2-Compute Service.
	//
	// If you set the context to RESERVATIONS, you can use the following dimensions
	// for searching:
	//
	//    * AZ - The Availability Zone. An example is us-east-1a.
	//
	//    * CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are
	//    Windows or Linux.
	//
	//    * DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service
	//    deployments. Valid values are SingleAZ and MultiAZ.
	//
	//    * INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.
	//
	//    * LINKED_ACCOUNT - The description in the attribute map that includes
	//    the full name of the member account. The value field contains the AWS
	//    ID of the member account.
	//
	//    * PLATFORM - The Amazon EC2 operating system. Examples are Windows or
	//    Linux.
	//
	//    * REGION - The AWS Region.
	//
	//    * SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values
	//    are regional or a single Availability Zone.
	//
	//    * TAG (Coverage only) - The tags that are associated with a Reserved Instance
	//    (RI).
	//
	//    * TENANCY - The tenancy of a resource. Examples are shared or dedicated.
	//
	// If you set the context to SAVINGS_PLANS, you can use the following dimensions
	// for searching:
	//
	//    * SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)
	//
	//    * PAYMENT_OPTION - Payment option for the given Savings Plans (for example,
	//    All Upfront)
	//
	//    * REGION - The AWS Region.
	//
	//    * INSTANCE_TYPE_FAMILY - The family of instances (For example, m5)
	//
	//    * LINKED_ACCOUNT - The description in the attribute map that includes
	//    the full name of the member account. The value field contains the AWS
	//    ID of the member account.
	//
	//    * SAVINGS_PLAN_ARN - The unique identifier for your Savings Plan
	Context *string `type:"string" enum:"Context"`

	// The name of the dimension. Each Dimension is available for a different Context.
	// For more information, see Context.
	//
	// Dimension is a required field
	Dimension *string `type:"string" required:"true" enum:"Dimension"`

	// The token to retrieve the next set of results. AWS provides the token when
	// the response from a previous call has more results than the maximum page
	// size.
	NextPageToken *string `type:"string"`

	// The value that you want to search the filter values for.
	SearchString *string `type:"string"`

	// The start and end dates for retrieving the dimension values. The start date
	// is inclusive, but the end date is exclusive. For example, if start is 2017-01-01
	// and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01
	// up to and including 2017-04-30 but not including 2017-05-01.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetDimensionValuesInput) GoString

func (s GetDimensionValuesInput) GoString() string

GoString returns the string representation

func (*GetDimensionValuesInput) SetContext

SetContext sets the Context field's value.

func (*GetDimensionValuesInput) SetDimension

SetDimension sets the Dimension field's value.

func (*GetDimensionValuesInput) SetNextPageToken

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

SetNextPageToken sets the NextPageToken field's value.

func (*GetDimensionValuesInput) SetSearchString

SetSearchString sets the SearchString field's value.

func (*GetDimensionValuesInput) SetTimePeriod

SetTimePeriod sets the TimePeriod field's value.

func (GetDimensionValuesInput) String

func (s GetDimensionValuesInput) String() string

String returns the string representation

func (*GetDimensionValuesInput) Validate

func (s *GetDimensionValuesInput) Validate() error

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

type GetDimensionValuesOutput

type GetDimensionValuesOutput struct {

	// The filters that you used to filter your request. Some dimensions are available
	// only for a specific context.
	//
	// If you set the context to COST_AND_USAGE, you can use the following dimensions
	// for searching:
	//
	//    * AZ - The Availability Zone. An example is us-east-1a.
	//
	//    * DATABASE_ENGINE - The Amazon Relational Database Service database. Examples
	//    are Aurora or MySQL.
	//
	//    * INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.
	//
	//    * LEGAL_ENTITY_NAME - The name of the organization that sells you AWS
	//    services, such as Amazon Web Services.
	//
	//    * LINKED_ACCOUNT - The description in the attribute map that includes
	//    the full name of the member account. The value field contains the AWS
	//    ID of the member account.
	//
	//    * OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.
	//
	//    * OPERATION - The action performed. Examples include RunInstance and CreateBucket.
	//
	//    * PLATFORM - The Amazon EC2 operating system. Examples are Windows or
	//    Linux.
	//
	//    * PURCHASE_TYPE - The reservation type of the purchase to which this usage
	//    is related. Examples include On-Demand Instances and Standard Reserved
	//    Instances.
	//
	//    * SERVICE - The AWS service such as Amazon DynamoDB.
	//
	//    * USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes.
	//    The response for the GetDimensionValues operation includes a unit attribute.
	//    Examples include GB and Hrs.
	//
	//    * USAGE_TYPE_GROUP - The grouping of common usage types. An example is
	//    Amazon EC2: CloudWatch – Alarms. The response for this operation includes
	//    a unit attribute.
	//
	//    * RECORD_TYPE - The different types of charges such as RI fees, usage
	//    costs, tax refunds, and credits.
	//
	//    * RESOURCE_ID - The unique identifier of the resource. ResourceId is an
	//    opt-in feature only available for last 14 days for EC2-Compute Service.
	//
	// If you set the context to RESERVATIONS, you can use the following dimensions
	// for searching:
	//
	//    * AZ - The Availability Zone. An example is us-east-1a.
	//
	//    * CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are
	//    Windows or Linux.
	//
	//    * DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service
	//    deployments. Valid values are SingleAZ and MultiAZ.
	//
	//    * INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge.
	//
	//    * LINKED_ACCOUNT - The description in the attribute map that includes
	//    the full name of the member account. The value field contains the AWS
	//    ID of the member account.
	//
	//    * PLATFORM - The Amazon EC2 operating system. Examples are Windows or
	//    Linux.
	//
	//    * REGION - The AWS Region.
	//
	//    * SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values
	//    are regional or a single Availability Zone.
	//
	//    * TAG (Coverage only) - The tags that are associated with a Reserved Instance
	//    (RI).
	//
	//    * TENANCY - The tenancy of a resource. Examples are shared or dedicated.
	//
	// If you set the context to SAVINGS_PLANS, you can use the following dimensions
	// for searching:
	//
	//    * SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)
	//
	//    * PAYMENT_OPTION - Payment option for the given Savings Plans (for example,
	//    All Upfront)
	//
	//    * REGION - The AWS Region.
	//
	//    * INSTANCE_TYPE_FAMILY - The family of instances (For example, m5)
	//
	//    * LINKED_ACCOUNT - The description in the attribute map that includes
	//    the full name of the member account. The value field contains the AWS
	//    ID of the member account.
	//
	//    * SAVINGS_PLAN_ARN - The unique identifier for your Savings Plan
	//
	// DimensionValues is a required field
	DimensionValues []*DimensionValuesWithAttributes `type:"list" required:"true"`

	// The token for the next set of retrievable results. AWS provides the token
	// when the response from a previous call has more results than the maximum
	// page size.
	NextPageToken *string `type:"string"`

	// The number of results that AWS returned at one time.
	//
	// ReturnSize is a required field
	ReturnSize *int64 `type:"integer" required:"true"`

	// The total number of search results.
	//
	// TotalSize is a required field
	TotalSize *int64 `type:"integer" required:"true"`
	// contains filtered or unexported fields
}

func (GetDimensionValuesOutput) GoString

func (s GetDimensionValuesOutput) GoString() string

GoString returns the string representation

func (*GetDimensionValuesOutput) SetDimensionValues

SetDimensionValues sets the DimensionValues field's value.

func (*GetDimensionValuesOutput) SetNextPageToken

SetNextPageToken sets the NextPageToken field's value.

func (*GetDimensionValuesOutput) SetReturnSize

SetReturnSize sets the ReturnSize field's value.

func (*GetDimensionValuesOutput) SetTotalSize

SetTotalSize sets the TotalSize field's value.

func (GetDimensionValuesOutput) String

func (s GetDimensionValuesOutput) String() string

String returns the string representation

type GetReservationCoverageInput added in v1.13.3

type GetReservationCoverageInput struct {

	// Filters utilization data by dimensions. You can filter by the following dimensions:
	//
	//    * AZ
	//
	//    * CACHE_ENGINE
	//
	//    * DATABASE_ENGINE
	//
	//    * DEPLOYMENT_OPTION
	//
	//    * INSTANCE_TYPE
	//
	//    * LINKED_ACCOUNT
	//
	//    * OPERATING_SYSTEM
	//
	//    * PLATFORM
	//
	//    * REGION
	//
	//    * SERVICE
	//
	//    * TAG
	//
	//    * TENANCY
	//
	// GetReservationCoverage uses the same Expression (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html)
	// object as the other operations, but only AND is supported among each dimension.
	// You can nest only one level deep. If there are multiple values for a dimension,
	// they are OR'd together.
	//
	// If you don't provide a SERVICE filter, Cost Explorer defaults to EC2.
	//
	// Cost category is also supported.
	Filter *Expression `type:"structure"`

	// The granularity of the AWS cost data for the reservation. Valid values are
	// MONTHLY and DAILY.
	//
	// If GroupBy is set, Granularity can't be set. If Granularity isn't set, the
	// response object doesn't include Granularity, either MONTHLY or DAILY.
	//
	// The GetReservationCoverage operation supports only DAILY and MONTHLY granularities.
	Granularity *string `type:"string" enum:"Granularity"`

	// You can group the data by the following attributes:
	//
	//    * AZ
	//
	//    * CACHE_ENGINE
	//
	//    * DATABASE_ENGINE
	//
	//    * DEPLOYMENT_OPTION
	//
	//    * INSTANCE_TYPE
	//
	//    * LINKED_ACCOUNT
	//
	//    * OPERATING_SYSTEM
	//
	//    * PLATFORM
	//
	//    * REGION
	//
	//    * TENANCY
	GroupBy []*GroupDefinition `type:"list"`

	// The measurement that you want your reservation coverage reported in.
	//
	// Valid values are Hour, Unit, and Cost. You can use multiple values in a request.
	Metrics []*string `type:"list"`

	// The token to retrieve the next set of results. AWS provides the token when
	// the response from a previous call has more results than the maximum page
	// size.
	NextPageToken *string `type:"string"`

	// The start and end dates of the period that you want to retrieve data about
	// reservation coverage for. You can retrieve data for a maximum of 13 months:
	// the last 12 months and the current month. The start date is inclusive, but
	// the end date is exclusive. For example, if start is 2017-01-01 and end is
	// 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up
	// to and including 2017-04-30 but not including 2017-05-01.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

You can use the following request parameters to query for how much of your instance usage a reservation covered.

func (GetReservationCoverageInput) GoString added in v1.13.3

func (s GetReservationCoverageInput) GoString() string

GoString returns the string representation

func (*GetReservationCoverageInput) SetFilter added in v1.13.3

SetFilter sets the Filter field's value.

func (*GetReservationCoverageInput) SetGranularity added in v1.13.3

SetGranularity sets the Granularity field's value.

func (*GetReservationCoverageInput) SetGroupBy added in v1.13.3

SetGroupBy sets the GroupBy field's value.

func (*GetReservationCoverageInput) SetMetrics added in v1.16.0

SetMetrics sets the Metrics field's value.

func (*GetReservationCoverageInput) SetNextPageToken added in v1.13.3

SetNextPageToken sets the NextPageToken field's value.

func (*GetReservationCoverageInput) SetTimePeriod added in v1.13.3

SetTimePeriod sets the TimePeriod field's value.

func (GetReservationCoverageInput) String added in v1.13.3

String returns the string representation

func (*GetReservationCoverageInput) Validate added in v1.13.3

func (s *GetReservationCoverageInput) Validate() error

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

type GetReservationCoverageOutput added in v1.13.3

type GetReservationCoverageOutput struct {

	// The amount of time that your reservations covered.
	//
	// CoveragesByTime is a required field
	CoveragesByTime []*CoverageByTime `type:"list" required:"true"`

	// The token for the next set of retrievable results. AWS provides the token
	// when the response from a previous call has more results than the maximum
	// page size.
	NextPageToken *string `type:"string"`

	// The total amount of instance usage that a reservation covered.
	Total *Coverage `type:"structure"`
	// contains filtered or unexported fields
}

func (GetReservationCoverageOutput) GoString added in v1.13.3

func (s GetReservationCoverageOutput) GoString() string

GoString returns the string representation

func (*GetReservationCoverageOutput) SetCoveragesByTime added in v1.13.3

SetCoveragesByTime sets the CoveragesByTime field's value.

func (*GetReservationCoverageOutput) SetNextPageToken added in v1.13.3

SetNextPageToken sets the NextPageToken field's value.

func (*GetReservationCoverageOutput) SetTotal added in v1.13.3

SetTotal sets the Total field's value.

func (GetReservationCoverageOutput) String added in v1.13.3

String returns the string representation

type GetReservationPurchaseRecommendationInput added in v1.13.17

type GetReservationPurchaseRecommendationInput struct {

	// The account ID that is associated with the recommendation.
	AccountId *string `type:"string"`

	// The account scope that you want your recommendations for. Amazon Web Services
	// calculates recommendations including the payer account and linked accounts
	// if the value is set to PAYER. If the value is LINKED, recommendations are
	// calculated for individual linked accounts only.
	AccountScope *string `type:"string" enum:"AccountScope"`

	// The number of previous days that you want AWS to consider when it calculates
	// your recommendations.
	LookbackPeriodInDays *string `type:"string" enum:"LookbackPeriodInDays"`

	// The pagination token that indicates the next set of results that you want
	// to retrieve.
	NextPageToken *string `type:"string"`

	// The number of recommendations that you want returned in a single response
	// object.
	PageSize *int64 `type:"integer"`

	// The reservation purchase option that you want recommendations for.
	PaymentOption *string `type:"string" enum:"PaymentOption"`

	// The specific service that you want recommendations for.
	//
	// Service is a required field
	Service *string `type:"string" required:"true"`

	// The hardware specifications for the service instances that you want recommendations
	// for, such as standard or convertible Amazon EC2 instances.
	ServiceSpecification *ServiceSpecification `type:"structure"`

	// The reservation term that you want recommendations for.
	TermInYears *string `type:"string" enum:"TermInYears"`
	// contains filtered or unexported fields
}

func (GetReservationPurchaseRecommendationInput) GoString added in v1.13.17

GoString returns the string representation

func (*GetReservationPurchaseRecommendationInput) SetAccountId added in v1.13.17

SetAccountId sets the AccountId field's value.

func (*GetReservationPurchaseRecommendationInput) SetAccountScope added in v1.13.17

SetAccountScope sets the AccountScope field's value.

func (*GetReservationPurchaseRecommendationInput) SetLookbackPeriodInDays added in v1.13.17

SetLookbackPeriodInDays sets the LookbackPeriodInDays field's value.

func (*GetReservationPurchaseRecommendationInput) SetNextPageToken added in v1.13.17

SetNextPageToken sets the NextPageToken field's value.

func (*GetReservationPurchaseRecommendationInput) SetPageSize added in v1.13.17

SetPageSize sets the PageSize field's value.

func (*GetReservationPurchaseRecommendationInput) SetPaymentOption added in v1.13.17

SetPaymentOption sets the PaymentOption field's value.

func (*GetReservationPurchaseRecommendationInput) SetService added in v1.13.17

SetService sets the Service field's value.

func (*GetReservationPurchaseRecommendationInput) SetServiceSpecification added in v1.13.17

SetServiceSpecification sets the ServiceSpecification field's value.

func (*GetReservationPurchaseRecommendationInput) SetTermInYears added in v1.13.17

SetTermInYears sets the TermInYears field's value.

func (GetReservationPurchaseRecommendationInput) String added in v1.13.17

String returns the string representation

func (*GetReservationPurchaseRecommendationInput) Validate added in v1.13.17

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

type GetReservationPurchaseRecommendationOutput added in v1.13.17

type GetReservationPurchaseRecommendationOutput struct {

	// Information about this specific recommendation call, such as the time stamp
	// for when Cost Explorer generated this recommendation.
	Metadata *ReservationPurchaseRecommendationMetadata `type:"structure"`

	// The pagination token for the next set of retrievable results.
	NextPageToken *string `type:"string"`

	// Recommendations for reservations to purchase.
	Recommendations []*ReservationPurchaseRecommendation `type:"list"`
	// contains filtered or unexported fields
}

func (GetReservationPurchaseRecommendationOutput) GoString added in v1.13.17

GoString returns the string representation

func (*GetReservationPurchaseRecommendationOutput) SetMetadata added in v1.13.17

SetMetadata sets the Metadata field's value.

func (*GetReservationPurchaseRecommendationOutput) SetNextPageToken added in v1.13.17

SetNextPageToken sets the NextPageToken field's value.

func (*GetReservationPurchaseRecommendationOutput) SetRecommendations added in v1.13.17

SetRecommendations sets the Recommendations field's value.

func (GetReservationPurchaseRecommendationOutput) String added in v1.13.17

String returns the string representation

type GetReservationUtilizationInput

type GetReservationUtilizationInput struct {

	// Filters utilization data by dimensions. You can filter by the following dimensions:
	//
	//    * AZ
	//
	//    * CACHE_ENGINE
	//
	//    * DEPLOYMENT_OPTION
	//
	//    * INSTANCE_TYPE
	//
	//    * LINKED_ACCOUNT
	//
	//    * OPERATING_SYSTEM
	//
	//    * PLATFORM
	//
	//    * REGION
	//
	//    * SERVICE
	//
	//    * SCOPE
	//
	//    * TENANCY
	//
	// GetReservationUtilization uses the same Expression (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html)
	// object as the other operations, but only AND is supported among each dimension,
	// and nesting is supported up to only one level deep. If there are multiple
	// values for a dimension, they are OR'd together.
	Filter *Expression `type:"structure"`

	// If GroupBy is set, Granularity can't be set. If Granularity isn't set, the
	// response object doesn't include Granularity, either MONTHLY or DAILY. If
	// both GroupBy and Granularity aren't set, GetReservationUtilization defaults
	// to DAILY.
	//
	// The GetReservationUtilization operation supports only DAILY and MONTHLY granularities.
	Granularity *string `type:"string" enum:"Granularity"`

	// Groups only by SUBSCRIPTION_ID. Metadata is included.
	GroupBy []*GroupDefinition `type:"list"`

	// The token to retrieve the next set of results. AWS provides the token when
	// the response from a previous call has more results than the maximum page
	// size.
	NextPageToken *string `type:"string"`

	// Sets the start and end dates for retrieving RI utilization. The start date
	// is inclusive, but the end date is exclusive. For example, if start is 2017-01-01
	// and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01
	// up to and including 2017-04-30 but not including 2017-05-01.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetReservationUtilizationInput) GoString

GoString returns the string representation

func (*GetReservationUtilizationInput) SetFilter

SetFilter sets the Filter field's value.

func (*GetReservationUtilizationInput) SetGranularity

SetGranularity sets the Granularity field's value.

func (*GetReservationUtilizationInput) SetGroupBy

SetGroupBy sets the GroupBy field's value.

func (*GetReservationUtilizationInput) SetNextPageToken

SetNextPageToken sets the NextPageToken field's value.

func (*GetReservationUtilizationInput) SetTimePeriod

SetTimePeriod sets the TimePeriod field's value.

func (GetReservationUtilizationInput) String

String returns the string representation

func (*GetReservationUtilizationInput) Validate

func (s *GetReservationUtilizationInput) Validate() error

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

type GetReservationUtilizationOutput

type GetReservationUtilizationOutput struct {

	// The token for the next set of retrievable results. AWS provides the token
	// when the response from a previous call has more results than the maximum
	// page size.
	NextPageToken *string `type:"string"`

	// The total amount of time that you used your RIs.
	Total *ReservationAggregates `type:"structure"`

	// The amount of time that you used your RIs.
	//
	// UtilizationsByTime is a required field
	UtilizationsByTime []*UtilizationByTime `type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (GetReservationUtilizationOutput) GoString

GoString returns the string representation

func (*GetReservationUtilizationOutput) SetNextPageToken

SetNextPageToken sets the NextPageToken field's value.

func (*GetReservationUtilizationOutput) SetTotal

SetTotal sets the Total field's value.

func (*GetReservationUtilizationOutput) SetUtilizationsByTime

SetUtilizationsByTime sets the UtilizationsByTime field's value.

func (GetReservationUtilizationOutput) String

String returns the string representation

type GetRightsizingRecommendationInput added in v1.21.6

type GetRightsizingRecommendationInput struct {

	// Enables you to customize recommendations across two attributes. You can choose
	// to view recommendations for instances within the same instance families or
	// across different instance families. You can also choose to view your estimated
	// savings associated with recommendations with consideration of existing Savings
	// Plans or RI benefits, or niether.
	Configuration *RightsizingRecommendationConfiguration `type:"structure"`

	// Use Expression to filter by cost or by usage. There are two patterns:
	//
	//    * Simple dimension values - You can set the dimension name and values
	//    for the filters that you plan to use. For example, you can filter for
	//    REGION==us-east-1 OR REGION==us-west-1. The Expression for that looks
	//    like this: { "Dimensions": { "Key": "REGION", "Values": [ "us-east-1",
	//    “us-west-1” ] } } The list of dimension values are OR'd together to
	//    retrieve cost or usage data. You can create Expression and DimensionValues
	//    objects using either with* methods or set* methods in multiple lines.
	//
	//    * Compound dimension values with logical operations - You can use multiple
	//    Expression types and the logical operators AND/OR/NOT to create a list
	//    of one or more Expression objects. This allows you to filter on more advanced
	//    options. For example, you can filter on ((REGION == us-east-1 OR REGION
	//    == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer).
	//    The Expression for that looks like this: { "And": [ {"Or": [ {"Dimensions":
	//    { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags":
	//    { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions":
	//    { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } Because each
	//    Expression can have only one operator, the service returns an error if
	//    more than one is specified. The following example shows an Expression
	//    object that creates an error. { "And": [ ... ], "DimensionValues": { "Dimension":
	//    "USAGE_TYPE", "Values": [ "DataTransfer" ] } }
	//
	// For GetRightsizingRecommendation action, a combination of OR and NOT is not
	// supported. OR is not supported between different dimensions, or dimensions
	// and tags. NOT operators aren't supported. Dimensions are also limited to
	// LINKED_ACCOUNT, REGION, or RIGHTSIZING_TYPE.
	Filter *Expression `type:"structure"`

	// The pagination token that indicates the next set of results that you want
	// to retrieve.
	NextPageToken *string `type:"string"`

	// The number of recommendations that you want returned in a single response
	// object.
	PageSize *int64 `type:"integer"`

	// The specific service that you want recommendations for. The only valid value
	// for GetRightsizingRecommendation is "AmazonEC2".
	//
	// Service is a required field
	Service *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (GetRightsizingRecommendationInput) GoString added in v1.21.6

GoString returns the string representation

func (*GetRightsizingRecommendationInput) SetConfiguration added in v1.30.11

SetConfiguration sets the Configuration field's value.

func (*GetRightsizingRecommendationInput) SetFilter added in v1.21.6

SetFilter sets the Filter field's value.

func (*GetRightsizingRecommendationInput) SetNextPageToken added in v1.21.6

SetNextPageToken sets the NextPageToken field's value.

func (*GetRightsizingRecommendationInput) SetPageSize added in v1.21.6

SetPageSize sets the PageSize field's value.

func (*GetRightsizingRecommendationInput) SetService added in v1.21.6

SetService sets the Service field's value.

func (GetRightsizingRecommendationInput) String added in v1.21.6

String returns the string representation

func (*GetRightsizingRecommendationInput) Validate added in v1.21.6

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

type GetRightsizingRecommendationOutput added in v1.21.6

type GetRightsizingRecommendationOutput struct {

	// Enables you to customize recommendations across two attributes. You can choose
	// to view recommendations for instances within the same instance families or
	// across different instance families. You can also choose to view your estimated
	// savings associated with recommendations with consideration of existing Savings
	// Plans or RI benefits, or niether.
	Configuration *RightsizingRecommendationConfiguration `type:"structure"`

	// Information regarding this specific recommendation set.
	Metadata *RightsizingRecommendationMetadata `type:"structure"`

	// The token to retrieve the next set of results.
	NextPageToken *string `type:"string"`

	// Recommendations to rightsize resources.
	RightsizingRecommendations []*RightsizingRecommendation `type:"list"`

	// Summary of this recommendation set.
	Summary *RightsizingRecommendationSummary `type:"structure"`
	// contains filtered or unexported fields
}

func (GetRightsizingRecommendationOutput) GoString added in v1.21.6

GoString returns the string representation

func (*GetRightsizingRecommendationOutput) SetConfiguration added in v1.30.11

SetConfiguration sets the Configuration field's value.

func (*GetRightsizingRecommendationOutput) SetMetadata added in v1.21.6

SetMetadata sets the Metadata field's value.

func (*GetRightsizingRecommendationOutput) SetNextPageToken added in v1.21.6

SetNextPageToken sets the NextPageToken field's value.

func (*GetRightsizingRecommendationOutput) SetRightsizingRecommendations added in v1.21.6

SetRightsizingRecommendations sets the RightsizingRecommendations field's value.

func (*GetRightsizingRecommendationOutput) SetSummary added in v1.21.6

SetSummary sets the Summary field's value.

func (GetRightsizingRecommendationOutput) String added in v1.21.6

String returns the string representation

type GetSavingsPlansCoverageInput added in v1.25.28

type GetSavingsPlansCoverageInput struct {

	// Filters Savings Plans coverage data by dimensions. You can filter data for
	// Savings Plans usage with the following dimensions:
	//
	//    * LINKED_ACCOUNT
	//
	//    * REGION
	//
	//    * SERVICE
	//
	//    * INSTANCE_FAMILY
	//
	// GetSavingsPlansCoverage uses the same Expression (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html)
	// object as the other operations, but only AND is supported among each dimension.
	// If there are multiple values for a dimension, they are OR'd together.
	//
	// Cost category is also supported.
	Filter *Expression `type:"structure"`

	// The granularity of the Amazon Web Services cost data for your Savings Plans.
	// Granularity can't be set if GroupBy is set.
	//
	// The GetSavingsPlansCoverage operation supports only DAILY and MONTHLY granularities.
	Granularity *string `type:"string" enum:"Granularity"`

	// You can group the data using the attributes INSTANCE_FAMILY, REGION, or SERVICE.
	GroupBy []*GroupDefinition `type:"list"`

	// The number of items to be returned in a response. The default is 20, with
	// a minimum value of 1.
	MaxResults *int64 `min:"1" type:"integer"`

	// The measurement that you want your Savings Plans coverage reported in. The
	// only valid value is SpendCoveredBySavingsPlans.
	Metrics []*string `type:"list"`

	// The token to retrieve the next set of results. Amazon Web Services provides
	// the token when the response from a previous call has more results than the
	// maximum page size.
	NextToken *string `type:"string"`

	// The time period that you want the usage and costs for. The Start date must
	// be within 13 months. The End date must be after the Start date, and before
	// the current date. Future dates can't be used as an End date.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetSavingsPlansCoverageInput) GoString added in v1.25.28

func (s GetSavingsPlansCoverageInput) GoString() string

GoString returns the string representation

func (*GetSavingsPlansCoverageInput) SetFilter added in v1.25.28

SetFilter sets the Filter field's value.

func (*GetSavingsPlansCoverageInput) SetGranularity added in v1.25.28

SetGranularity sets the Granularity field's value.

func (*GetSavingsPlansCoverageInput) SetGroupBy added in v1.25.28

SetGroupBy sets the GroupBy field's value.

func (*GetSavingsPlansCoverageInput) SetMaxResults added in v1.25.28

SetMaxResults sets the MaxResults field's value.

func (*GetSavingsPlansCoverageInput) SetMetrics added in v1.25.28

SetMetrics sets the Metrics field's value.

func (*GetSavingsPlansCoverageInput) SetNextToken added in v1.25.28

SetNextToken sets the NextToken field's value.

func (*GetSavingsPlansCoverageInput) SetTimePeriod added in v1.25.28

SetTimePeriod sets the TimePeriod field's value.

func (GetSavingsPlansCoverageInput) String added in v1.25.28

String returns the string representation

func (*GetSavingsPlansCoverageInput) Validate added in v1.25.28

func (s *GetSavingsPlansCoverageInput) Validate() error

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

type GetSavingsPlansCoverageOutput added in v1.25.28

type GetSavingsPlansCoverageOutput struct {

	// The token to retrieve the next set of results. Amazon Web Services provides
	// the token when the response from a previous call has more results than the
	// maximum page size.
	NextToken *string `type:"string"`

	// The amount of spend that your Savings Plans covered.
	//
	// SavingsPlansCoverages is a required field
	SavingsPlansCoverages []*SavingsPlansCoverage `type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (GetSavingsPlansCoverageOutput) GoString added in v1.25.28

GoString returns the string representation

func (*GetSavingsPlansCoverageOutput) SetNextToken added in v1.25.28

SetNextToken sets the NextToken field's value.

func (*GetSavingsPlansCoverageOutput) SetSavingsPlansCoverages added in v1.25.28

SetSavingsPlansCoverages sets the SavingsPlansCoverages field's value.

func (GetSavingsPlansCoverageOutput) String added in v1.25.28

String returns the string representation

type GetSavingsPlansPurchaseRecommendationInput added in v1.25.28

type GetSavingsPlansPurchaseRecommendationInput struct {

	// The account scope that you want your recommendations for. Amazon Web Services
	// calculates recommendations including the payer account and linked accounts
	// if the value is set to PAYER. If the value is LINKED, recommendations are
	// calculated for individual linked accounts only.
	AccountScope *string `type:"string" enum:"AccountScope"`

	// You can filter your recommendations by Account ID with the LINKED_ACCOUNT
	// dimension. To filter your recommendations by Account ID, specify Key as LINKED_ACCOUNT
	// and Value as the comma-separated Acount ID(s) for which you want to see Savings
	// Plans purchase recommendations.
	//
	// For GetSavingsPlansPurchaseRecommendation, the Filter does not include CostCategories
	// or Tags. It only includes Dimensions. With Dimensions, Key must be LINKED_ACCOUNT
	// and Value can be a single Account ID or multiple comma-separated Account
	// IDs for which you want to see Savings Plans Purchase Recommendations. AND
	// and OR operators are not supported.
	Filter *Expression `type:"structure"`

	// The lookback period used to generate the recommendation.
	//
	// LookbackPeriodInDays is a required field
	LookbackPeriodInDays *string `type:"string" required:"true" enum:"LookbackPeriodInDays"`

	// The token to retrieve the next set of results. Amazon Web Services provides
	// the token when the response from a previous call has more results than the
	// maximum page size.
	NextPageToken *string `type:"string"`

	// The number of recommendations that you want returned in a single response
	// object.
	PageSize *int64 `type:"integer"`

	// The payment option used to generate these recommendations.
	//
	// PaymentOption is a required field
	PaymentOption *string `type:"string" required:"true" enum:"PaymentOption"`

	// The Savings Plans recommendation type requested.
	//
	// SavingsPlansType is a required field
	SavingsPlansType *string `type:"string" required:"true" enum:"SupportedSavingsPlansType"`

	// The savings plan recommendation term used to generated these recommendations.
	//
	// TermInYears is a required field
	TermInYears *string `type:"string" required:"true" enum:"TermInYears"`
	// contains filtered or unexported fields
}

func (GetSavingsPlansPurchaseRecommendationInput) GoString added in v1.25.28

GoString returns the string representation

func (*GetSavingsPlansPurchaseRecommendationInput) SetAccountScope added in v1.29.32

SetAccountScope sets the AccountScope field's value.

func (*GetSavingsPlansPurchaseRecommendationInput) SetFilter added in v1.29.32

SetFilter sets the Filter field's value.

func (*GetSavingsPlansPurchaseRecommendationInput) SetLookbackPeriodInDays added in v1.25.28

SetLookbackPeriodInDays sets the LookbackPeriodInDays field's value.

func (*GetSavingsPlansPurchaseRecommendationInput) SetNextPageToken added in v1.25.28

SetNextPageToken sets the NextPageToken field's value.

func (*GetSavingsPlansPurchaseRecommendationInput) SetPageSize added in v1.25.28

SetPageSize sets the PageSize field's value.

func (*GetSavingsPlansPurchaseRecommendationInput) SetPaymentOption added in v1.25.28

SetPaymentOption sets the PaymentOption field's value.

func (*GetSavingsPlansPurchaseRecommendationInput) SetSavingsPlansType added in v1.25.28

SetSavingsPlansType sets the SavingsPlansType field's value.

func (*GetSavingsPlansPurchaseRecommendationInput) SetTermInYears added in v1.25.28

SetTermInYears sets the TermInYears field's value.

func (GetSavingsPlansPurchaseRecommendationInput) String added in v1.25.28

String returns the string representation

func (*GetSavingsPlansPurchaseRecommendationInput) Validate added in v1.25.28

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

type GetSavingsPlansPurchaseRecommendationOutput added in v1.25.28

type GetSavingsPlansPurchaseRecommendationOutput struct {

	// Information regarding this specific recommendation set.
	Metadata *SavingsPlansPurchaseRecommendationMetadata `type:"structure"`

	// The token for the next set of retrievable results. AWS provides the token
	// when the response from a previous call has more results than the maximum
	// page size.
	NextPageToken *string `type:"string"`

	// Contains your request parameters, Savings Plan Recommendations Summary, and
	// Details.
	SavingsPlansPurchaseRecommendation *SavingsPlansPurchaseRecommendation `type:"structure"`
	// contains filtered or unexported fields
}

func (GetSavingsPlansPurchaseRecommendationOutput) GoString added in v1.25.28

GoString returns the string representation

func (*GetSavingsPlansPurchaseRecommendationOutput) SetMetadata added in v1.25.28

SetMetadata sets the Metadata field's value.

func (*GetSavingsPlansPurchaseRecommendationOutput) SetNextPageToken added in v1.25.28

SetNextPageToken sets the NextPageToken field's value.

func (*GetSavingsPlansPurchaseRecommendationOutput) SetSavingsPlansPurchaseRecommendation added in v1.25.28

SetSavingsPlansPurchaseRecommendation sets the SavingsPlansPurchaseRecommendation field's value.

func (GetSavingsPlansPurchaseRecommendationOutput) String added in v1.25.28

String returns the string representation

type GetSavingsPlansUtilizationDetailsInput added in v1.25.28

type GetSavingsPlansUtilizationDetailsInput struct {

	// Filters Savings Plans utilization coverage data for active Savings Plans
	// dimensions. You can filter data with the following dimensions:
	//
	//    * LINKED_ACCOUNT
	//
	//    * SAVINGS_PLAN_ARN
	//
	//    * REGION
	//
	//    * PAYMENT_OPTION
	//
	//    * INSTANCE_TYPE_FAMILY
	//
	// GetSavingsPlansUtilizationDetails uses the same Expression (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html)
	// object as the other operations, but only AND is supported among each dimension.
	Filter *Expression `type:"structure"`

	// The number of items to be returned in a response. The default is 20, with
	// a minimum value of 1.
	MaxResults *int64 `min:"1" type:"integer"`

	// The token to retrieve the next set of results. Amazon Web Services provides
	// the token when the response from a previous call has more results than the
	// maximum page size.
	NextToken *string `type:"string"`

	// The time period that you want the usage and costs for. The Start date must
	// be within 13 months. The End date must be after the Start date, and before
	// the current date. Future dates can't be used as an End date.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetSavingsPlansUtilizationDetailsInput) GoString added in v1.25.28

GoString returns the string representation

func (*GetSavingsPlansUtilizationDetailsInput) SetFilter added in v1.25.28

SetFilter sets the Filter field's value.

func (*GetSavingsPlansUtilizationDetailsInput) SetMaxResults added in v1.25.28

SetMaxResults sets the MaxResults field's value.

func (*GetSavingsPlansUtilizationDetailsInput) SetNextToken added in v1.25.28

SetNextToken sets the NextToken field's value.

func (*GetSavingsPlansUtilizationDetailsInput) SetTimePeriod added in v1.25.28

SetTimePeriod sets the TimePeriod field's value.

func (GetSavingsPlansUtilizationDetailsInput) String added in v1.25.28

String returns the string representation

func (*GetSavingsPlansUtilizationDetailsInput) Validate added in v1.25.28

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

type GetSavingsPlansUtilizationDetailsOutput added in v1.25.28

type GetSavingsPlansUtilizationDetailsOutput struct {

	// The token to retrieve the next set of results. Amazon Web Services provides
	// the token when the response from a previous call has more results than the
	// maximum page size.
	NextToken *string `type:"string"`

	// Retrieves a single daily or monthly Savings Plans utilization rate and details
	// for your account.
	//
	// SavingsPlansUtilizationDetails is a required field
	SavingsPlansUtilizationDetails []*SavingsPlansUtilizationDetail `type:"list" required:"true"`

	// The time period that you want the usage and costs for.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`

	// The total Savings Plans utilization, regardless of time period.
	Total *SavingsPlansUtilizationAggregates `type:"structure"`
	// contains filtered or unexported fields
}

func (GetSavingsPlansUtilizationDetailsOutput) GoString added in v1.25.28

GoString returns the string representation

func (*GetSavingsPlansUtilizationDetailsOutput) SetNextToken added in v1.25.28

SetNextToken sets the NextToken field's value.

func (*GetSavingsPlansUtilizationDetailsOutput) SetSavingsPlansUtilizationDetails added in v1.25.28

SetSavingsPlansUtilizationDetails sets the SavingsPlansUtilizationDetails field's value.

func (*GetSavingsPlansUtilizationDetailsOutput) SetTimePeriod added in v1.25.28

SetTimePeriod sets the TimePeriod field's value.

func (*GetSavingsPlansUtilizationDetailsOutput) SetTotal added in v1.25.28

SetTotal sets the Total field's value.

func (GetSavingsPlansUtilizationDetailsOutput) String added in v1.25.28

String returns the string representation

type GetSavingsPlansUtilizationInput added in v1.25.28

type GetSavingsPlansUtilizationInput struct {

	// Filters Savings Plans utilization coverage data for active Savings Plans
	// dimensions. You can filter data with the following dimensions:
	//
	//    * LINKED_ACCOUNT
	//
	//    * SAVINGS_PLAN_ARN
	//
	//    * SAVINGS_PLANS_TYPE
	//
	//    * REGION
	//
	//    * PAYMENT_OPTION
	//
	//    * INSTANCE_TYPE_FAMILY
	//
	// GetSavingsPlansUtilization uses the same Expression (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html)
	// object as the other operations, but only AND is supported among each dimension.
	Filter *Expression `type:"structure"`

	// The granularity of the Amazon Web Services utillization data for your Savings
	// Plans.
	//
	// The GetSavingsPlansUtilization operation supports only DAILY and MONTHLY
	// granularities.
	Granularity *string `type:"string" enum:"Granularity"`

	// The time period that you want the usage and costs for. The Start date must
	// be within 13 months. The End date must be after the Start date, and before
	// the current date. Future dates can't be used as an End date.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetSavingsPlansUtilizationInput) GoString added in v1.25.28

GoString returns the string representation

func (*GetSavingsPlansUtilizationInput) SetFilter added in v1.25.28

SetFilter sets the Filter field's value.

func (*GetSavingsPlansUtilizationInput) SetGranularity added in v1.25.28

SetGranularity sets the Granularity field's value.

func (*GetSavingsPlansUtilizationInput) SetTimePeriod added in v1.25.28

SetTimePeriod sets the TimePeriod field's value.

func (GetSavingsPlansUtilizationInput) String added in v1.25.28

String returns the string representation

func (*GetSavingsPlansUtilizationInput) Validate added in v1.25.28

func (s *GetSavingsPlansUtilizationInput) Validate() error

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

type GetSavingsPlansUtilizationOutput added in v1.25.28

type GetSavingsPlansUtilizationOutput struct {

	// The amount of cost/commitment you used your Savings Plans. This allows you
	// to specify date ranges.
	SavingsPlansUtilizationsByTime []*SavingsPlansUtilizationByTime `type:"list"`

	// The total amount of cost/commitment that you used your Savings Plans, regardless
	// of date ranges.
	//
	// Total is a required field
	Total *SavingsPlansUtilizationAggregates `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetSavingsPlansUtilizationOutput) GoString added in v1.25.28

GoString returns the string representation

func (*GetSavingsPlansUtilizationOutput) SetSavingsPlansUtilizationsByTime added in v1.25.28

SetSavingsPlansUtilizationsByTime sets the SavingsPlansUtilizationsByTime field's value.

func (*GetSavingsPlansUtilizationOutput) SetTotal added in v1.25.28

SetTotal sets the Total field's value.

func (GetSavingsPlansUtilizationOutput) String added in v1.25.28

String returns the string representation

type GetTagsInput

type GetTagsInput struct {

	// The token to retrieve the next set of results. AWS provides the token when
	// the response from a previous call has more results than the maximum page
	// size.
	NextPageToken *string `type:"string"`

	// The value that you want to search for.
	SearchString *string `type:"string"`

	// The key of the tag that you want to return values for.
	TagKey *string `type:"string"`

	// The start and end dates for retrieving the dimension values. The start date
	// is inclusive, but the end date is exclusive. For example, if start is 2017-01-01
	// and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01
	// up to and including 2017-04-30 but not including 2017-05-01.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetTagsInput) GoString

func (s GetTagsInput) GoString() string

GoString returns the string representation

func (*GetTagsInput) SetNextPageToken

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

SetNextPageToken sets the NextPageToken field's value.

func (*GetTagsInput) SetSearchString

func (s *GetTagsInput) SetSearchString(v string) *GetTagsInput

SetSearchString sets the SearchString field's value.

func (*GetTagsInput) SetTagKey

func (s *GetTagsInput) SetTagKey(v string) *GetTagsInput

SetTagKey sets the TagKey field's value.

func (*GetTagsInput) SetTimePeriod

func (s *GetTagsInput) SetTimePeriod(v *DateInterval) *GetTagsInput

SetTimePeriod sets the TimePeriod field's value.

func (GetTagsInput) String

func (s GetTagsInput) String() string

String returns the string representation

func (*GetTagsInput) Validate

func (s *GetTagsInput) Validate() error

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

type GetTagsOutput

type GetTagsOutput struct {

	// The token for the next set of retrievable results. AWS provides the token
	// when the response from a previous call has more results than the maximum
	// page size.
	NextPageToken *string `type:"string"`

	// The number of query results that AWS returns at a time.
	//
	// ReturnSize is a required field
	ReturnSize *int64 `type:"integer" required:"true"`

	// The tags that match your request.
	//
	// Tags is a required field
	Tags []*string `type:"list" required:"true"`

	// The total number of query results.
	//
	// TotalSize is a required field
	TotalSize *int64 `type:"integer" required:"true"`
	// contains filtered or unexported fields
}

func (GetTagsOutput) GoString

func (s GetTagsOutput) GoString() string

GoString returns the string representation

func (*GetTagsOutput) SetNextPageToken

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

SetNextPageToken sets the NextPageToken field's value.

func (*GetTagsOutput) SetReturnSize

func (s *GetTagsOutput) SetReturnSize(v int64) *GetTagsOutput

SetReturnSize sets the ReturnSize field's value.

func (*GetTagsOutput) SetTags

func (s *GetTagsOutput) SetTags(v []*string) *GetTagsOutput

SetTags sets the Tags field's value.

func (*GetTagsOutput) SetTotalSize

func (s *GetTagsOutput) SetTotalSize(v int64) *GetTagsOutput

SetTotalSize sets the TotalSize field's value.

func (GetTagsOutput) String

func (s GetTagsOutput) String() string

String returns the string representation

type GetUsageForecastInput added in v1.20.16

type GetUsageForecastInput struct {

	// The filters that you want to use to filter your forecast. Cost Explorer API
	// supports all of the Cost Explorer filters.
	Filter *Expression `type:"structure"`

	// How granular you want the forecast to be. You can get 3 months of DAILY forecasts
	// or 12 months of MONTHLY forecasts.
	//
	// The GetUsageForecast operation supports only DAILY and MONTHLY granularities.
	//
	// Granularity is a required field
	Granularity *string `type:"string" required:"true" enum:"Granularity"`

	// Which metric Cost Explorer uses to create your forecast.
	//
	// Valid values for a GetUsageForecast call are the following:
	//
	//    * USAGE_QUANTITY
	//
	//    * NORMALIZED_USAGE_AMOUNT
	//
	// Metric is a required field
	Metric *string `type:"string" required:"true" enum:"Metric"`

	// Cost Explorer always returns the mean forecast as a single point. You can
	// request a prediction interval around the mean by specifying a confidence
	// level. The higher the confidence level, the more confident Cost Explorer
	// is about the actual value falling in the prediction interval. Higher confidence
	// levels result in wider prediction intervals.
	PredictionIntervalLevel *int64 `min:"51" type:"integer"`

	// The start and end dates of the period that you want to retrieve usage forecast
	// for. The start date is inclusive, but the end date is exclusive. For example,
	// if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data
	// is retrieved from 2017-01-01 up to and including 2017-04-30 but not including
	// 2017-05-01.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetUsageForecastInput) GoString added in v1.20.16

func (s GetUsageForecastInput) GoString() string

GoString returns the string representation

func (*GetUsageForecastInput) SetFilter added in v1.20.16

SetFilter sets the Filter field's value.

func (*GetUsageForecastInput) SetGranularity added in v1.20.16

func (s *GetUsageForecastInput) SetGranularity(v string) *GetUsageForecastInput

SetGranularity sets the Granularity field's value.

func (*GetUsageForecastInput) SetMetric added in v1.20.16

SetMetric sets the Metric field's value.

func (*GetUsageForecastInput) SetPredictionIntervalLevel added in v1.20.16

func (s *GetUsageForecastInput) SetPredictionIntervalLevel(v int64) *GetUsageForecastInput

SetPredictionIntervalLevel sets the PredictionIntervalLevel field's value.

func (*GetUsageForecastInput) SetTimePeriod added in v1.20.16

SetTimePeriod sets the TimePeriod field's value.

func (GetUsageForecastInput) String added in v1.20.16

func (s GetUsageForecastInput) String() string

String returns the string representation

func (*GetUsageForecastInput) Validate added in v1.20.16

func (s *GetUsageForecastInput) Validate() error

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

type GetUsageForecastOutput added in v1.20.16

type GetUsageForecastOutput struct {

	// The forecasts for your query, in order. For DAILY forecasts, this is a list
	// of days. For MONTHLY forecasts, this is a list of months.
	ForecastResultsByTime []*ForecastResult `type:"list"`

	// How much you're forecasted to use over the forecast period.
	Total *MetricValue `type:"structure"`
	// contains filtered or unexported fields
}

func (GetUsageForecastOutput) GoString added in v1.20.16

func (s GetUsageForecastOutput) GoString() string

GoString returns the string representation

func (*GetUsageForecastOutput) SetForecastResultsByTime added in v1.20.16

func (s *GetUsageForecastOutput) SetForecastResultsByTime(v []*ForecastResult) *GetUsageForecastOutput

SetForecastResultsByTime sets the ForecastResultsByTime field's value.

func (*GetUsageForecastOutput) SetTotal added in v1.20.16

SetTotal sets the Total field's value.

func (GetUsageForecastOutput) String added in v1.20.16

func (s GetUsageForecastOutput) String() string

String returns the string representation

type Group

type Group struct {

	// The keys that are included in this group.
	Keys []*string `type:"list"`

	// The metrics that are included in this group.
	Metrics map[string]*MetricValue `type:"map"`
	// contains filtered or unexported fields
}

One level of grouped data in the results.

func (Group) GoString

func (s Group) GoString() string

GoString returns the string representation

func (*Group) SetKeys

func (s *Group) SetKeys(v []*string) *Group

SetKeys sets the Keys field's value.

func (*Group) SetMetrics

func (s *Group) SetMetrics(v map[string]*MetricValue) *Group

SetMetrics sets the Metrics field's value.

func (Group) String

func (s Group) String() string

String returns the string representation

type GroupDefinition

type GroupDefinition struct {

	// The string that represents a key for a specified group.
	Key *string `type:"string"`

	// The string that represents the type of group.
	Type *string `type:"string" enum:"GroupDefinitionType"`
	// contains filtered or unexported fields
}

Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

func (GroupDefinition) GoString

func (s GroupDefinition) GoString() string

GoString returns the string representation

func (*GroupDefinition) SetKey

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

SetKey sets the Key field's value.

func (*GroupDefinition) SetType

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

SetType sets the Type field's value.

func (GroupDefinition) String

func (s GroupDefinition) String() string

String returns the string representation

type InstanceDetails added in v1.13.17

type InstanceDetails struct {

	// The Amazon EC2 instances that AWS recommends that you purchase.
	EC2InstanceDetails *EC2InstanceDetails `type:"structure"`

	// The Amazon ES instances that AWS recommends that you purchase.
	ESInstanceDetails *ESInstanceDetails `type:"structure"`

	// The ElastiCache instances that AWS recommends that you purchase.
	ElastiCacheInstanceDetails *ElastiCacheInstanceDetails `type:"structure"`

	// The Amazon RDS instances that AWS recommends that you purchase.
	RDSInstanceDetails *RDSInstanceDetails `type:"structure"`

	// The Amazon Redshift instances that AWS recommends that you purchase.
	RedshiftInstanceDetails *RedshiftInstanceDetails `type:"structure"`
	// contains filtered or unexported fields
}

Details about the instances that AWS recommends that you purchase.

func (InstanceDetails) GoString added in v1.13.17

func (s InstanceDetails) GoString() string

GoString returns the string representation

func (*InstanceDetails) SetEC2InstanceDetails added in v1.13.17

func (s *InstanceDetails) SetEC2InstanceDetails(v *EC2InstanceDetails) *InstanceDetails

SetEC2InstanceDetails sets the EC2InstanceDetails field's value.

func (*InstanceDetails) SetESInstanceDetails added in v1.14.25

func (s *InstanceDetails) SetESInstanceDetails(v *ESInstanceDetails) *InstanceDetails

SetESInstanceDetails sets the ESInstanceDetails field's value.

func (*InstanceDetails) SetElastiCacheInstanceDetails added in v1.14.25

func (s *InstanceDetails) SetElastiCacheInstanceDetails(v *ElastiCacheInstanceDetails) *InstanceDetails

SetElastiCacheInstanceDetails sets the ElastiCacheInstanceDetails field's value.

func (*InstanceDetails) SetRDSInstanceDetails added in v1.13.33

func (s *InstanceDetails) SetRDSInstanceDetails(v *RDSInstanceDetails) *InstanceDetails

SetRDSInstanceDetails sets the RDSInstanceDetails field's value.

func (*InstanceDetails) SetRedshiftInstanceDetails added in v1.14.25

func (s *InstanceDetails) SetRedshiftInstanceDetails(v *RedshiftInstanceDetails) *InstanceDetails

SetRedshiftInstanceDetails sets the RedshiftInstanceDetails field's value.

func (InstanceDetails) String added in v1.13.17

func (s InstanceDetails) String() string

String returns the string representation

type InvalidNextTokenException added in v1.28.0

type InvalidNextTokenException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"Message" type:"string"`
	// contains filtered or unexported fields
}

The pagination token is invalid. Try again without a pagination token.

func (*InvalidNextTokenException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidNextTokenException) Error added in v1.28.0

func (s *InvalidNextTokenException) Error() string

func (InvalidNextTokenException) GoString added in v1.28.0

func (s InvalidNextTokenException) GoString() string

GoString returns the string representation

func (*InvalidNextTokenException) Message added in v1.28.0

func (s *InvalidNextTokenException) Message() string

Message returns the exception's message.

func (*InvalidNextTokenException) OrigErr added in v1.28.0

func (s *InvalidNextTokenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidNextTokenException) RequestID added in v1.28.0

func (s *InvalidNextTokenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidNextTokenException) StatusCode added in v1.28.0

func (s *InvalidNextTokenException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidNextTokenException) String added in v1.28.0

func (s InvalidNextTokenException) String() string

String returns the string representation

type LimitExceededException added in v1.28.0

type LimitExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"Message" type:"string"`
	// contains filtered or unexported fields
}

You made too many calls in a short period of time. Try again later.

func (*LimitExceededException) Code added in v1.28.0

func (s *LimitExceededException) Code() string

Code returns the exception type name.

func (*LimitExceededException) Error added in v1.28.0

func (s *LimitExceededException) Error() string

func (LimitExceededException) GoString added in v1.28.0

func (s LimitExceededException) GoString() string

GoString returns the string representation

func (*LimitExceededException) Message added in v1.28.0

func (s *LimitExceededException) Message() string

Message returns the exception's message.

func (*LimitExceededException) OrigErr added in v1.28.0

func (s *LimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*LimitExceededException) RequestID added in v1.28.0

func (s *LimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*LimitExceededException) StatusCode added in v1.28.0

func (s *LimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (LimitExceededException) String added in v1.28.0

func (s LimitExceededException) String() string

String returns the string representation

type ListCostCategoryDefinitionsInput added in v1.25.42

type ListCostCategoryDefinitionsInput struct {

	// The date when the Cost Category was effective.
	EffectiveOn *string `min:"20" type:"string"`

	// The number of entries a paginated response contains.
	MaxResults *int64 `min:"1" type:"integer"`

	// The token to retrieve the next set of results. Amazon Web Services provides
	// the token when the response from a previous call has more results than the
	// maximum page size.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListCostCategoryDefinitionsInput) GoString added in v1.25.42

GoString returns the string representation

func (*ListCostCategoryDefinitionsInput) SetEffectiveOn added in v1.25.42

SetEffectiveOn sets the EffectiveOn field's value.

func (*ListCostCategoryDefinitionsInput) SetMaxResults added in v1.30.10

SetMaxResults sets the MaxResults field's value.

func (*ListCostCategoryDefinitionsInput) SetNextToken added in v1.25.42

SetNextToken sets the NextToken field's value.

func (ListCostCategoryDefinitionsInput) String added in v1.25.42

String returns the string representation

func (*ListCostCategoryDefinitionsInput) Validate added in v1.25.42

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

type ListCostCategoryDefinitionsOutput added in v1.25.42

type ListCostCategoryDefinitionsOutput struct {

	// A reference to a Cost Category containing enough information to identify
	// the Cost Category.
	CostCategoryReferences []*CostCategoryReference `type:"list"`

	// The token to retrieve the next set of results. Amazon Web Services provides
	// the token when the response from a previous call has more results than the
	// maximum page size.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListCostCategoryDefinitionsOutput) GoString added in v1.25.42

GoString returns the string representation

func (*ListCostCategoryDefinitionsOutput) SetCostCategoryReferences added in v1.25.42

SetCostCategoryReferences sets the CostCategoryReferences field's value.

func (*ListCostCategoryDefinitionsOutput) SetNextToken added in v1.25.42

SetNextToken sets the NextToken field's value.

func (ListCostCategoryDefinitionsOutput) String added in v1.25.42

String returns the string representation

type MetricValue

type MetricValue struct {

	// The actual number that represents the metric.
	Amount *string `type:"string"`

	// The unit that the metric is given in.
	Unit *string `type:"string"`
	// contains filtered or unexported fields
}

The aggregated value for a metric.

func (MetricValue) GoString

func (s MetricValue) GoString() string

GoString returns the string representation

func (*MetricValue) SetAmount

func (s *MetricValue) SetAmount(v string) *MetricValue

SetAmount sets the Amount field's value.

func (*MetricValue) SetUnit

func (s *MetricValue) SetUnit(v string) *MetricValue

SetUnit sets the Unit field's value.

func (MetricValue) String

func (s MetricValue) String() string

String returns the string representation

type ModifyRecommendationDetail added in v1.21.6

type ModifyRecommendationDetail struct {

	// Identifies whether this instance type is the Amazon Web Services default
	// recommendation.
	TargetInstances []*TargetInstance `type:"list"`
	// contains filtered or unexported fields
}

Details on the modification recommendation.

func (ModifyRecommendationDetail) GoString added in v1.21.6

func (s ModifyRecommendationDetail) GoString() string

GoString returns the string representation

func (*ModifyRecommendationDetail) SetTargetInstances added in v1.21.6

SetTargetInstances sets the TargetInstances field's value.

func (ModifyRecommendationDetail) String added in v1.21.6

String returns the string representation

type RDSInstanceDetails added in v1.13.33

type RDSInstanceDetails struct {

	// Whether the recommendation is for a current-generation instance.
	CurrentGeneration *bool `type:"boolean"`

	// The database edition that the recommended reservation supports.
	DatabaseEdition *string `type:"string"`

	// The database engine that the recommended reservation supports.
	DatabaseEngine *string `type:"string"`

	// Whether the recommendation is for a reservation in a single Availability
	// Zone or a reservation with a backup in a second Availability Zone.
	DeploymentOption *string `type:"string"`

	// The instance family of the recommended reservation.
	Family *string `type:"string"`

	// The type of instance that AWS recommends.
	InstanceType *string `type:"string"`

	// The license model that the recommended reservation supports.
	LicenseModel *string `type:"string"`

	// The AWS Region of the recommended reservation.
	Region *string `type:"string"`

	// Whether the recommended reservation is size flexible.
	SizeFlexEligible *bool `type:"boolean"`
	// contains filtered or unexported fields
}

Details about the Amazon RDS instances that AWS recommends that you purchase.

func (RDSInstanceDetails) GoString added in v1.13.33

func (s RDSInstanceDetails) GoString() string

GoString returns the string representation

func (*RDSInstanceDetails) SetCurrentGeneration added in v1.13.33

func (s *RDSInstanceDetails) SetCurrentGeneration(v bool) *RDSInstanceDetails

SetCurrentGeneration sets the CurrentGeneration field's value.

func (*RDSInstanceDetails) SetDatabaseEdition added in v1.14.22

func (s *RDSInstanceDetails) SetDatabaseEdition(v string) *RDSInstanceDetails

SetDatabaseEdition sets the DatabaseEdition field's value.

func (*RDSInstanceDetails) SetDatabaseEngine added in v1.13.33

func (s *RDSInstanceDetails) SetDatabaseEngine(v string) *RDSInstanceDetails

SetDatabaseEngine sets the DatabaseEngine field's value.

func (*RDSInstanceDetails) SetDeploymentOption added in v1.13.33

func (s *RDSInstanceDetails) SetDeploymentOption(v string) *RDSInstanceDetails

SetDeploymentOption sets the DeploymentOption field's value.

func (*RDSInstanceDetails) SetFamily added in v1.13.33

func (s *RDSInstanceDetails) SetFamily(v string) *RDSInstanceDetails

SetFamily sets the Family field's value.

func (*RDSInstanceDetails) SetInstanceType added in v1.13.33

func (s *RDSInstanceDetails) SetInstanceType(v string) *RDSInstanceDetails

SetInstanceType sets the InstanceType field's value.

func (*RDSInstanceDetails) SetLicenseModel added in v1.13.33

func (s *RDSInstanceDetails) SetLicenseModel(v string) *RDSInstanceDetails

SetLicenseModel sets the LicenseModel field's value.

func (*RDSInstanceDetails) SetRegion added in v1.13.33

func (s *RDSInstanceDetails) SetRegion(v string) *RDSInstanceDetails

SetRegion sets the Region field's value.

func (*RDSInstanceDetails) SetSizeFlexEligible added in v1.13.33

func (s *RDSInstanceDetails) SetSizeFlexEligible(v bool) *RDSInstanceDetails

SetSizeFlexEligible sets the SizeFlexEligible field's value.

func (RDSInstanceDetails) String added in v1.13.33

func (s RDSInstanceDetails) String() string

String returns the string representation

type RedshiftInstanceDetails added in v1.14.25

type RedshiftInstanceDetails struct {

	// Whether the recommendation is for a current-generation instance.
	CurrentGeneration *bool `type:"boolean"`

	// The instance family of the recommended reservation.
	Family *string `type:"string"`

	// The type of node that AWS recommends.
	NodeType *string `type:"string"`

	// The AWS Region of the recommended reservation.
	Region *string `type:"string"`

	// Whether the recommended reservation is size flexible.
	SizeFlexEligible *bool `type:"boolean"`
	// contains filtered or unexported fields
}

Details about the Amazon Redshift instances that AWS recommends that you purchase.

func (RedshiftInstanceDetails) GoString added in v1.14.25

func (s RedshiftInstanceDetails) GoString() string

GoString returns the string representation

func (*RedshiftInstanceDetails) SetCurrentGeneration added in v1.14.25

func (s *RedshiftInstanceDetails) SetCurrentGeneration(v bool) *RedshiftInstanceDetails

SetCurrentGeneration sets the CurrentGeneration field's value.

func (*RedshiftInstanceDetails) SetFamily added in v1.14.25

SetFamily sets the Family field's value.

func (*RedshiftInstanceDetails) SetNodeType added in v1.14.25

SetNodeType sets the NodeType field's value.

func (*RedshiftInstanceDetails) SetRegion added in v1.14.25

SetRegion sets the Region field's value.

func (*RedshiftInstanceDetails) SetSizeFlexEligible added in v1.14.25

func (s *RedshiftInstanceDetails) SetSizeFlexEligible(v bool) *RedshiftInstanceDetails

SetSizeFlexEligible sets the SizeFlexEligible field's value.

func (RedshiftInstanceDetails) String added in v1.14.25

func (s RedshiftInstanceDetails) String() string

String returns the string representation

type RequestChangedException added in v1.28.0

type RequestChangedException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"Message" type:"string"`
	// contains filtered or unexported fields
}

Your request parameters changed between pages. Try again with the old parameters or without a pagination token.

func (*RequestChangedException) Code added in v1.28.0

func (s *RequestChangedException) Code() string

Code returns the exception type name.

func (*RequestChangedException) Error added in v1.28.0

func (s *RequestChangedException) Error() string

func (RequestChangedException) GoString added in v1.28.0

func (s RequestChangedException) GoString() string

GoString returns the string representation

func (*RequestChangedException) Message added in v1.28.0

func (s *RequestChangedException) Message() string

Message returns the exception's message.

func (*RequestChangedException) OrigErr added in v1.28.0

func (s *RequestChangedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*RequestChangedException) RequestID added in v1.28.0

func (s *RequestChangedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*RequestChangedException) StatusCode added in v1.28.0

func (s *RequestChangedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (RequestChangedException) String added in v1.28.0

func (s RequestChangedException) String() string

String returns the string representation

type ReservationAggregates

type ReservationAggregates struct {

	// The monthly cost of your reservation, amortized over the reservation period.
	AmortizedRecurringFee *string `type:"string"`

	// The upfront cost of your reservation, amortized over the reservation period.
	AmortizedUpfrontFee *string `type:"string"`

	// How much you saved due to purchasing and utilizing reservation. AWS calculates
	// this by subtracting TotalAmortizedFee from OnDemandCostOfRIHoursUsed.
	NetRISavings *string `type:"string"`

	// How much your reservation would cost if charged On-Demand rates.
	OnDemandCostOfRIHoursUsed *string `type:"string"`

	// How many reservation hours that you purchased.
	PurchasedHours *string `type:"string"`

	// How many Amazon EC2 reservation hours that you purchased, converted to normalized
	// units. Normalized units are available only for Amazon EC2 usage after November
	// 11, 2017.
	PurchasedUnits *string `type:"string"`

	// The total number of reservation hours that you used.
	TotalActualHours *string `type:"string"`

	// The total number of Amazon EC2 reservation hours that you used, converted
	// to normalized units. Normalized units are available only for Amazon EC2 usage
	// after November 11, 2017.
	TotalActualUnits *string `type:"string"`

	// The total cost of your reservation, amortized over the reservation period.
	TotalAmortizedFee *string `type:"string"`

	// How much you could save if you use your entire reservation.
	TotalPotentialRISavings *string `type:"string"`

	// The number of reservation hours that you didn't use.
	UnusedHours *string `type:"string"`

	// The number of Amazon EC2 reservation hours that you didn't use, converted
	// to normalized units. Normalized units are available only for Amazon EC2 usage
	// after November 11, 2017.
	UnusedUnits *string `type:"string"`

	// The percentage of reservation time that you used.
	UtilizationPercentage *string `type:"string"`

	// The percentage of Amazon EC2 reservation time that you used, converted to
	// normalized units. Normalized units are available only for Amazon EC2 usage
	// after November 11, 2017.
	UtilizationPercentageInUnits *string `type:"string"`
	// contains filtered or unexported fields
}

The aggregated numbers for your reservation usage.

func (ReservationAggregates) GoString

func (s ReservationAggregates) GoString() string

GoString returns the string representation

func (*ReservationAggregates) SetAmortizedRecurringFee added in v1.14.1

func (s *ReservationAggregates) SetAmortizedRecurringFee(v string) *ReservationAggregates

SetAmortizedRecurringFee sets the AmortizedRecurringFee field's value.

func (*ReservationAggregates) SetAmortizedUpfrontFee added in v1.14.1

func (s *ReservationAggregates) SetAmortizedUpfrontFee(v string) *ReservationAggregates

SetAmortizedUpfrontFee sets the AmortizedUpfrontFee field's value.

func (*ReservationAggregates) SetNetRISavings added in v1.14.1

func (s *ReservationAggregates) SetNetRISavings(v string) *ReservationAggregates

SetNetRISavings sets the NetRISavings field's value.

func (*ReservationAggregates) SetOnDemandCostOfRIHoursUsed added in v1.14.1

func (s *ReservationAggregates) SetOnDemandCostOfRIHoursUsed(v string) *ReservationAggregates

SetOnDemandCostOfRIHoursUsed sets the OnDemandCostOfRIHoursUsed field's value.

func (*ReservationAggregates) SetPurchasedHours

func (s *ReservationAggregates) SetPurchasedHours(v string) *ReservationAggregates

SetPurchasedHours sets the PurchasedHours field's value.

func (*ReservationAggregates) SetPurchasedUnits added in v1.16.0

func (s *ReservationAggregates) SetPurchasedUnits(v string) *ReservationAggregates

SetPurchasedUnits sets the PurchasedUnits field's value.

func (*ReservationAggregates) SetTotalActualHours

func (s *ReservationAggregates) SetTotalActualHours(v string) *ReservationAggregates

SetTotalActualHours sets the TotalActualHours field's value.

func (*ReservationAggregates) SetTotalActualUnits added in v1.16.0

func (s *ReservationAggregates) SetTotalActualUnits(v string) *ReservationAggregates

SetTotalActualUnits sets the TotalActualUnits field's value.

func (*ReservationAggregates) SetTotalAmortizedFee added in v1.14.1

func (s *ReservationAggregates) SetTotalAmortizedFee(v string) *ReservationAggregates

SetTotalAmortizedFee sets the TotalAmortizedFee field's value.

func (*ReservationAggregates) SetTotalPotentialRISavings added in v1.14.1

func (s *ReservationAggregates) SetTotalPotentialRISavings(v string) *ReservationAggregates

SetTotalPotentialRISavings sets the TotalPotentialRISavings field's value.

func (*ReservationAggregates) SetUnusedHours

func (s *ReservationAggregates) SetUnusedHours(v string) *ReservationAggregates

SetUnusedHours sets the UnusedHours field's value.

func (*ReservationAggregates) SetUnusedUnits added in v1.16.0

func (s *ReservationAggregates) SetUnusedUnits(v string) *ReservationAggregates

SetUnusedUnits sets the UnusedUnits field's value.

func (*ReservationAggregates) SetUtilizationPercentage

func (s *ReservationAggregates) SetUtilizationPercentage(v string) *ReservationAggregates

SetUtilizationPercentage sets the UtilizationPercentage field's value.

func (*ReservationAggregates) SetUtilizationPercentageInUnits added in v1.16.0

func (s *ReservationAggregates) SetUtilizationPercentageInUnits(v string) *ReservationAggregates

SetUtilizationPercentageInUnits sets the UtilizationPercentageInUnits field's value.

func (ReservationAggregates) String

func (s ReservationAggregates) String() string

String returns the string representation

type ReservationCoverageGroup added in v1.13.3

type ReservationCoverageGroup struct {

	// The attributes for this group of reservations.
	Attributes map[string]*string `type:"map"`

	// How much instance usage this group of reservations covered.
	Coverage *Coverage `type:"structure"`
	// contains filtered or unexported fields
}

A group of reservations that share a set of attributes.

func (ReservationCoverageGroup) GoString added in v1.13.3

func (s ReservationCoverageGroup) GoString() string

GoString returns the string representation

func (*ReservationCoverageGroup) SetAttributes added in v1.13.3

SetAttributes sets the Attributes field's value.

func (*ReservationCoverageGroup) SetCoverage added in v1.13.3

SetCoverage sets the Coverage field's value.

func (ReservationCoverageGroup) String added in v1.13.3

func (s ReservationCoverageGroup) String() string

String returns the string representation

type ReservationPurchaseRecommendation added in v1.13.17

type ReservationPurchaseRecommendation struct {

	// The account scope that AWS recommends that you purchase this instance for.
	// For example, you can purchase this reservation for an entire organization
	// in AWS Organizations.
	AccountScope *string `type:"string" enum:"AccountScope"`

	// How many days of previous usage that AWS considers when making this recommendation.
	LookbackPeriodInDays *string `type:"string" enum:"LookbackPeriodInDays"`

	// The payment option for the reservation. For example, AllUpfront or NoUpfront.
	PaymentOption *string `type:"string" enum:"PaymentOption"`

	// Details about the recommended purchases.
	RecommendationDetails []*ReservationPurchaseRecommendationDetail `type:"list"`

	// A summary about the recommended purchase.
	RecommendationSummary *ReservationPurchaseRecommendationSummary `type:"structure"`

	// Hardware specifications for the service that you want recommendations for.
	ServiceSpecification *ServiceSpecification `type:"structure"`

	// The term of the reservation that you want recommendations for, in years.
	TermInYears *string `type:"string" enum:"TermInYears"`
	// contains filtered or unexported fields
}

A specific reservation that AWS recommends for purchase.

func (ReservationPurchaseRecommendation) GoString added in v1.13.17

GoString returns the string representation

func (*ReservationPurchaseRecommendation) SetAccountScope added in v1.13.17

SetAccountScope sets the AccountScope field's value.

func (*ReservationPurchaseRecommendation) SetLookbackPeriodInDays added in v1.13.17

SetLookbackPeriodInDays sets the LookbackPeriodInDays field's value.

func (*ReservationPurchaseRecommendation) SetPaymentOption added in v1.13.17

SetPaymentOption sets the PaymentOption field's value.

func (*ReservationPurchaseRecommendation) SetRecommendationDetails added in v1.13.17

SetRecommendationDetails sets the RecommendationDetails field's value.

func (*ReservationPurchaseRecommendation) SetRecommendationSummary added in v1.13.17

SetRecommendationSummary sets the RecommendationSummary field's value.

func (*ReservationPurchaseRecommendation) SetServiceSpecification added in v1.13.17

SetServiceSpecification sets the ServiceSpecification field's value.

func (*ReservationPurchaseRecommendation) SetTermInYears added in v1.13.17

SetTermInYears sets the TermInYears field's value.

func (ReservationPurchaseRecommendation) String added in v1.13.17

String returns the string representation

type ReservationPurchaseRecommendationDetail added in v1.13.17

type ReservationPurchaseRecommendationDetail struct {

	// The account that this RI recommendation is for.
	AccountId *string `type:"string"`

	// The average number of normalized units that you used in an hour during the
	// historical period. AWS uses this to calculate your recommended reservation
	// purchases.
	AverageNormalizedUnitsUsedPerHour *string `type:"string"`

	// The average number of instances that you used in an hour during the historical
	// period. AWS uses this to calculate your recommended reservation purchases.
	AverageNumberOfInstancesUsedPerHour *string `type:"string"`

	// The average utilization of your instances. AWS uses this to calculate your
	// recommended reservation purchases.
	AverageUtilization *string `type:"string"`

	// The currency code that AWS used to calculate the costs for this instance.
	CurrencyCode *string `type:"string"`

	// How long AWS estimates that it takes for this instance to start saving you
	// money, in months.
	EstimatedBreakEvenInMonths *string `type:"string"`

	// How much AWS estimates that you spend on On-Demand Instances in a month.
	EstimatedMonthlyOnDemandCost *string `type:"string"`

	// How much AWS estimates that this specific recommendation could save you in
	// a month.
	EstimatedMonthlySavingsAmount *string `type:"string"`

	// How much AWS estimates that this specific recommendation could save you in
	// a month, as a percentage of your overall costs.
	EstimatedMonthlySavingsPercentage *string `type:"string"`

	// How much AWS estimates that you would have spent for all usage during the
	// specified historical period if you had a reservation.
	EstimatedReservationCostForLookbackPeriod *string `type:"string"`

	// Details about the instances that AWS recommends that you purchase.
	InstanceDetails *InstanceDetails `type:"structure"`

	// The maximum number of normalized units that you used in an hour during the
	// historical period. AWS uses this to calculate your recommended reservation
	// purchases.
	MaximumNormalizedUnitsUsedPerHour *string `type:"string"`

	// The maximum number of instances that you used in an hour during the historical
	// period. AWS uses this to calculate your recommended reservation purchases.
	MaximumNumberOfInstancesUsedPerHour *string `type:"string"`

	// The minimum number of normalized units that you used in an hour during the
	// historical period. AWS uses this to calculate your recommended reservation
	// purchases.
	MinimumNormalizedUnitsUsedPerHour *string `type:"string"`

	// The minimum number of instances that you used in an hour during the historical
	// period. AWS uses this to calculate your recommended reservation purchases.
	MinimumNumberOfInstancesUsedPerHour *string `type:"string"`

	// The number of normalized units that AWS recommends that you purchase.
	RecommendedNormalizedUnitsToPurchase *string `type:"string"`

	// The number of instances that AWS recommends that you purchase.
	RecommendedNumberOfInstancesToPurchase *string `type:"string"`

	// How much purchasing this instance costs you on a monthly basis.
	RecurringStandardMonthlyCost *string `type:"string"`

	// How much purchasing this instance costs you upfront.
	UpfrontCost *string `type:"string"`
	// contains filtered or unexported fields
}

Details about your recommended reservation purchase.

func (ReservationPurchaseRecommendationDetail) GoString added in v1.13.17

GoString returns the string representation

func (*ReservationPurchaseRecommendationDetail) SetAccountId added in v1.15.71

SetAccountId sets the AccountId field's value.

func (*ReservationPurchaseRecommendationDetail) SetAverageNormalizedUnitsUsedPerHour added in v1.13.17

SetAverageNormalizedUnitsUsedPerHour sets the AverageNormalizedUnitsUsedPerHour field's value.

func (*ReservationPurchaseRecommendationDetail) SetAverageNumberOfInstancesUsedPerHour added in v1.13.17

func (s *ReservationPurchaseRecommendationDetail) SetAverageNumberOfInstancesUsedPerHour(v string) *ReservationPurchaseRecommendationDetail

SetAverageNumberOfInstancesUsedPerHour sets the AverageNumberOfInstancesUsedPerHour field's value.

func (*ReservationPurchaseRecommendationDetail) SetAverageUtilization added in v1.13.17

SetAverageUtilization sets the AverageUtilization field's value.

func (*ReservationPurchaseRecommendationDetail) SetCurrencyCode added in v1.13.17

SetCurrencyCode sets the CurrencyCode field's value.

func (*ReservationPurchaseRecommendationDetail) SetEstimatedBreakEvenInMonths added in v1.13.17

SetEstimatedBreakEvenInMonths sets the EstimatedBreakEvenInMonths field's value.

func (*ReservationPurchaseRecommendationDetail) SetEstimatedMonthlyOnDemandCost added in v1.13.17

SetEstimatedMonthlyOnDemandCost sets the EstimatedMonthlyOnDemandCost field's value.

func (*ReservationPurchaseRecommendationDetail) SetEstimatedMonthlySavingsAmount added in v1.13.17

SetEstimatedMonthlySavingsAmount sets the EstimatedMonthlySavingsAmount field's value.

func (*ReservationPurchaseRecommendationDetail) SetEstimatedMonthlySavingsPercentage added in v1.13.17

SetEstimatedMonthlySavingsPercentage sets the EstimatedMonthlySavingsPercentage field's value.

func (*ReservationPurchaseRecommendationDetail) SetEstimatedReservationCostForLookbackPeriod added in v1.13.17

func (s *ReservationPurchaseRecommendationDetail) SetEstimatedReservationCostForLookbackPeriod(v string) *ReservationPurchaseRecommendationDetail

SetEstimatedReservationCostForLookbackPeriod sets the EstimatedReservationCostForLookbackPeriod field's value.

func (*ReservationPurchaseRecommendationDetail) SetInstanceDetails added in v1.13.17

SetInstanceDetails sets the InstanceDetails field's value.

func (*ReservationPurchaseRecommendationDetail) SetMaximumNormalizedUnitsUsedPerHour added in v1.13.17

SetMaximumNormalizedUnitsUsedPerHour sets the MaximumNormalizedUnitsUsedPerHour field's value.

func (*ReservationPurchaseRecommendationDetail) SetMaximumNumberOfInstancesUsedPerHour added in v1.13.17

func (s *ReservationPurchaseRecommendationDetail) SetMaximumNumberOfInstancesUsedPerHour(v string) *ReservationPurchaseRecommendationDetail

SetMaximumNumberOfInstancesUsedPerHour sets the MaximumNumberOfInstancesUsedPerHour field's value.

func (*ReservationPurchaseRecommendationDetail) SetMinimumNormalizedUnitsUsedPerHour added in v1.13.17

SetMinimumNormalizedUnitsUsedPerHour sets the MinimumNormalizedUnitsUsedPerHour field's value.

func (*ReservationPurchaseRecommendationDetail) SetMinimumNumberOfInstancesUsedPerHour added in v1.13.17

func (s *ReservationPurchaseRecommendationDetail) SetMinimumNumberOfInstancesUsedPerHour(v string) *ReservationPurchaseRecommendationDetail

SetMinimumNumberOfInstancesUsedPerHour sets the MinimumNumberOfInstancesUsedPerHour field's value.

func (*ReservationPurchaseRecommendationDetail) SetRecommendedNormalizedUnitsToPurchase added in v1.13.17

func (s *ReservationPurchaseRecommendationDetail) SetRecommendedNormalizedUnitsToPurchase(v string) *ReservationPurchaseRecommendationDetail

SetRecommendedNormalizedUnitsToPurchase sets the RecommendedNormalizedUnitsToPurchase field's value.

func (*ReservationPurchaseRecommendationDetail) SetRecommendedNumberOfInstancesToPurchase added in v1.13.17

func (s *ReservationPurchaseRecommendationDetail) SetRecommendedNumberOfInstancesToPurchase(v string) *ReservationPurchaseRecommendationDetail

SetRecommendedNumberOfInstancesToPurchase sets the RecommendedNumberOfInstancesToPurchase field's value.

func (*ReservationPurchaseRecommendationDetail) SetRecurringStandardMonthlyCost added in v1.13.17

SetRecurringStandardMonthlyCost sets the RecurringStandardMonthlyCost field's value.

func (*ReservationPurchaseRecommendationDetail) SetUpfrontCost added in v1.13.17

SetUpfrontCost sets the UpfrontCost field's value.

func (ReservationPurchaseRecommendationDetail) String added in v1.13.17

String returns the string representation

type ReservationPurchaseRecommendationMetadata added in v1.13.17

type ReservationPurchaseRecommendationMetadata struct {

	// The timestamp for when AWS made this recommendation.
	GenerationTimestamp *string `type:"string"`

	// The ID for this specific recommendation.
	RecommendationId *string `type:"string"`
	// contains filtered or unexported fields
}

Information about this specific recommendation, such as the timestamp for when AWS made a specific recommendation.

func (ReservationPurchaseRecommendationMetadata) GoString added in v1.13.17

GoString returns the string representation

func (*ReservationPurchaseRecommendationMetadata) SetGenerationTimestamp added in v1.13.17

SetGenerationTimestamp sets the GenerationTimestamp field's value.

func (*ReservationPurchaseRecommendationMetadata) SetRecommendationId added in v1.13.17

SetRecommendationId sets the RecommendationId field's value.

func (ReservationPurchaseRecommendationMetadata) String added in v1.13.17

String returns the string representation

type ReservationPurchaseRecommendationSummary added in v1.13.17

type ReservationPurchaseRecommendationSummary struct {

	// The currency code used for this recommendation.
	CurrencyCode *string `type:"string"`

	// The total amount that AWS estimates that this recommendation could save you
	// in a month.
	TotalEstimatedMonthlySavingsAmount *string `type:"string"`

	// The total amount that AWS estimates that this recommendation could save you
	// in a month, as a percentage of your costs.
	TotalEstimatedMonthlySavingsPercentage *string `type:"string"`
	// contains filtered or unexported fields
}

A summary about this recommendation, such as the currency code, the amount that AWS estimates that you could save, and the total amount of reservation to purchase.

func (ReservationPurchaseRecommendationSummary) GoString added in v1.13.17

GoString returns the string representation

func (*ReservationPurchaseRecommendationSummary) SetCurrencyCode added in v1.13.17

SetCurrencyCode sets the CurrencyCode field's value.

func (*ReservationPurchaseRecommendationSummary) SetTotalEstimatedMonthlySavingsAmount added in v1.13.17

SetTotalEstimatedMonthlySavingsAmount sets the TotalEstimatedMonthlySavingsAmount field's value.

func (*ReservationPurchaseRecommendationSummary) SetTotalEstimatedMonthlySavingsPercentage added in v1.13.17

func (s *ReservationPurchaseRecommendationSummary) SetTotalEstimatedMonthlySavingsPercentage(v string) *ReservationPurchaseRecommendationSummary

SetTotalEstimatedMonthlySavingsPercentage sets the TotalEstimatedMonthlySavingsPercentage field's value.

func (ReservationPurchaseRecommendationSummary) String added in v1.13.17

String returns the string representation

type ReservationUtilizationGroup

type ReservationUtilizationGroup struct {

	// The attributes for this group of reservations.
	Attributes map[string]*string `type:"map"`

	// The key for a specific reservation attribute.
	Key *string `type:"string"`

	// How much you used this group of reservations.
	Utilization *ReservationAggregates `type:"structure"`

	// The value of a specific reservation attribute.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

A group of reservations that share a set of attributes.

func (ReservationUtilizationGroup) GoString

func (s ReservationUtilizationGroup) GoString() string

GoString returns the string representation

func (*ReservationUtilizationGroup) SetAttributes

SetAttributes sets the Attributes field's value.

func (*ReservationUtilizationGroup) SetKey

SetKey sets the Key field's value.

func (*ReservationUtilizationGroup) SetUtilization

SetUtilization sets the Utilization field's value.

func (*ReservationUtilizationGroup) SetValue

SetValue sets the Value field's value.

func (ReservationUtilizationGroup) String

String returns the string representation

type ResourceDetails added in v1.21.6

type ResourceDetails struct {

	// Details on the Amazon EC2 resource.
	EC2ResourceDetails *EC2ResourceDetails `type:"structure"`
	// contains filtered or unexported fields
}

Details on the resource.

func (ResourceDetails) GoString added in v1.21.6

func (s ResourceDetails) GoString() string

GoString returns the string representation

func (*ResourceDetails) SetEC2ResourceDetails added in v1.21.6

func (s *ResourceDetails) SetEC2ResourceDetails(v *EC2ResourceDetails) *ResourceDetails

SetEC2ResourceDetails sets the EC2ResourceDetails field's value.

func (ResourceDetails) String added in v1.21.6

func (s ResourceDetails) String() string

String returns the string representation

type ResourceNotFoundException added in v1.28.0

type ResourceNotFoundException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"Message" type:"string"`
	// contains filtered or unexported fields
}

The specified ARN in the request doesn't exist.

func (*ResourceNotFoundException) Code added in v1.28.0

Code returns the exception type name.

func (*ResourceNotFoundException) Error added in v1.28.0

func (s *ResourceNotFoundException) Error() string

func (ResourceNotFoundException) GoString added in v1.28.0

func (s ResourceNotFoundException) GoString() string

GoString returns the string representation

func (*ResourceNotFoundException) Message added in v1.28.0

func (s *ResourceNotFoundException) Message() string

Message returns the exception's message.

func (*ResourceNotFoundException) OrigErr added in v1.28.0

func (s *ResourceNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceNotFoundException) RequestID added in v1.28.0

func (s *ResourceNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ResourceNotFoundException) StatusCode added in v1.28.0

func (s *ResourceNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ResourceNotFoundException) String added in v1.28.0

func (s ResourceNotFoundException) String() string

String returns the string representation

type ResourceUtilization added in v1.21.6

type ResourceUtilization struct {

	// Utilization of current Amazon EC2 Instance
	EC2ResourceUtilization *EC2ResourceUtilization `type:"structure"`
	// contains filtered or unexported fields
}

Resource utilization of current resource.

func (ResourceUtilization) GoString added in v1.21.6

func (s ResourceUtilization) GoString() string

GoString returns the string representation

func (*ResourceUtilization) SetEC2ResourceUtilization added in v1.21.6

func (s *ResourceUtilization) SetEC2ResourceUtilization(v *EC2ResourceUtilization) *ResourceUtilization

SetEC2ResourceUtilization sets the EC2ResourceUtilization field's value.

func (ResourceUtilization) String added in v1.21.6

func (s ResourceUtilization) String() string

String returns the string representation

type ResultByTime

type ResultByTime struct {

	// Whether the result is estimated.
	Estimated *bool `type:"boolean"`

	// The groups that this time period includes.
	Groups []*Group `type:"list"`

	// The time period that the result covers.
	TimePeriod *DateInterval `type:"structure"`

	// The total amount of cost or usage accrued during the time period.
	Total map[string]*MetricValue `type:"map"`
	// contains filtered or unexported fields
}

The result that is associated with a time period.

func (ResultByTime) GoString

func (s ResultByTime) GoString() string

GoString returns the string representation

func (*ResultByTime) SetEstimated

func (s *ResultByTime) SetEstimated(v bool) *ResultByTime

SetEstimated sets the Estimated field's value.

func (*ResultByTime) SetGroups

func (s *ResultByTime) SetGroups(v []*Group) *ResultByTime

SetGroups sets the Groups field's value.

func (*ResultByTime) SetTimePeriod

func (s *ResultByTime) SetTimePeriod(v *DateInterval) *ResultByTime

SetTimePeriod sets the TimePeriod field's value.

func (*ResultByTime) SetTotal

func (s *ResultByTime) SetTotal(v map[string]*MetricValue) *ResultByTime

SetTotal sets the Total field's value.

func (ResultByTime) String

func (s ResultByTime) String() string

String returns the string representation

type RightsizingRecommendation added in v1.21.6

type RightsizingRecommendation struct {

	// The account that this recommendation is for.
	AccountId *string `type:"string"`

	// Context regarding the current instance.
	CurrentInstance *CurrentInstance `type:"structure"`

	// Details for modification recommendations.
	ModifyRecommendationDetail *ModifyRecommendationDetail `type:"structure"`

	// Recommendation to either terminate or modify the resource.
	RightsizingType *string `type:"string" enum:"RightsizingType"`

	// Details for termination recommendations.
	TerminateRecommendationDetail *TerminateRecommendationDetail `type:"structure"`
	// contains filtered or unexported fields
}

Recommendations to rightsize resources.

func (RightsizingRecommendation) GoString added in v1.21.6

func (s RightsizingRecommendation) GoString() string

GoString returns the string representation

func (*RightsizingRecommendation) SetAccountId added in v1.21.6

SetAccountId sets the AccountId field's value.

func (*RightsizingRecommendation) SetCurrentInstance added in v1.21.6

SetCurrentInstance sets the CurrentInstance field's value.

func (*RightsizingRecommendation) SetModifyRecommendationDetail added in v1.21.6

SetModifyRecommendationDetail sets the ModifyRecommendationDetail field's value.

func (*RightsizingRecommendation) SetRightsizingType added in v1.21.6

SetRightsizingType sets the RightsizingType field's value.

func (*RightsizingRecommendation) SetTerminateRecommendationDetail added in v1.21.6

SetTerminateRecommendationDetail sets the TerminateRecommendationDetail field's value.

func (RightsizingRecommendation) String added in v1.21.6

func (s RightsizingRecommendation) String() string

String returns the string representation

type RightsizingRecommendationConfiguration added in v1.30.11

type RightsizingRecommendationConfiguration struct {

	// The option to consider RI or Savings Plans discount benefits in your savings
	// calculation. The default value is TRUE.
	//
	// BenefitsConsidered is a required field
	BenefitsConsidered *bool `type:"boolean" required:"true"`

	// The option to see recommendations within the same instance family, or recommendations
	// for instances across other families. The default value is SAME_INSTANCE_FAMILY.
	//
	// RecommendationTarget is a required field
	RecommendationTarget *string `type:"string" required:"true" enum:"RecommendationTarget"`
	// contains filtered or unexported fields
}

Enables you to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings associated with recommendations with consideration of existing Savings Plans or RI benefits, or niether.

func (RightsizingRecommendationConfiguration) GoString added in v1.30.11

GoString returns the string representation

func (*RightsizingRecommendationConfiguration) SetBenefitsConsidered added in v1.30.11

SetBenefitsConsidered sets the BenefitsConsidered field's value.

func (*RightsizingRecommendationConfiguration) SetRecommendationTarget added in v1.30.11

SetRecommendationTarget sets the RecommendationTarget field's value.

func (RightsizingRecommendationConfiguration) String added in v1.30.11

String returns the string representation

func (*RightsizingRecommendationConfiguration) Validate added in v1.30.11

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

type RightsizingRecommendationMetadata added in v1.21.6

type RightsizingRecommendationMetadata struct {

	// The time stamp for when Amazon Web Services made this recommendation.
	GenerationTimestamp *string `type:"string"`

	// How many days of previous usage that Amazon Web Services considers when making
	// this recommendation.
	LookbackPeriodInDays *string `type:"string" enum:"LookbackPeriodInDays"`

	// The ID for this specific recommendation.
	RecommendationId *string `type:"string"`
	// contains filtered or unexported fields
}

Metadata for this recommendation set.

func (RightsizingRecommendationMetadata) GoString added in v1.21.6

GoString returns the string representation

func (*RightsizingRecommendationMetadata) SetGenerationTimestamp added in v1.21.6

SetGenerationTimestamp sets the GenerationTimestamp field's value.

func (*RightsizingRecommendationMetadata) SetLookbackPeriodInDays added in v1.21.6

SetLookbackPeriodInDays sets the LookbackPeriodInDays field's value.

func (*RightsizingRecommendationMetadata) SetRecommendationId added in v1.21.6

SetRecommendationId sets the RecommendationId field's value.

func (RightsizingRecommendationMetadata) String added in v1.21.6

String returns the string representation

type RightsizingRecommendationSummary added in v1.21.6

type RightsizingRecommendationSummary struct {

	// Estimated total savings resulting from modifications, on a monthly basis.
	EstimatedTotalMonthlySavingsAmount *string `type:"string"`

	// The currency code that Amazon Web Services used to calculate the savings.
	SavingsCurrencyCode *string `type:"string"`

	// Savings percentage based on the recommended modifications, relative to the
	// total On Demand costs associated with these instances.
	SavingsPercentage *string `type:"string"`

	// Total number of instance recommendations.
	TotalRecommendationCount *string `type:"string"`
	// contains filtered or unexported fields
}

Summary of rightsizing recommendations

func (RightsizingRecommendationSummary) GoString added in v1.21.6

GoString returns the string representation

func (*RightsizingRecommendationSummary) SetEstimatedTotalMonthlySavingsAmount added in v1.21.6

func (s *RightsizingRecommendationSummary) SetEstimatedTotalMonthlySavingsAmount(v string) *RightsizingRecommendationSummary

SetEstimatedTotalMonthlySavingsAmount sets the EstimatedTotalMonthlySavingsAmount field's value.

func (*RightsizingRecommendationSummary) SetSavingsCurrencyCode added in v1.21.6

SetSavingsCurrencyCode sets the SavingsCurrencyCode field's value.

func (*RightsizingRecommendationSummary) SetSavingsPercentage added in v1.21.6

SetSavingsPercentage sets the SavingsPercentage field's value.

func (*RightsizingRecommendationSummary) SetTotalRecommendationCount added in v1.21.6

SetTotalRecommendationCount sets the TotalRecommendationCount field's value.

func (RightsizingRecommendationSummary) String added in v1.21.6

String returns the string representation

type SavingsPlansAmortizedCommitment added in v1.25.28

type SavingsPlansAmortizedCommitment struct {

	// The amortized amount of your Savings Plans commitment that was purchased
	// with either a Partial or a NoUpfront.
	AmortizedRecurringCommitment *string `type:"string"`

	// The amortized amount of your Savings Plans commitment that was purchased
	// with an Upfront or PartialUpfront Savings Plans.
	AmortizedUpfrontCommitment *string `type:"string"`

	// The total amortized amount of your Savings Plans commitment, regardless of
	// your Savings Plans purchase method.
	TotalAmortizedCommitment *string `type:"string"`
	// contains filtered or unexported fields
}

The amortized amount of Savings Plans purchased in a specific account during a specific time interval.

func (SavingsPlansAmortizedCommitment) GoString added in v1.25.28

GoString returns the string representation

func (*SavingsPlansAmortizedCommitment) SetAmortizedRecurringCommitment added in v1.25.28

func (s *SavingsPlansAmortizedCommitment) SetAmortizedRecurringCommitment(v string) *SavingsPlansAmortizedCommitment

SetAmortizedRecurringCommitment sets the AmortizedRecurringCommitment field's value.

func (*SavingsPlansAmortizedCommitment) SetAmortizedUpfrontCommitment added in v1.25.28

func (s *SavingsPlansAmortizedCommitment) SetAmortizedUpfrontCommitment(v string) *SavingsPlansAmortizedCommitment

SetAmortizedUpfrontCommitment sets the AmortizedUpfrontCommitment field's value.

func (*SavingsPlansAmortizedCommitment) SetTotalAmortizedCommitment added in v1.25.28

func (s *SavingsPlansAmortizedCommitment) SetTotalAmortizedCommitment(v string) *SavingsPlansAmortizedCommitment

SetTotalAmortizedCommitment sets the TotalAmortizedCommitment field's value.

func (SavingsPlansAmortizedCommitment) String added in v1.25.28

String returns the string representation

type SavingsPlansCoverage added in v1.25.28

type SavingsPlansCoverage struct {

	// The attribute that applies to a specific Dimension.
	Attributes map[string]*string `type:"map"`

	// The amount of Savings Plans eligible usage that the Savings Plans covered.
	Coverage *SavingsPlansCoverageData `type:"structure"`

	// The time period that you want the usage and costs for.
	TimePeriod *DateInterval `type:"structure"`
	// contains filtered or unexported fields
}

The amount of Savings Plans eligible usage that is covered by Savings Plans. All calculations consider the On-Demand equivalent of your Savings Plans usage.

func (SavingsPlansCoverage) GoString added in v1.25.28

func (s SavingsPlansCoverage) GoString() string

GoString returns the string representation

func (*SavingsPlansCoverage) SetAttributes added in v1.25.28

func (s *SavingsPlansCoverage) SetAttributes(v map[string]*string) *SavingsPlansCoverage

SetAttributes sets the Attributes field's value.

func (*SavingsPlansCoverage) SetCoverage added in v1.25.28

SetCoverage sets the Coverage field's value.

func (*SavingsPlansCoverage) SetTimePeriod added in v1.25.28

SetTimePeriod sets the TimePeriod field's value.

func (SavingsPlansCoverage) String added in v1.25.28

func (s SavingsPlansCoverage) String() string

String returns the string representation

type SavingsPlansCoverageData added in v1.25.28

type SavingsPlansCoverageData struct {

	// The percentage of your existing Savings Plans covered usage, divided by all
	// of your eligible Savings Plans usage in an account(or set of accounts).
	CoveragePercentage *string `type:"string"`

	// The cost of your Amazon Web Services usage at the public On-Demand rate.
	OnDemandCost *string `type:"string"`

	// The amount of your Amazon Web Services usage that is covered by a Savings
	// Plans.
	SpendCoveredBySavingsPlans *string `type:"string"`

	// The total cost of your Amazon Web Services usage, regardless of your purchase
	// option.
	TotalCost *string `type:"string"`
	// contains filtered or unexported fields
}

Specific coverage percentage, On-Demand costs, and spend covered by Savings Plans, and total Savings Plans costs for an account.

func (SavingsPlansCoverageData) GoString added in v1.25.28

func (s SavingsPlansCoverageData) GoString() string

GoString returns the string representation

func (*SavingsPlansCoverageData) SetCoveragePercentage added in v1.25.28

func (s *SavingsPlansCoverageData) SetCoveragePercentage(v string) *SavingsPlansCoverageData

SetCoveragePercentage sets the CoveragePercentage field's value.

func (*SavingsPlansCoverageData) SetOnDemandCost added in v1.25.28

SetOnDemandCost sets the OnDemandCost field's value.

func (*SavingsPlansCoverageData) SetSpendCoveredBySavingsPlans added in v1.25.28

func (s *SavingsPlansCoverageData) SetSpendCoveredBySavingsPlans(v string) *SavingsPlansCoverageData

SetSpendCoveredBySavingsPlans sets the SpendCoveredBySavingsPlans field's value.

func (*SavingsPlansCoverageData) SetTotalCost added in v1.25.28

SetTotalCost sets the TotalCost field's value.

func (SavingsPlansCoverageData) String added in v1.25.28

func (s SavingsPlansCoverageData) String() string

String returns the string representation

type SavingsPlansDetails added in v1.25.28

type SavingsPlansDetails struct {

	// A group of instance types that Savings Plans applies to.
	InstanceFamily *string `type:"string"`

	// The unique ID used to distinguish Savings Plans from one another.
	OfferingId *string `type:"string"`

	// A collection of AWS resources in a geographic area. Each AWS Region is isolated
	// and independent of the other Regions.
	Region *string `type:"string"`
	// contains filtered or unexported fields
}

Attribute details on a specific Savings Plan.

func (SavingsPlansDetails) GoString added in v1.25.28

func (s SavingsPlansDetails) GoString() string

GoString returns the string representation

func (*SavingsPlansDetails) SetInstanceFamily added in v1.25.28

func (s *SavingsPlansDetails) SetInstanceFamily(v string) *SavingsPlansDetails

SetInstanceFamily sets the InstanceFamily field's value.

func (*SavingsPlansDetails) SetOfferingId added in v1.25.28

func (s *SavingsPlansDetails) SetOfferingId(v string) *SavingsPlansDetails

SetOfferingId sets the OfferingId field's value.

func (*SavingsPlansDetails) SetRegion added in v1.25.28

SetRegion sets the Region field's value.

func (SavingsPlansDetails) String added in v1.25.28

func (s SavingsPlansDetails) String() string

String returns the string representation

type SavingsPlansPurchaseRecommendation added in v1.25.28

type SavingsPlansPurchaseRecommendation struct {

	// The account scope that you want your recommendations for. Amazon Web Services
	// calculates recommendations including the payer account and linked accounts
	// if the value is set to PAYER. If the value is LINKED, recommendations are
	// calculated for individual linked accounts only.
	AccountScope *string `type:"string" enum:"AccountScope"`

	// The lookback period in days, used to generate the recommendation.
	LookbackPeriodInDays *string `type:"string" enum:"LookbackPeriodInDays"`

	// The payment option used to generate the recommendation.
	PaymentOption *string `type:"string" enum:"PaymentOption"`

	// Details for the Savings Plans we recommend that you purchase to cover existing
	// Savings Plans eligible workloads.
	SavingsPlansPurchaseRecommendationDetails []*SavingsPlansPurchaseRecommendationDetail `type:"list"`

	// Summary metrics for your Savings Plans Recommendations.
	SavingsPlansPurchaseRecommendationSummary *SavingsPlansPurchaseRecommendationSummary `type:"structure"`

	// The requested Savings Plans recommendation type.
	SavingsPlansType *string `type:"string" enum:"SupportedSavingsPlansType"`

	// The Savings Plans recommendation term in years, used to generate the recommendation.
	TermInYears *string `type:"string" enum:"TermInYears"`
	// contains filtered or unexported fields
}

Contains your request parameters, Savings Plan Recommendations Summary, and Details.

func (SavingsPlansPurchaseRecommendation) GoString added in v1.25.28

GoString returns the string representation

func (*SavingsPlansPurchaseRecommendation) SetAccountScope added in v1.29.32

SetAccountScope sets the AccountScope field's value.

func (*SavingsPlansPurchaseRecommendation) SetLookbackPeriodInDays added in v1.25.28

SetLookbackPeriodInDays sets the LookbackPeriodInDays field's value.

func (*SavingsPlansPurchaseRecommendation) SetPaymentOption added in v1.25.28

SetPaymentOption sets the PaymentOption field's value.

func (*SavingsPlansPurchaseRecommendation) SetSavingsPlansPurchaseRecommendationDetails added in v1.25.28

SetSavingsPlansPurchaseRecommendationDetails sets the SavingsPlansPurchaseRecommendationDetails field's value.

func (*SavingsPlansPurchaseRecommendation) SetSavingsPlansPurchaseRecommendationSummary added in v1.25.28

SetSavingsPlansPurchaseRecommendationSummary sets the SavingsPlansPurchaseRecommendationSummary field's value.

func (*SavingsPlansPurchaseRecommendation) SetSavingsPlansType added in v1.25.28

SetSavingsPlansType sets the SavingsPlansType field's value.

func (*SavingsPlansPurchaseRecommendation) SetTermInYears added in v1.25.28

SetTermInYears sets the TermInYears field's value.

func (SavingsPlansPurchaseRecommendation) String added in v1.25.28

String returns the string representation

type SavingsPlansPurchaseRecommendationDetail added in v1.25.28

type SavingsPlansPurchaseRecommendationDetail struct {

	// The AccountID the recommendation is generated for.
	AccountId *string `type:"string"`

	// The currency code Amazon Web Services used to generate the recommendations
	// and present potential savings.
	CurrencyCode *string `type:"string"`

	// The average value of hourly On-Demand spend over the lookback period of the
	// applicable usage type.
	CurrentAverageHourlyOnDemandSpend *string `type:"string"`

	// The highest value of hourly On-Demand spend over the lookback period of the
	// applicable usage type.
	CurrentMaximumHourlyOnDemandSpend *string `type:"string"`

	// The lowest value of hourly On-Demand spend over the lookback period of the
	// applicable usage type.
	CurrentMinimumHourlyOnDemandSpend *string `type:"string"`

	// The estimated utilization of the recommended Savings Plans.
	EstimatedAverageUtilization *string `type:"string"`

	// The estimated monthly savings amount, based on the recommended Savings Plans.
	EstimatedMonthlySavingsAmount *string `type:"string"`

	// The remaining On-Demand cost estimated to not be covered by the recommended
	// Savings Plans, over the length of the lookback period.
	EstimatedOnDemandCost *string `type:"string"`

	// The estimated On-Demand costs you would expect with no additional commitment,
	// based on your usage of the selected time period and the Savings Plans you
	// own.
	EstimatedOnDemandCostWithCurrentCommitment *string `type:"string"`

	// The estimated return on investment based on the recommended Savings Plans
	// purchased. This is calculated as estimatedSavingsAmount/ estimatedSPCost*100.
	EstimatedROI *string `type:"string"`

	// The cost of the recommended Savings Plans over the length of the lookback
	// period.
	EstimatedSPCost *string `type:"string"`

	// The estimated savings amount based on the recommended Savings Plans over
	// the length of the lookback period.
	EstimatedSavingsAmount *string `type:"string"`

	// The estimated savings percentage relative to the total cost of applicable
	// On-Demand usage over the lookback period.
	EstimatedSavingsPercentage *string `type:"string"`

	// The recommended hourly commitment level for the Savings Plans type, and configuration
	// based on the usage during the lookback period.
	HourlyCommitmentToPurchase *string `type:"string"`

	// Details for your recommended Savings Plans.
	SavingsPlansDetails *SavingsPlansDetails `type:"structure"`

	// The upfront cost of the recommended Savings Plans, based on the selected
	// payment option.
	UpfrontCost *string `type:"string"`
	// contains filtered or unexported fields
}

Details for your recommended Savings Plans.

func (SavingsPlansPurchaseRecommendationDetail) GoString added in v1.25.28

GoString returns the string representation

func (*SavingsPlansPurchaseRecommendationDetail) SetAccountId added in v1.25.28

SetAccountId sets the AccountId field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetCurrencyCode added in v1.25.28

SetCurrencyCode sets the CurrencyCode field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetCurrentAverageHourlyOnDemandSpend added in v1.25.28

SetCurrentAverageHourlyOnDemandSpend sets the CurrentAverageHourlyOnDemandSpend field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetCurrentMaximumHourlyOnDemandSpend added in v1.25.28

SetCurrentMaximumHourlyOnDemandSpend sets the CurrentMaximumHourlyOnDemandSpend field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetCurrentMinimumHourlyOnDemandSpend added in v1.25.28

SetCurrentMinimumHourlyOnDemandSpend sets the CurrentMinimumHourlyOnDemandSpend field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetEstimatedAverageUtilization added in v1.25.28

SetEstimatedAverageUtilization sets the EstimatedAverageUtilization field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetEstimatedMonthlySavingsAmount added in v1.25.28

SetEstimatedMonthlySavingsAmount sets the EstimatedMonthlySavingsAmount field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetEstimatedOnDemandCost added in v1.25.28

SetEstimatedOnDemandCost sets the EstimatedOnDemandCost field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetEstimatedOnDemandCostWithCurrentCommitment added in v1.25.37

func (s *SavingsPlansPurchaseRecommendationDetail) SetEstimatedOnDemandCostWithCurrentCommitment(v string) *SavingsPlansPurchaseRecommendationDetail

SetEstimatedOnDemandCostWithCurrentCommitment sets the EstimatedOnDemandCostWithCurrentCommitment field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetEstimatedROI added in v1.25.28

SetEstimatedROI sets the EstimatedROI field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetEstimatedSPCost added in v1.25.28

SetEstimatedSPCost sets the EstimatedSPCost field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetEstimatedSavingsAmount added in v1.25.28

SetEstimatedSavingsAmount sets the EstimatedSavingsAmount field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetEstimatedSavingsPercentage added in v1.25.28

SetEstimatedSavingsPercentage sets the EstimatedSavingsPercentage field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetHourlyCommitmentToPurchase added in v1.25.28

SetHourlyCommitmentToPurchase sets the HourlyCommitmentToPurchase field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetSavingsPlansDetails added in v1.25.28

SetSavingsPlansDetails sets the SavingsPlansDetails field's value.

func (*SavingsPlansPurchaseRecommendationDetail) SetUpfrontCost added in v1.25.28

SetUpfrontCost sets the UpfrontCost field's value.

func (SavingsPlansPurchaseRecommendationDetail) String added in v1.25.28

String returns the string representation

type SavingsPlansPurchaseRecommendationMetadata added in v1.25.28

type SavingsPlansPurchaseRecommendationMetadata struct {

	// The timestamp showing when the recommendations were generated.
	GenerationTimestamp *string `type:"string"`

	// The unique identifier for the recommendation set.
	RecommendationId *string `type:"string"`
	// contains filtered or unexported fields
}

Metadata about your Savings Plans Purchase Recommendations.

func (SavingsPlansPurchaseRecommendationMetadata) GoString added in v1.25.28

GoString returns the string representation

func (*SavingsPlansPurchaseRecommendationMetadata) SetGenerationTimestamp added in v1.25.28

SetGenerationTimestamp sets the GenerationTimestamp field's value.

func (*SavingsPlansPurchaseRecommendationMetadata) SetRecommendationId added in v1.25.28

SetRecommendationId sets the RecommendationId field's value.

func (SavingsPlansPurchaseRecommendationMetadata) String added in v1.25.28

String returns the string representation

type SavingsPlansPurchaseRecommendationSummary added in v1.25.28

type SavingsPlansPurchaseRecommendationSummary struct {

	// The currency code Amazon Web Services used to generate the recommendations
	// and present potential savings.
	CurrencyCode *string `type:"string"`

	// The current total on demand spend of the applicable usage types over the
	// lookback period.
	CurrentOnDemandSpend *string `type:"string"`

	// The recommended Savings Plans cost on a daily (24 hourly) basis.
	DailyCommitmentToPurchase *string `type:"string"`

	// The estimated monthly savings amount, based on the recommended Savings Plans
	// purchase.
	EstimatedMonthlySavingsAmount *string `type:"string"`

	// The estimated On-Demand costs you would expect with no additional commitment,
	// based on your usage of the selected time period and the Savings Plans you
	// own.
	EstimatedOnDemandCostWithCurrentCommitment *string `type:"string"`

	// The estimated return on investment based on the recommended Savings Plans
	// and estimated savings.
	EstimatedROI *string `type:"string"`

	// The estimated total savings over the lookback period, based on the purchase
	// of the recommended Savings Plans.
	EstimatedSavingsAmount *string `type:"string"`

	// The estimated savings relative to the total cost of On-Demand usage, over
	// the lookback period. This is calculated as estimatedSavingsAmount/ CurrentOnDemandSpend*100.
	EstimatedSavingsPercentage *string `type:"string"`

	// The estimated total cost of the usage after purchasing the recommended Savings
	// Plans. This is a sum of the cost of Savings Plans during this term, and the
	// remaining On-Demand usage.
	EstimatedTotalCost *string `type:"string"`

	// The recommended hourly commitment based on the recommendation parameters.
	HourlyCommitmentToPurchase *string `type:"string"`

	// The aggregate number of Savings Plans recommendations that exist for your
	// account.
	TotalRecommendationCount *string `type:"string"`
	// contains filtered or unexported fields
}

Summary metrics for your Savings Plans Purchase Recommendations.

func (SavingsPlansPurchaseRecommendationSummary) GoString added in v1.25.28

GoString returns the string representation

func (*SavingsPlansPurchaseRecommendationSummary) SetCurrencyCode added in v1.25.28

SetCurrencyCode sets the CurrencyCode field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetCurrentOnDemandSpend added in v1.25.28

SetCurrentOnDemandSpend sets the CurrentOnDemandSpend field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetDailyCommitmentToPurchase added in v1.25.28

SetDailyCommitmentToPurchase sets the DailyCommitmentToPurchase field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetEstimatedMonthlySavingsAmount added in v1.25.28

SetEstimatedMonthlySavingsAmount sets the EstimatedMonthlySavingsAmount field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetEstimatedOnDemandCostWithCurrentCommitment added in v1.25.37

func (s *SavingsPlansPurchaseRecommendationSummary) SetEstimatedOnDemandCostWithCurrentCommitment(v string) *SavingsPlansPurchaseRecommendationSummary

SetEstimatedOnDemandCostWithCurrentCommitment sets the EstimatedOnDemandCostWithCurrentCommitment field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetEstimatedROI added in v1.25.28

SetEstimatedROI sets the EstimatedROI field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetEstimatedSavingsAmount added in v1.25.28

SetEstimatedSavingsAmount sets the EstimatedSavingsAmount field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetEstimatedSavingsPercentage added in v1.25.28

SetEstimatedSavingsPercentage sets the EstimatedSavingsPercentage field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetEstimatedTotalCost added in v1.25.28

SetEstimatedTotalCost sets the EstimatedTotalCost field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetHourlyCommitmentToPurchase added in v1.25.28

SetHourlyCommitmentToPurchase sets the HourlyCommitmentToPurchase field's value.

func (*SavingsPlansPurchaseRecommendationSummary) SetTotalRecommendationCount added in v1.25.28

SetTotalRecommendationCount sets the TotalRecommendationCount field's value.

func (SavingsPlansPurchaseRecommendationSummary) String added in v1.25.28

String returns the string representation

type SavingsPlansSavings added in v1.25.28

type SavingsPlansSavings struct {

	// The savings amount that you are accumulating for the usage that is covered
	// by a Savings Plans, when compared to the On-Demand equivalent of the same
	// usage.
	NetSavings *string `type:"string"`

	// How much the amount that the usage would have cost if it was accrued at the
	// On-Demand rate.
	OnDemandCostEquivalent *string `type:"string"`
	// contains filtered or unexported fields
}

The amount of savings you're accumulating, against the public On-Demand rate of the usage accrued in an account.

func (SavingsPlansSavings) GoString added in v1.25.28

func (s SavingsPlansSavings) GoString() string

GoString returns the string representation

func (*SavingsPlansSavings) SetNetSavings added in v1.25.28

func (s *SavingsPlansSavings) SetNetSavings(v string) *SavingsPlansSavings

SetNetSavings sets the NetSavings field's value.

func (*SavingsPlansSavings) SetOnDemandCostEquivalent added in v1.25.28

func (s *SavingsPlansSavings) SetOnDemandCostEquivalent(v string) *SavingsPlansSavings

SetOnDemandCostEquivalent sets the OnDemandCostEquivalent field's value.

func (SavingsPlansSavings) String added in v1.25.28

func (s SavingsPlansSavings) String() string

String returns the string representation

type SavingsPlansUtilization added in v1.25.28

type SavingsPlansUtilization struct {

	// The total amount of Savings Plans commitment that's been purchased in an
	// account (or set of accounts).
	TotalCommitment *string `type:"string"`

	// The amount of your Savings Plans commitment that was not consumed from Savings
	// Plans eligible usage in a specific period.
	UnusedCommitment *string `type:"string"`

	// The amount of your Savings Plans commitment that was consumed from Savings
	// Plans eligible usage in a specific period.
	UsedCommitment *string `type:"string"`

	// The amount of UsedCommitment divided by the TotalCommitment for your Savings
	// Plans.
	UtilizationPercentage *string `type:"string"`
	// contains filtered or unexported fields
}

The measurement of how well you are using your existing Savings Plans.

func (SavingsPlansUtilization) GoString added in v1.25.28

func (s SavingsPlansUtilization) GoString() string

GoString returns the string representation

func (*SavingsPlansUtilization) SetTotalCommitment added in v1.25.28

func (s *SavingsPlansUtilization) SetTotalCommitment(v string) *SavingsPlansUtilization

SetTotalCommitment sets the TotalCommitment field's value.

func (*SavingsPlansUtilization) SetUnusedCommitment added in v1.25.28

func (s *SavingsPlansUtilization) SetUnusedCommitment(v string) *SavingsPlansUtilization

SetUnusedCommitment sets the UnusedCommitment field's value.

func (*SavingsPlansUtilization) SetUsedCommitment added in v1.25.28

func (s *SavingsPlansUtilization) SetUsedCommitment(v string) *SavingsPlansUtilization

SetUsedCommitment sets the UsedCommitment field's value.

func (*SavingsPlansUtilization) SetUtilizationPercentage added in v1.25.28

func (s *SavingsPlansUtilization) SetUtilizationPercentage(v string) *SavingsPlansUtilization

SetUtilizationPercentage sets the UtilizationPercentage field's value.

func (SavingsPlansUtilization) String added in v1.25.28

func (s SavingsPlansUtilization) String() string

String returns the string representation

type SavingsPlansUtilizationAggregates added in v1.25.28

type SavingsPlansUtilizationAggregates struct {

	// The total amortized commitment for a Savings Plans. This includes the sum
	// of the upfront and recurring Savings Plans fees.
	AmortizedCommitment *SavingsPlansAmortizedCommitment `type:"structure"`

	// The amount saved by using existing Savings Plans. Savings returns both net
	// savings from Savings Plans, as well as the onDemandCostEquivalent of the
	// Savings Plans when considering the utilization rate.
	Savings *SavingsPlansSavings `type:"structure"`

	// A ratio of your effectiveness of using existing Savings Plans to apply to
	// workloads that are Savings Plans eligible.
	//
	// Utilization is a required field
	Utilization *SavingsPlansUtilization `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

The aggregated utilization metrics for your Savings Plans usage.

func (SavingsPlansUtilizationAggregates) GoString added in v1.25.28

GoString returns the string representation

func (*SavingsPlansUtilizationAggregates) SetAmortizedCommitment added in v1.25.28

SetAmortizedCommitment sets the AmortizedCommitment field's value.

func (*SavingsPlansUtilizationAggregates) SetSavings added in v1.25.28

SetSavings sets the Savings field's value.

func (*SavingsPlansUtilizationAggregates) SetUtilization added in v1.25.28

SetUtilization sets the Utilization field's value.

func (SavingsPlansUtilizationAggregates) String added in v1.25.28

String returns the string representation

type SavingsPlansUtilizationByTime added in v1.25.28

type SavingsPlansUtilizationByTime struct {

	// The total amortized commitment for a Savings Plans. This includes the sum
	// of the upfront and recurring Savings Plans fees.
	AmortizedCommitment *SavingsPlansAmortizedCommitment `type:"structure"`

	// The amount saved by using existing Savings Plans. Savings returns both net
	// savings from Savings Plans as well as the onDemandCostEquivalent of the Savings
	// Plans when considering the utilization rate.
	Savings *SavingsPlansSavings `type:"structure"`

	// The time period that you want the usage and costs for.
	//
	// TimePeriod is a required field
	TimePeriod *DateInterval `type:"structure" required:"true"`

	// A ratio of your effectiveness of using existing Savings Plans to apply to
	// workloads that are Savings Plans eligible.
	//
	// Utilization is a required field
	Utilization *SavingsPlansUtilization `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

The amount of Savings Plans utilization, in hours.

func (SavingsPlansUtilizationByTime) GoString added in v1.25.28

GoString returns the string representation

func (*SavingsPlansUtilizationByTime) SetAmortizedCommitment added in v1.25.28

SetAmortizedCommitment sets the AmortizedCommitment field's value.

func (*SavingsPlansUtilizationByTime) SetSavings added in v1.25.28

SetSavings sets the Savings field's value.

func (*SavingsPlansUtilizationByTime) SetTimePeriod added in v1.25.28

SetTimePeriod sets the TimePeriod field's value.

func (*SavingsPlansUtilizationByTime) SetUtilization added in v1.25.28

SetUtilization sets the Utilization field's value.

func (SavingsPlansUtilizationByTime) String added in v1.25.28

String returns the string representation

type SavingsPlansUtilizationDetail added in v1.25.28

type SavingsPlansUtilizationDetail struct {

	// The total amortized commitment for a Savings Plans. Includes the sum of the
	// upfront and recurring Savings Plans fees.
	AmortizedCommitment *SavingsPlansAmortizedCommitment `type:"structure"`

	// The attribute that applies to a specific Dimension.
	Attributes map[string]*string `type:"map"`

	// The amount saved by using existing Savings Plans. Savings returns both net
	// savings from savings plans as well as the onDemandCostEquivalent of the Savings
	// Plans when considering the utilization rate.
	Savings *SavingsPlansSavings `type:"structure"`

	// The unique Amazon Resource Name (ARN) for a particular Savings Plan.
	SavingsPlanArn *string `type:"string"`

	// A ratio of your effectiveness of using existing Savings Plans to apply to
	// workloads that are Savings Plans eligible.
	Utilization *SavingsPlansUtilization `type:"structure"`
	// contains filtered or unexported fields
}

A single daily or monthly Savings Plans utilization rate, and details for your account. Master accounts in an organization have access to member accounts. You can use GetDimensionValues to determine the possible dimension values.

func (SavingsPlansUtilizationDetail) GoString added in v1.25.28

GoString returns the string representation

func (*SavingsPlansUtilizationDetail) SetAmortizedCommitment added in v1.25.28

SetAmortizedCommitment sets the AmortizedCommitment field's value.

func (*SavingsPlansUtilizationDetail) SetAttributes added in v1.25.28

SetAttributes sets the Attributes field's value.

func (*SavingsPlansUtilizationDetail) SetSavings added in v1.25.28

SetSavings sets the Savings field's value.

func (*SavingsPlansUtilizationDetail) SetSavingsPlanArn added in v1.25.28

SetSavingsPlanArn sets the SavingsPlanArn field's value.

func (*SavingsPlansUtilizationDetail) SetUtilization added in v1.25.28

SetUtilization sets the Utilization field's value.

func (SavingsPlansUtilizationDetail) String added in v1.25.28

String returns the string representation

type ServiceQuotaExceededException added in v1.28.0

type ServiceQuotaExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"Message" type:"string"`
	// contains filtered or unexported fields
}

You've reached the limit on the number of resources you can create, or exceeded the size of an individual resources.

func (*ServiceQuotaExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*ServiceQuotaExceededException) Error added in v1.28.0

func (ServiceQuotaExceededException) GoString added in v1.28.0

GoString returns the string representation

func (*ServiceQuotaExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*ServiceQuotaExceededException) OrigErr added in v1.28.0

func (s *ServiceQuotaExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ServiceQuotaExceededException) RequestID added in v1.28.0

func (s *ServiceQuotaExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ServiceQuotaExceededException) StatusCode added in v1.28.0

func (s *ServiceQuotaExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ServiceQuotaExceededException) String added in v1.28.0

String returns the string representation

type ServiceSpecification added in v1.13.17

type ServiceSpecification struct {

	// The Amazon EC2 hardware specifications that you want AWS to provide recommendations
	// for.
	EC2Specification *EC2Specification `type:"structure"`
	// contains filtered or unexported fields
}

Hardware specifications for the service that you want recommendations for.

func (ServiceSpecification) GoString added in v1.13.17

func (s ServiceSpecification) GoString() string

GoString returns the string representation

func (*ServiceSpecification) SetEC2Specification added in v1.13.17

func (s *ServiceSpecification) SetEC2Specification(v *EC2Specification) *ServiceSpecification

SetEC2Specification sets the EC2Specification field's value.

func (ServiceSpecification) String added in v1.13.17

func (s ServiceSpecification) String() string

String returns the string representation

type TagValues

type TagValues struct {

	// The key for the tag.
	Key *string `type:"string"`

	// The match options that you can use to filter your results. MatchOptions is
	// only applicable for only applicable for actions related to Cost Category.
	// The default values for MatchOptions is EQUALS and CASE_SENSITIVE.
	MatchOptions []*string `type:"list"`

	// The specific value of the tag.
	Values []*string `type:"list"`
	// contains filtered or unexported fields
}

The values that are available for a tag.

func (TagValues) GoString

func (s TagValues) GoString() string

GoString returns the string representation

func (*TagValues) SetKey

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

SetKey sets the Key field's value.

func (*TagValues) SetMatchOptions added in v1.30.10

func (s *TagValues) SetMatchOptions(v []*string) *TagValues

SetMatchOptions sets the MatchOptions field's value.

func (*TagValues) SetValues

func (s *TagValues) SetValues(v []*string) *TagValues

SetValues sets the Values field's value.

func (TagValues) String

func (s TagValues) String() string

String returns the string representation

type TargetInstance added in v1.21.6

type TargetInstance struct {

	// The currency code that Amazon Web Services used to calculate the costs for
	// this instance.
	CurrencyCode *string `type:"string"`

	// Indicates whether or not this recommendation is the defaulted Amazon Web
	// Services recommendation.
	DefaultTargetInstance *bool `type:"boolean"`

	// Expected cost to operate this instance type on a monthly basis.
	EstimatedMonthlyCost *string `type:"string"`

	// Estimated savings resulting from modification, on a monthly basis.
	EstimatedMonthlySavings *string `type:"string"`

	// Expected utilization metrics for target instance type.
	ExpectedResourceUtilization *ResourceUtilization `type:"structure"`

	// Details on the target instance type.
	ResourceDetails *ResourceDetails `type:"structure"`
	// contains filtered or unexported fields
}

Details on recommended instance.

func (TargetInstance) GoString added in v1.21.6

func (s TargetInstance) GoString() string

GoString returns the string representation

func (*TargetInstance) SetCurrencyCode added in v1.21.6

func (s *TargetInstance) SetCurrencyCode(v string) *TargetInstance

SetCurrencyCode sets the CurrencyCode field's value.

func (*TargetInstance) SetDefaultTargetInstance added in v1.21.6

func (s *TargetInstance) SetDefaultTargetInstance(v bool) *TargetInstance

SetDefaultTargetInstance sets the DefaultTargetInstance field's value.

func (*TargetInstance) SetEstimatedMonthlyCost added in v1.21.6

func (s *TargetInstance) SetEstimatedMonthlyCost(v string) *TargetInstance

SetEstimatedMonthlyCost sets the EstimatedMonthlyCost field's value.

func (*TargetInstance) SetEstimatedMonthlySavings added in v1.21.6

func (s *TargetInstance) SetEstimatedMonthlySavings(v string) *TargetInstance

SetEstimatedMonthlySavings sets the EstimatedMonthlySavings field's value.

func (*TargetInstance) SetExpectedResourceUtilization added in v1.21.6

func (s *TargetInstance) SetExpectedResourceUtilization(v *ResourceUtilization) *TargetInstance

SetExpectedResourceUtilization sets the ExpectedResourceUtilization field's value.

func (*TargetInstance) SetResourceDetails added in v1.21.6

func (s *TargetInstance) SetResourceDetails(v *ResourceDetails) *TargetInstance

SetResourceDetails sets the ResourceDetails field's value.

func (TargetInstance) String added in v1.21.6

func (s TargetInstance) String() string

String returns the string representation

type TerminateRecommendationDetail added in v1.21.6

type TerminateRecommendationDetail struct {

	// The currency code that Amazon Web Services used to calculate the costs for
	// this instance.
	CurrencyCode *string `type:"string"`

	// Estimated savings resulting from modification, on a monthly basis.
	EstimatedMonthlySavings *string `type:"string"`
	// contains filtered or unexported fields
}

Details on termination recommendation.

func (TerminateRecommendationDetail) GoString added in v1.21.6

GoString returns the string representation

func (*TerminateRecommendationDetail) SetCurrencyCode added in v1.21.6

SetCurrencyCode sets the CurrencyCode field's value.

func (*TerminateRecommendationDetail) SetEstimatedMonthlySavings added in v1.21.6

func (s *TerminateRecommendationDetail) SetEstimatedMonthlySavings(v string) *TerminateRecommendationDetail

SetEstimatedMonthlySavings sets the EstimatedMonthlySavings field's value.

func (TerminateRecommendationDetail) String added in v1.21.6

String returns the string representation

type UnresolvableUsageUnitException added in v1.28.0

type UnresolvableUsageUnitException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"Message" type:"string"`
	// contains filtered or unexported fields
}

Cost Explorer was unable to identify the usage unit. Provide UsageType/UsageTypeGroup filter selections that contain matching units, for example: hours.

func (*UnresolvableUsageUnitException) Code added in v1.28.0

Code returns the exception type name.

func (*UnresolvableUsageUnitException) Error added in v1.28.0

func (UnresolvableUsageUnitException) GoString added in v1.28.0

GoString returns the string representation

func (*UnresolvableUsageUnitException) Message added in v1.28.0

Message returns the exception's message.

func (*UnresolvableUsageUnitException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*UnresolvableUsageUnitException) RequestID added in v1.28.0

func (s *UnresolvableUsageUnitException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*UnresolvableUsageUnitException) StatusCode added in v1.28.0

func (s *UnresolvableUsageUnitException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (UnresolvableUsageUnitException) String added in v1.28.0

String returns the string representation

type UpdateCostCategoryDefinitionInput added in v1.25.42

type UpdateCostCategoryDefinitionInput struct {

	// The unique identifier for your Cost Category.
	//
	// CostCategoryArn is a required field
	CostCategoryArn *string `min:"20" type:"string" required:"true"`

	// The rule schema version in this particular Cost Category.
	//
	// RuleVersion is a required field
	RuleVersion *string `type:"string" required:"true" enum:"CostCategoryRuleVersion"`

	// The Expression object used to categorize costs. For more information, see
	// CostCategoryRule (https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_CostCategoryRule.html).
	//
	// Rules is a required field
	Rules []*CostCategoryRule `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateCostCategoryDefinitionInput) GoString added in v1.25.42

GoString returns the string representation

func (*UpdateCostCategoryDefinitionInput) SetCostCategoryArn added in v1.25.42

SetCostCategoryArn sets the CostCategoryArn field's value.

func (*UpdateCostCategoryDefinitionInput) SetRuleVersion added in v1.25.42

SetRuleVersion sets the RuleVersion field's value.

func (*UpdateCostCategoryDefinitionInput) SetRules added in v1.25.42

SetRules sets the Rules field's value.

func (UpdateCostCategoryDefinitionInput) String added in v1.25.42

String returns the string representation

func (*UpdateCostCategoryDefinitionInput) Validate added in v1.25.42

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

type UpdateCostCategoryDefinitionOutput added in v1.25.42

type UpdateCostCategoryDefinitionOutput struct {

	// The unique identifier for your Cost Category.
	CostCategoryArn *string `min:"20" type:"string"`

	// The Cost Category's effective start date.
	EffectiveStart *string `min:"20" type:"string"`
	// contains filtered or unexported fields
}

func (UpdateCostCategoryDefinitionOutput) GoString added in v1.25.42

GoString returns the string representation

func (*UpdateCostCategoryDefinitionOutput) SetCostCategoryArn added in v1.25.42

SetCostCategoryArn sets the CostCategoryArn field's value.

func (*UpdateCostCategoryDefinitionOutput) SetEffectiveStart added in v1.25.42

SetEffectiveStart sets the EffectiveStart field's value.

func (UpdateCostCategoryDefinitionOutput) String added in v1.25.42

String returns the string representation

type UtilizationByTime

type UtilizationByTime struct {

	// The groups that this utilization result uses.
	Groups []*ReservationUtilizationGroup `type:"list"`

	// The period of time that this utilization was used for.
	TimePeriod *DateInterval `type:"structure"`

	// The total number of reservation hours that were used.
	Total *ReservationAggregates `type:"structure"`
	// contains filtered or unexported fields
}

The amount of utilization, in hours.

func (UtilizationByTime) GoString

func (s UtilizationByTime) GoString() string

GoString returns the string representation

func (*UtilizationByTime) SetGroups

SetGroups sets the Groups field's value.

func (*UtilizationByTime) SetTimePeriod

func (s *UtilizationByTime) SetTimePeriod(v *DateInterval) *UtilizationByTime

SetTimePeriod sets the TimePeriod field's value.

func (*UtilizationByTime) SetTotal

SetTotal sets the Total field's value.

func (UtilizationByTime) String

func (s UtilizationByTime) String() string

String returns the string representation

Directories

Path Synopsis
Package costexploreriface provides an interface to enable mocking the AWS Cost Explorer Service service client for testing your code.
Package costexploreriface provides an interface to enable mocking the AWS Cost Explorer Service service client for testing your code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL