appmesh

package
v1.33.8 Latest Latest
Warning

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

Go to latest
Published: Jul 20, 2020 License: Apache-2.0 Imports: 10 Imported by: 66

Documentation

Overview

Package appmesh provides the client and types for making API requests to AWS App Mesh.

AWS App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility and helping to ensure high availability for your applications.

App Mesh gives you consistent visibility and network traffic controls for every microservice in an application. You can use App Mesh with AWS Fargate, Amazon ECS, Amazon EKS, Kubernetes on AWS, and Amazon EC2.

App Mesh supports microservice applications that use service discovery naming for their components. For more information about service discovery on Amazon ECS, see Service Discovery (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html) in the Amazon Elastic Container Service Developer Guide. Kubernetes kube-dns and coredns are supported. For more information, see DNS for Services and Pods (https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/) in the Kubernetes documentation.

See https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25 for more information on this service.

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

Using the Client

To contact AWS App Mesh 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 App Mesh client AppMesh for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/appmesh/#New

Index

Constants

View Source
const (
	// DurationUnitMs is a DurationUnit enum value
	DurationUnitMs = "ms"

	// DurationUnitS is a DurationUnit enum value
	DurationUnitS = "s"
)
View Source
const (
	// EgressFilterTypeAllowAll is a EgressFilterType enum value
	EgressFilterTypeAllowAll = "ALLOW_ALL"

	// EgressFilterTypeDropAll is a EgressFilterType enum value
	EgressFilterTypeDropAll = "DROP_ALL"
)
View Source
const (
	// GatewayRouteStatusCodeActive is a GatewayRouteStatusCode enum value
	GatewayRouteStatusCodeActive = "ACTIVE"

	// GatewayRouteStatusCodeDeleted is a GatewayRouteStatusCode enum value
	GatewayRouteStatusCodeDeleted = "DELETED"

	// GatewayRouteStatusCodeInactive is a GatewayRouteStatusCode enum value
	GatewayRouteStatusCodeInactive = "INACTIVE"
)
View Source
const (
	// GrpcRetryPolicyEventCancelled is a GrpcRetryPolicyEvent enum value
	GrpcRetryPolicyEventCancelled = "cancelled"

	// GrpcRetryPolicyEventDeadlineExceeded is a GrpcRetryPolicyEvent enum value
	GrpcRetryPolicyEventDeadlineExceeded = "deadline-exceeded"

	// GrpcRetryPolicyEventInternal is a GrpcRetryPolicyEvent enum value
	GrpcRetryPolicyEventInternal = "internal"

	// GrpcRetryPolicyEventResourceExhausted is a GrpcRetryPolicyEvent enum value
	GrpcRetryPolicyEventResourceExhausted = "resource-exhausted"

	// GrpcRetryPolicyEventUnavailable is a GrpcRetryPolicyEvent enum value
	GrpcRetryPolicyEventUnavailable = "unavailable"
)
View Source
const (
	// HttpMethodConnect is a HttpMethod enum value
	HttpMethodConnect = "CONNECT"

	// HttpMethodDelete is a HttpMethod enum value
	HttpMethodDelete = "DELETE"

	// HttpMethodGet is a HttpMethod enum value
	HttpMethodGet = "GET"

	// HttpMethodHead is a HttpMethod enum value
	HttpMethodHead = "HEAD"

	// HttpMethodOptions is a HttpMethod enum value
	HttpMethodOptions = "OPTIONS"

	// HttpMethodPatch is a HttpMethod enum value
	HttpMethodPatch = "PATCH"

	// HttpMethodPost is a HttpMethod enum value
	HttpMethodPost = "POST"

	// HttpMethodPut is a HttpMethod enum value
	HttpMethodPut = "PUT"

	// HttpMethodTrace is a HttpMethod enum value
	HttpMethodTrace = "TRACE"
)
View Source
const (
	// HttpSchemeHttp is a HttpScheme enum value
	HttpSchemeHttp = "http"

	// HttpSchemeHttps is a HttpScheme enum value
	HttpSchemeHttps = "https"
)
View Source
const (
	// ListenerTlsModeDisabled is a ListenerTlsMode enum value
	ListenerTlsModeDisabled = "DISABLED"

	// ListenerTlsModePermissive is a ListenerTlsMode enum value
	ListenerTlsModePermissive = "PERMISSIVE"

	// ListenerTlsModeStrict is a ListenerTlsMode enum value
	ListenerTlsModeStrict = "STRICT"
)
View Source
const (
	// MeshStatusCodeActive is a MeshStatusCode enum value
	MeshStatusCodeActive = "ACTIVE"

	// MeshStatusCodeDeleted is a MeshStatusCode enum value
	MeshStatusCodeDeleted = "DELETED"

	// MeshStatusCodeInactive is a MeshStatusCode enum value
	MeshStatusCodeInactive = "INACTIVE"
)
View Source
const (
	// PortProtocolGrpc is a PortProtocol enum value
	PortProtocolGrpc = "grpc"

	// PortProtocolHttp is a PortProtocol enum value
	PortProtocolHttp = "http"

	// PortProtocolHttp2 is a PortProtocol enum value
	PortProtocolHttp2 = "http2"

	// PortProtocolTcp is a PortProtocol enum value
	PortProtocolTcp = "tcp"
)
View Source
const (
	// RouteStatusCodeActive is a RouteStatusCode enum value
	RouteStatusCodeActive = "ACTIVE"

	// RouteStatusCodeDeleted is a RouteStatusCode enum value
	RouteStatusCodeDeleted = "DELETED"

	// RouteStatusCodeInactive is a RouteStatusCode enum value
	RouteStatusCodeInactive = "INACTIVE"
)
View Source
const (
	// VirtualGatewayListenerTlsModeDisabled is a VirtualGatewayListenerTlsMode enum value
	VirtualGatewayListenerTlsModeDisabled = "DISABLED"

	// VirtualGatewayListenerTlsModePermissive is a VirtualGatewayListenerTlsMode enum value
	VirtualGatewayListenerTlsModePermissive = "PERMISSIVE"

	// VirtualGatewayListenerTlsModeStrict is a VirtualGatewayListenerTlsMode enum value
	VirtualGatewayListenerTlsModeStrict = "STRICT"
)
View Source
const (
	// VirtualGatewayPortProtocolGrpc is a VirtualGatewayPortProtocol enum value
	VirtualGatewayPortProtocolGrpc = "grpc"

	// VirtualGatewayPortProtocolHttp is a VirtualGatewayPortProtocol enum value
	VirtualGatewayPortProtocolHttp = "http"

	// VirtualGatewayPortProtocolHttp2 is a VirtualGatewayPortProtocol enum value
	VirtualGatewayPortProtocolHttp2 = "http2"
)
View Source
const (
	// VirtualGatewayStatusCodeActive is a VirtualGatewayStatusCode enum value
	VirtualGatewayStatusCodeActive = "ACTIVE"

	// VirtualGatewayStatusCodeDeleted is a VirtualGatewayStatusCode enum value
	VirtualGatewayStatusCodeDeleted = "DELETED"

	// VirtualGatewayStatusCodeInactive is a VirtualGatewayStatusCode enum value
	VirtualGatewayStatusCodeInactive = "INACTIVE"
)
View Source
const (
	// VirtualNodeStatusCodeActive is a VirtualNodeStatusCode enum value
	VirtualNodeStatusCodeActive = "ACTIVE"

	// VirtualNodeStatusCodeDeleted is a VirtualNodeStatusCode enum value
	VirtualNodeStatusCodeDeleted = "DELETED"

	// VirtualNodeStatusCodeInactive is a VirtualNodeStatusCode enum value
	VirtualNodeStatusCodeInactive = "INACTIVE"
)
View Source
const (
	// VirtualRouterStatusCodeActive is a VirtualRouterStatusCode enum value
	VirtualRouterStatusCodeActive = "ACTIVE"

	// VirtualRouterStatusCodeDeleted is a VirtualRouterStatusCode enum value
	VirtualRouterStatusCodeDeleted = "DELETED"

	// VirtualRouterStatusCodeInactive is a VirtualRouterStatusCode enum value
	VirtualRouterStatusCodeInactive = "INACTIVE"
)
View Source
const (
	// VirtualServiceStatusCodeActive is a VirtualServiceStatusCode enum value
	VirtualServiceStatusCodeActive = "ACTIVE"

	// VirtualServiceStatusCodeDeleted is a VirtualServiceStatusCode enum value
	VirtualServiceStatusCodeDeleted = "DELETED"

	// VirtualServiceStatusCodeInactive is a VirtualServiceStatusCode enum value
	VirtualServiceStatusCodeInactive = "INACTIVE"
)
View Source
const (

	// ErrCodeBadRequestException for service response error code
	// "BadRequestException".
	//
	// The request syntax was malformed. Check your request syntax and try again.
	ErrCodeBadRequestException = "BadRequestException"

	// ErrCodeConflictException for service response error code
	// "ConflictException".
	//
	// The request contains a client token that was used for a previous update resource
	// call with different specifications. Try the request again with a new client
	// token.
	ErrCodeConflictException = "ConflictException"

	// ErrCodeForbiddenException for service response error code
	// "ForbiddenException".
	//
	// You don't have permissions to perform this action.
	ErrCodeForbiddenException = "ForbiddenException"

	// ErrCodeInternalServerErrorException for service response error code
	// "InternalServerErrorException".
	//
	// The request processing has failed because of an unknown error, exception,
	// or failure.
	ErrCodeInternalServerErrorException = "InternalServerErrorException"

	// ErrCodeLimitExceededException for service response error code
	// "LimitExceededException".
	//
	// You have exceeded a service limit for your account. For more information,
	// see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html)
	// in the AWS App Mesh User Guide.
	ErrCodeLimitExceededException = "LimitExceededException"

	// ErrCodeNotFoundException for service response error code
	// "NotFoundException".
	//
	// The specified resource doesn't exist. Check your request syntax and try again.
	ErrCodeNotFoundException = "NotFoundException"

	// ErrCodeResourceInUseException for service response error code
	// "ResourceInUseException".
	//
	// You can't delete the specified resource because it's in use or required by
	// another resource.
	ErrCodeResourceInUseException = "ResourceInUseException"

	// ErrCodeServiceUnavailableException for service response error code
	// "ServiceUnavailableException".
	//
	// The request has failed due to a temporary failure of the service.
	ErrCodeServiceUnavailableException = "ServiceUnavailableException"

	// ErrCodeTooManyRequestsException for service response error code
	// "TooManyRequestsException".
	//
	// The maximum request rate permitted by the App Mesh APIs has been exceeded
	// for your account. For best results, use an increasing or variable sleep interval
	// between requests.
	ErrCodeTooManyRequestsException = "TooManyRequestsException"

	// ErrCodeTooManyTagsException for service response error code
	// "TooManyTagsException".
	//
	// The request exceeds the maximum allowed number of tags allowed per resource.
	// The current limit is 50 user tags per resource. You must reduce the number
	// of tags in the request. None of the tags in this request were applied.
	ErrCodeTooManyTagsException = "TooManyTagsException"
)
View Source
const (
	ServiceName = "App Mesh" // Name of service.
	EndpointsID = "appmesh"  // ID to lookup a service endpoint with.
	ServiceID   = "App Mesh" // ServiceID is a unique identifier of a specific service.
)

Service information constants

View Source
const (
	// TcpRetryPolicyEventConnectionError is a TcpRetryPolicyEvent enum value
	TcpRetryPolicyEventConnectionError = "connection-error"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessLog added in v1.19.3

type AccessLog struct {

	// An object that represents an access log file.
	File *FileAccessLog `locationName:"file" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the access logging information for a virtual node.

func (AccessLog) GoString added in v1.19.3

func (s AccessLog) GoString() string

GoString returns the string representation

func (*AccessLog) SetFile added in v1.19.3

func (s *AccessLog) SetFile(v *FileAccessLog) *AccessLog

SetFile sets the File field's value.

func (AccessLog) String added in v1.19.3

func (s AccessLog) String() string

String returns the string representation

func (*AccessLog) Validate added in v1.19.3

func (s *AccessLog) Validate() error

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

type AppMesh

type AppMesh struct {
	*client.Client
}

AppMesh provides the API operation methods for making requests to AWS App Mesh. See this package's package overview docs for details on the service.

AppMesh 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) *AppMesh

New creates a new instance of the AppMesh 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 AppMesh client from just a session.
svc := appmesh.New(mySession)

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

func (*AppMesh) CreateGatewayRoute added in v1.33.5

func (c *AppMesh) CreateGatewayRoute(input *CreateGatewayRouteInput) (*CreateGatewayRouteOutput, error)

CreateGatewayRoute API operation for AWS App Mesh.

Creates a gateway route.

A gateway route is attached to a virtual gateway and routes traffic to an existing virtual service. If a route matches a request, it can distribute traffic to a target virtual service.

For more information about gateway routes, see Gateway routes (https://docs.aws.amazon.com/app-mesh/latest/userguide/gateway-routes.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 App Mesh's API operation CreateGatewayRoute for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateGatewayRoute

func (*AppMesh) CreateGatewayRouteRequest added in v1.33.5

func (c *AppMesh) CreateGatewayRouteRequest(input *CreateGatewayRouteInput) (req *request.Request, output *CreateGatewayRouteOutput)

CreateGatewayRouteRequest generates a "aws/request.Request" representing the client's request for the CreateGatewayRoute 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 CreateGatewayRoute for more information on using the CreateGatewayRoute 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 CreateGatewayRouteRequest method.
req, resp := client.CreateGatewayRouteRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateGatewayRoute

func (*AppMesh) CreateGatewayRouteWithContext added in v1.33.5

func (c *AppMesh) CreateGatewayRouteWithContext(ctx aws.Context, input *CreateGatewayRouteInput, opts ...request.Option) (*CreateGatewayRouteOutput, error)

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

See CreateGatewayRoute 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 (*AppMesh) CreateMesh

func (c *AppMesh) CreateMesh(input *CreateMeshInput) (*CreateMeshOutput, error)

CreateMesh API operation for AWS App Mesh.

Creates a service mesh.

A service mesh is a logical boundary for network traffic between services that are represented by resources within the mesh. After you create your service mesh, you can create virtual services, virtual nodes, virtual routers, and routes to distribute traffic between the applications in your mesh.

For more information about service meshes, see Service meshes (https://docs.aws.amazon.com/app-mesh/latest/userguide/meshes.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 App Mesh's API operation CreateMesh for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateMesh

func (*AppMesh) CreateMeshRequest

func (c *AppMesh) CreateMeshRequest(input *CreateMeshInput) (req *request.Request, output *CreateMeshOutput)

CreateMeshRequest generates a "aws/request.Request" representing the client's request for the CreateMesh 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 CreateMesh for more information on using the CreateMesh 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 CreateMeshRequest method.
req, resp := client.CreateMeshRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateMesh

func (*AppMesh) CreateMeshWithContext

func (c *AppMesh) CreateMeshWithContext(ctx aws.Context, input *CreateMeshInput, opts ...request.Option) (*CreateMeshOutput, error)

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

See CreateMesh 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 (*AppMesh) CreateRoute

func (c *AppMesh) CreateRoute(input *CreateRouteInput) (*CreateRouteOutput, error)

CreateRoute API operation for AWS App Mesh.

Creates a route that is associated with a virtual router.

You can route several different protocols and define a retry policy for a route. Traffic can be routed to one or more virtual nodes.

For more information about routes, see Routes (https://docs.aws.amazon.com/app-mesh/latest/userguide/routes.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 App Mesh's API operation CreateRoute for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateRoute

func (*AppMesh) CreateRouteRequest

func (c *AppMesh) CreateRouteRequest(input *CreateRouteInput) (req *request.Request, output *CreateRouteOutput)

CreateRouteRequest generates a "aws/request.Request" representing the client's request for the CreateRoute 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 CreateRoute for more information on using the CreateRoute 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 CreateRouteRequest method.
req, resp := client.CreateRouteRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateRoute

func (*AppMesh) CreateRouteWithContext

func (c *AppMesh) CreateRouteWithContext(ctx aws.Context, input *CreateRouteInput, opts ...request.Option) (*CreateRouteOutput, error)

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

See CreateRoute 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 (*AppMesh) CreateVirtualGateway added in v1.33.5

func (c *AppMesh) CreateVirtualGateway(input *CreateVirtualGatewayInput) (*CreateVirtualGatewayOutput, error)

CreateVirtualGateway API operation for AWS App Mesh.

Creates a virtual gateway.

A virtual gateway allows resources outside your mesh to communicate to resources that are inside your mesh. The virtual gateway represents an Envoy proxy running in an Amazon ECS task, in a Kubernetes service, or on an Amazon EC2 instance. Unlike a virtual node, which represents an Envoy running with an application, a virtual gateway represents Envoy deployed by itself.

For more information about virtual gateways, see Virtual gateways (https://docs.aws.amazon.com/app-mesh/latest/userguide/virtual_gateways.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 App Mesh's API operation CreateVirtualGateway for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualGateway

func (*AppMesh) CreateVirtualGatewayRequest added in v1.33.5

func (c *AppMesh) CreateVirtualGatewayRequest(input *CreateVirtualGatewayInput) (req *request.Request, output *CreateVirtualGatewayOutput)

CreateVirtualGatewayRequest generates a "aws/request.Request" representing the client's request for the CreateVirtualGateway 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 CreateVirtualGateway for more information on using the CreateVirtualGateway 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 CreateVirtualGatewayRequest method.
req, resp := client.CreateVirtualGatewayRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualGateway

func (*AppMesh) CreateVirtualGatewayWithContext added in v1.33.5

func (c *AppMesh) CreateVirtualGatewayWithContext(ctx aws.Context, input *CreateVirtualGatewayInput, opts ...request.Option) (*CreateVirtualGatewayOutput, error)

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

See CreateVirtualGateway 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 (*AppMesh) CreateVirtualNode

func (c *AppMesh) CreateVirtualNode(input *CreateVirtualNodeInput) (*CreateVirtualNodeOutput, error)

CreateVirtualNode API operation for AWS App Mesh.

Creates a virtual node within a service mesh.

A virtual node acts as a logical pointer to a particular task group, such as an Amazon ECS service or a Kubernetes deployment. When you create a virtual node, you can specify the service discovery information for your task group, and whether the proxy running in a task group will communicate with other proxies using Transport Layer Security (TLS).

You define a listener for any inbound traffic that your virtual node expects. Any virtual service that your virtual node expects to communicate to is specified as a backend.

The response metadata for your new virtual node contains the arn that is associated with the virtual node. Set this value (either the full ARN or the truncated resource name: for example, mesh/default/virtualNode/simpleapp) as the APPMESH_VIRTUAL_NODE_NAME environment variable for your task group's Envoy proxy container in your task definition or pod spec. This is then mapped to the node.id and node.cluster Envoy parameters.

If you require your Envoy stats or tracing to use a different name, you can override the node.cluster value that is set by APPMESH_VIRTUAL_NODE_NAME with the APPMESH_VIRTUAL_NODE_CLUSTER environment variable.

For more information about virtual nodes, see Virtual nodes (https://docs.aws.amazon.com/app-mesh/latest/userguide/virtual_nodes.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 App Mesh's API operation CreateVirtualNode for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualNode

func (*AppMesh) CreateVirtualNodeRequest

func (c *AppMesh) CreateVirtualNodeRequest(input *CreateVirtualNodeInput) (req *request.Request, output *CreateVirtualNodeOutput)

CreateVirtualNodeRequest generates a "aws/request.Request" representing the client's request for the CreateVirtualNode 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 CreateVirtualNode for more information on using the CreateVirtualNode 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 CreateVirtualNodeRequest method.
req, resp := client.CreateVirtualNodeRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualNode

func (*AppMesh) CreateVirtualNodeWithContext

func (c *AppMesh) CreateVirtualNodeWithContext(ctx aws.Context, input *CreateVirtualNodeInput, opts ...request.Option) (*CreateVirtualNodeOutput, error)

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

See CreateVirtualNode 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 (*AppMesh) CreateVirtualRouter

func (c *AppMesh) CreateVirtualRouter(input *CreateVirtualRouterInput) (*CreateVirtualRouterOutput, error)

CreateVirtualRouter API operation for AWS App Mesh.

Creates a virtual router within a service mesh.

Specify a listener for any inbound traffic that your virtual router receives. Create a virtual router for each protocol and port that you need to route. Virtual routers handle traffic for one or more virtual services within your mesh. After you create your virtual router, create and associate routes for your virtual router that direct incoming requests to different virtual nodes.

For more information about virtual routers, see Virtual routers (https://docs.aws.amazon.com/app-mesh/latest/userguide/virtual_routers.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 App Mesh's API operation CreateVirtualRouter for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualRouter

func (*AppMesh) CreateVirtualRouterRequest

func (c *AppMesh) CreateVirtualRouterRequest(input *CreateVirtualRouterInput) (req *request.Request, output *CreateVirtualRouterOutput)

CreateVirtualRouterRequest generates a "aws/request.Request" representing the client's request for the CreateVirtualRouter 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 CreateVirtualRouter for more information on using the CreateVirtualRouter 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 CreateVirtualRouterRequest method.
req, resp := client.CreateVirtualRouterRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualRouter

func (*AppMesh) CreateVirtualRouterWithContext

func (c *AppMesh) CreateVirtualRouterWithContext(ctx aws.Context, input *CreateVirtualRouterInput, opts ...request.Option) (*CreateVirtualRouterOutput, error)

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

See CreateVirtualRouter 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 (*AppMesh) CreateVirtualService added in v1.17.13

func (c *AppMesh) CreateVirtualService(input *CreateVirtualServiceInput) (*CreateVirtualServiceOutput, error)

CreateVirtualService API operation for AWS App Mesh.

Creates a virtual service within a service mesh.

A virtual service is an abstraction of a real service that is provided by a virtual node directly or indirectly by means of a virtual router. Dependent services call your virtual service by its virtualServiceName, and those requests are routed to the virtual node or virtual router that is specified as the provider for the virtual service.

For more information about virtual services, see Virtual services (https://docs.aws.amazon.com/app-mesh/latest/userguide/virtual_services.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 App Mesh's API operation CreateVirtualService for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualService

func (*AppMesh) CreateVirtualServiceRequest added in v1.17.13

func (c *AppMesh) CreateVirtualServiceRequest(input *CreateVirtualServiceInput) (req *request.Request, output *CreateVirtualServiceOutput)

CreateVirtualServiceRequest generates a "aws/request.Request" representing the client's request for the CreateVirtualService 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 CreateVirtualService for more information on using the CreateVirtualService 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 CreateVirtualServiceRequest method.
req, resp := client.CreateVirtualServiceRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualService

func (*AppMesh) CreateVirtualServiceWithContext added in v1.17.13

func (c *AppMesh) CreateVirtualServiceWithContext(ctx aws.Context, input *CreateVirtualServiceInput, opts ...request.Option) (*CreateVirtualServiceOutput, error)

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

See CreateVirtualService 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 (*AppMesh) DeleteGatewayRoute added in v1.33.5

func (c *AppMesh) DeleteGatewayRoute(input *DeleteGatewayRouteInput) (*DeleteGatewayRouteOutput, error)

DeleteGatewayRoute API operation for AWS App Mesh.

Deletes an existing gateway route.

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 App Mesh's API operation DeleteGatewayRoute for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ResourceInUseException You can't delete the specified resource because it's in use or required by another resource.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteGatewayRoute

func (*AppMesh) DeleteGatewayRouteRequest added in v1.33.5

func (c *AppMesh) DeleteGatewayRouteRequest(input *DeleteGatewayRouteInput) (req *request.Request, output *DeleteGatewayRouteOutput)

DeleteGatewayRouteRequest generates a "aws/request.Request" representing the client's request for the DeleteGatewayRoute 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 DeleteGatewayRoute for more information on using the DeleteGatewayRoute 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 DeleteGatewayRouteRequest method.
req, resp := client.DeleteGatewayRouteRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteGatewayRoute

func (*AppMesh) DeleteGatewayRouteWithContext added in v1.33.5

func (c *AppMesh) DeleteGatewayRouteWithContext(ctx aws.Context, input *DeleteGatewayRouteInput, opts ...request.Option) (*DeleteGatewayRouteOutput, error)

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

See DeleteGatewayRoute 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 (*AppMesh) DeleteMesh

func (c *AppMesh) DeleteMesh(input *DeleteMeshInput) (*DeleteMeshOutput, error)

DeleteMesh API operation for AWS App Mesh.

Deletes an existing service mesh.

You must delete all resources (virtual services, routes, virtual routers, and virtual nodes) in the service mesh before you can delete the mesh itself.

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 App Mesh's API operation DeleteMesh for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ResourceInUseException You can't delete the specified resource because it's in use or required by another resource.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteMesh

func (*AppMesh) DeleteMeshRequest

func (c *AppMesh) DeleteMeshRequest(input *DeleteMeshInput) (req *request.Request, output *DeleteMeshOutput)

DeleteMeshRequest generates a "aws/request.Request" representing the client's request for the DeleteMesh 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 DeleteMesh for more information on using the DeleteMesh 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 DeleteMeshRequest method.
req, resp := client.DeleteMeshRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteMesh

func (*AppMesh) DeleteMeshWithContext

func (c *AppMesh) DeleteMeshWithContext(ctx aws.Context, input *DeleteMeshInput, opts ...request.Option) (*DeleteMeshOutput, error)

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

See DeleteMesh 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 (*AppMesh) DeleteRoute

func (c *AppMesh) DeleteRoute(input *DeleteRouteInput) (*DeleteRouteOutput, error)

DeleteRoute API operation for AWS App Mesh.

Deletes an existing route.

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 App Mesh's API operation DeleteRoute for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ResourceInUseException You can't delete the specified resource because it's in use or required by another resource.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteRoute

func (*AppMesh) DeleteRouteRequest

func (c *AppMesh) DeleteRouteRequest(input *DeleteRouteInput) (req *request.Request, output *DeleteRouteOutput)

DeleteRouteRequest generates a "aws/request.Request" representing the client's request for the DeleteRoute 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 DeleteRoute for more information on using the DeleteRoute 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 DeleteRouteRequest method.
req, resp := client.DeleteRouteRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteRoute

func (*AppMesh) DeleteRouteWithContext

func (c *AppMesh) DeleteRouteWithContext(ctx aws.Context, input *DeleteRouteInput, opts ...request.Option) (*DeleteRouteOutput, error)

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

See DeleteRoute 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 (*AppMesh) DeleteVirtualGateway added in v1.33.5

func (c *AppMesh) DeleteVirtualGateway(input *DeleteVirtualGatewayInput) (*DeleteVirtualGatewayOutput, error)

DeleteVirtualGateway API operation for AWS App Mesh.

Deletes an existing virtual gateway. You cannot delete a virtual gateway if any gateway routes are associated to it.

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 App Mesh's API operation DeleteVirtualGateway for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ResourceInUseException You can't delete the specified resource because it's in use or required by another resource.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualGateway

func (*AppMesh) DeleteVirtualGatewayRequest added in v1.33.5

func (c *AppMesh) DeleteVirtualGatewayRequest(input *DeleteVirtualGatewayInput) (req *request.Request, output *DeleteVirtualGatewayOutput)

DeleteVirtualGatewayRequest generates a "aws/request.Request" representing the client's request for the DeleteVirtualGateway 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 DeleteVirtualGateway for more information on using the DeleteVirtualGateway 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 DeleteVirtualGatewayRequest method.
req, resp := client.DeleteVirtualGatewayRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualGateway

func (*AppMesh) DeleteVirtualGatewayWithContext added in v1.33.5

func (c *AppMesh) DeleteVirtualGatewayWithContext(ctx aws.Context, input *DeleteVirtualGatewayInput, opts ...request.Option) (*DeleteVirtualGatewayOutput, error)

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

See DeleteVirtualGateway 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 (*AppMesh) DeleteVirtualNode

func (c *AppMesh) DeleteVirtualNode(input *DeleteVirtualNodeInput) (*DeleteVirtualNodeOutput, error)

DeleteVirtualNode API operation for AWS App Mesh.

Deletes an existing virtual node.

You must delete any virtual services that list a virtual node as a service provider before you can delete the virtual node itself.

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 App Mesh's API operation DeleteVirtualNode for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ResourceInUseException You can't delete the specified resource because it's in use or required by another resource.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualNode

func (*AppMesh) DeleteVirtualNodeRequest

func (c *AppMesh) DeleteVirtualNodeRequest(input *DeleteVirtualNodeInput) (req *request.Request, output *DeleteVirtualNodeOutput)

DeleteVirtualNodeRequest generates a "aws/request.Request" representing the client's request for the DeleteVirtualNode 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 DeleteVirtualNode for more information on using the DeleteVirtualNode 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 DeleteVirtualNodeRequest method.
req, resp := client.DeleteVirtualNodeRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualNode

func (*AppMesh) DeleteVirtualNodeWithContext

func (c *AppMesh) DeleteVirtualNodeWithContext(ctx aws.Context, input *DeleteVirtualNodeInput, opts ...request.Option) (*DeleteVirtualNodeOutput, error)

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

See DeleteVirtualNode 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 (*AppMesh) DeleteVirtualRouter

func (c *AppMesh) DeleteVirtualRouter(input *DeleteVirtualRouterInput) (*DeleteVirtualRouterOutput, error)

DeleteVirtualRouter API operation for AWS App Mesh.

Deletes an existing virtual router.

You must delete any routes associated with the virtual router before you can delete the router itself.

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 App Mesh's API operation DeleteVirtualRouter for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ResourceInUseException You can't delete the specified resource because it's in use or required by another resource.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualRouter

func (*AppMesh) DeleteVirtualRouterRequest

func (c *AppMesh) DeleteVirtualRouterRequest(input *DeleteVirtualRouterInput) (req *request.Request, output *DeleteVirtualRouterOutput)

DeleteVirtualRouterRequest generates a "aws/request.Request" representing the client's request for the DeleteVirtualRouter 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 DeleteVirtualRouter for more information on using the DeleteVirtualRouter 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 DeleteVirtualRouterRequest method.
req, resp := client.DeleteVirtualRouterRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualRouter

func (*AppMesh) DeleteVirtualRouterWithContext

func (c *AppMesh) DeleteVirtualRouterWithContext(ctx aws.Context, input *DeleteVirtualRouterInput, opts ...request.Option) (*DeleteVirtualRouterOutput, error)

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

See DeleteVirtualRouter 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 (*AppMesh) DeleteVirtualService added in v1.17.13

func (c *AppMesh) DeleteVirtualService(input *DeleteVirtualServiceInput) (*DeleteVirtualServiceOutput, error)

DeleteVirtualService API operation for AWS App Mesh.

Deletes an existing virtual service.

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 App Mesh's API operation DeleteVirtualService for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ResourceInUseException You can't delete the specified resource because it's in use or required by another resource.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualService

func (*AppMesh) DeleteVirtualServiceRequest added in v1.17.13

func (c *AppMesh) DeleteVirtualServiceRequest(input *DeleteVirtualServiceInput) (req *request.Request, output *DeleteVirtualServiceOutput)

DeleteVirtualServiceRequest generates a "aws/request.Request" representing the client's request for the DeleteVirtualService 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 DeleteVirtualService for more information on using the DeleteVirtualService 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 DeleteVirtualServiceRequest method.
req, resp := client.DeleteVirtualServiceRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualService

func (*AppMesh) DeleteVirtualServiceWithContext added in v1.17.13

func (c *AppMesh) DeleteVirtualServiceWithContext(ctx aws.Context, input *DeleteVirtualServiceInput, opts ...request.Option) (*DeleteVirtualServiceOutput, error)

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

See DeleteVirtualService 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 (*AppMesh) DescribeGatewayRoute added in v1.33.5

func (c *AppMesh) DescribeGatewayRoute(input *DescribeGatewayRouteInput) (*DescribeGatewayRouteOutput, error)

DescribeGatewayRoute API operation for AWS App Mesh.

Describes an existing gateway route.

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 App Mesh's API operation DescribeGatewayRoute for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeGatewayRoute

func (*AppMesh) DescribeGatewayRouteRequest added in v1.33.5

func (c *AppMesh) DescribeGatewayRouteRequest(input *DescribeGatewayRouteInput) (req *request.Request, output *DescribeGatewayRouteOutput)

DescribeGatewayRouteRequest generates a "aws/request.Request" representing the client's request for the DescribeGatewayRoute 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 DescribeGatewayRoute for more information on using the DescribeGatewayRoute 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 DescribeGatewayRouteRequest method.
req, resp := client.DescribeGatewayRouteRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeGatewayRoute

func (*AppMesh) DescribeGatewayRouteWithContext added in v1.33.5

func (c *AppMesh) DescribeGatewayRouteWithContext(ctx aws.Context, input *DescribeGatewayRouteInput, opts ...request.Option) (*DescribeGatewayRouteOutput, error)

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

See DescribeGatewayRoute 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 (*AppMesh) DescribeMesh

func (c *AppMesh) DescribeMesh(input *DescribeMeshInput) (*DescribeMeshOutput, error)

DescribeMesh API operation for AWS App Mesh.

Describes an existing service mesh.

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 App Mesh's API operation DescribeMesh for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeMesh

func (*AppMesh) DescribeMeshRequest

func (c *AppMesh) DescribeMeshRequest(input *DescribeMeshInput) (req *request.Request, output *DescribeMeshOutput)

DescribeMeshRequest generates a "aws/request.Request" representing the client's request for the DescribeMesh 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 DescribeMesh for more information on using the DescribeMesh 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 DescribeMeshRequest method.
req, resp := client.DescribeMeshRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeMesh

func (*AppMesh) DescribeMeshWithContext

func (c *AppMesh) DescribeMeshWithContext(ctx aws.Context, input *DescribeMeshInput, opts ...request.Option) (*DescribeMeshOutput, error)

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

See DescribeMesh 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 (*AppMesh) DescribeRoute

func (c *AppMesh) DescribeRoute(input *DescribeRouteInput) (*DescribeRouteOutput, error)

DescribeRoute API operation for AWS App Mesh.

Describes an existing route.

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 App Mesh's API operation DescribeRoute for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeRoute

func (*AppMesh) DescribeRouteRequest

func (c *AppMesh) DescribeRouteRequest(input *DescribeRouteInput) (req *request.Request, output *DescribeRouteOutput)

DescribeRouteRequest generates a "aws/request.Request" representing the client's request for the DescribeRoute 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 DescribeRoute for more information on using the DescribeRoute 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 DescribeRouteRequest method.
req, resp := client.DescribeRouteRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeRoute

func (*AppMesh) DescribeRouteWithContext

func (c *AppMesh) DescribeRouteWithContext(ctx aws.Context, input *DescribeRouteInput, opts ...request.Option) (*DescribeRouteOutput, error)

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

See DescribeRoute 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 (*AppMesh) DescribeVirtualGateway added in v1.33.5

func (c *AppMesh) DescribeVirtualGateway(input *DescribeVirtualGatewayInput) (*DescribeVirtualGatewayOutput, error)

DescribeVirtualGateway API operation for AWS App Mesh.

Describes an existing virtual gateway.

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 App Mesh's API operation DescribeVirtualGateway for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualGateway

func (*AppMesh) DescribeVirtualGatewayRequest added in v1.33.5

func (c *AppMesh) DescribeVirtualGatewayRequest(input *DescribeVirtualGatewayInput) (req *request.Request, output *DescribeVirtualGatewayOutput)

DescribeVirtualGatewayRequest generates a "aws/request.Request" representing the client's request for the DescribeVirtualGateway 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 DescribeVirtualGateway for more information on using the DescribeVirtualGateway 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 DescribeVirtualGatewayRequest method.
req, resp := client.DescribeVirtualGatewayRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualGateway

func (*AppMesh) DescribeVirtualGatewayWithContext added in v1.33.5

func (c *AppMesh) DescribeVirtualGatewayWithContext(ctx aws.Context, input *DescribeVirtualGatewayInput, opts ...request.Option) (*DescribeVirtualGatewayOutput, error)

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

See DescribeVirtualGateway 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 (*AppMesh) DescribeVirtualNode

func (c *AppMesh) DescribeVirtualNode(input *DescribeVirtualNodeInput) (*DescribeVirtualNodeOutput, error)

DescribeVirtualNode API operation for AWS App Mesh.

Describes an existing virtual node.

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 App Mesh's API operation DescribeVirtualNode for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualNode

func (*AppMesh) DescribeVirtualNodeRequest

func (c *AppMesh) DescribeVirtualNodeRequest(input *DescribeVirtualNodeInput) (req *request.Request, output *DescribeVirtualNodeOutput)

DescribeVirtualNodeRequest generates a "aws/request.Request" representing the client's request for the DescribeVirtualNode 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 DescribeVirtualNode for more information on using the DescribeVirtualNode 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 DescribeVirtualNodeRequest method.
req, resp := client.DescribeVirtualNodeRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualNode

func (*AppMesh) DescribeVirtualNodeWithContext

func (c *AppMesh) DescribeVirtualNodeWithContext(ctx aws.Context, input *DescribeVirtualNodeInput, opts ...request.Option) (*DescribeVirtualNodeOutput, error)

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

See DescribeVirtualNode 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 (*AppMesh) DescribeVirtualRouter

func (c *AppMesh) DescribeVirtualRouter(input *DescribeVirtualRouterInput) (*DescribeVirtualRouterOutput, error)

DescribeVirtualRouter API operation for AWS App Mesh.

Describes an existing virtual router.

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 App Mesh's API operation DescribeVirtualRouter for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualRouter

func (*AppMesh) DescribeVirtualRouterRequest

func (c *AppMesh) DescribeVirtualRouterRequest(input *DescribeVirtualRouterInput) (req *request.Request, output *DescribeVirtualRouterOutput)

DescribeVirtualRouterRequest generates a "aws/request.Request" representing the client's request for the DescribeVirtualRouter 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 DescribeVirtualRouter for more information on using the DescribeVirtualRouter 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 DescribeVirtualRouterRequest method.
req, resp := client.DescribeVirtualRouterRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualRouter

func (*AppMesh) DescribeVirtualRouterWithContext

func (c *AppMesh) DescribeVirtualRouterWithContext(ctx aws.Context, input *DescribeVirtualRouterInput, opts ...request.Option) (*DescribeVirtualRouterOutput, error)

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

See DescribeVirtualRouter 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 (*AppMesh) DescribeVirtualService added in v1.17.13

func (c *AppMesh) DescribeVirtualService(input *DescribeVirtualServiceInput) (*DescribeVirtualServiceOutput, error)

DescribeVirtualService API operation for AWS App Mesh.

Describes an existing virtual service.

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 App Mesh's API operation DescribeVirtualService for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualService

func (*AppMesh) DescribeVirtualServiceRequest added in v1.17.13

func (c *AppMesh) DescribeVirtualServiceRequest(input *DescribeVirtualServiceInput) (req *request.Request, output *DescribeVirtualServiceOutput)

DescribeVirtualServiceRequest generates a "aws/request.Request" representing the client's request for the DescribeVirtualService 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 DescribeVirtualService for more information on using the DescribeVirtualService 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 DescribeVirtualServiceRequest method.
req, resp := client.DescribeVirtualServiceRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualService

func (*AppMesh) DescribeVirtualServiceWithContext added in v1.17.13

func (c *AppMesh) DescribeVirtualServiceWithContext(ctx aws.Context, input *DescribeVirtualServiceInput, opts ...request.Option) (*DescribeVirtualServiceOutput, error)

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

See DescribeVirtualService 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 (*AppMesh) ListGatewayRoutes added in v1.33.5

func (c *AppMesh) ListGatewayRoutes(input *ListGatewayRoutesInput) (*ListGatewayRoutesOutput, error)

ListGatewayRoutes API operation for AWS App Mesh.

Returns a list of existing gateway routes that are associated to a virtual gateway.

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 App Mesh's API operation ListGatewayRoutes for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListGatewayRoutes

func (*AppMesh) ListGatewayRoutesPages added in v1.33.5

func (c *AppMesh) ListGatewayRoutesPages(input *ListGatewayRoutesInput, fn func(*ListGatewayRoutesOutput, bool) bool) error

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

See ListGatewayRoutes 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 ListGatewayRoutes operation.
pageNum := 0
err := client.ListGatewayRoutesPages(params,
    func(page *appmesh.ListGatewayRoutesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AppMesh) ListGatewayRoutesPagesWithContext added in v1.33.5

func (c *AppMesh) ListGatewayRoutesPagesWithContext(ctx aws.Context, input *ListGatewayRoutesInput, fn func(*ListGatewayRoutesOutput, bool) bool, opts ...request.Option) error

ListGatewayRoutesPagesWithContext same as ListGatewayRoutesPages 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 (*AppMesh) ListGatewayRoutesRequest added in v1.33.5

func (c *AppMesh) ListGatewayRoutesRequest(input *ListGatewayRoutesInput) (req *request.Request, output *ListGatewayRoutesOutput)

ListGatewayRoutesRequest generates a "aws/request.Request" representing the client's request for the ListGatewayRoutes 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 ListGatewayRoutes for more information on using the ListGatewayRoutes 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 ListGatewayRoutesRequest method.
req, resp := client.ListGatewayRoutesRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListGatewayRoutes

func (*AppMesh) ListGatewayRoutesWithContext added in v1.33.5

func (c *AppMesh) ListGatewayRoutesWithContext(ctx aws.Context, input *ListGatewayRoutesInput, opts ...request.Option) (*ListGatewayRoutesOutput, error)

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

See ListGatewayRoutes 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 (*AppMesh) ListMeshes

func (c *AppMesh) ListMeshes(input *ListMeshesInput) (*ListMeshesOutput, error)

ListMeshes API operation for AWS App Mesh.

Returns a list of existing service meshes.

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 App Mesh's API operation ListMeshes for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListMeshes

func (*AppMesh) ListMeshesPages

func (c *AppMesh) ListMeshesPages(input *ListMeshesInput, fn func(*ListMeshesOutput, bool) bool) error

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

See ListMeshes 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 ListMeshes operation.
pageNum := 0
err := client.ListMeshesPages(params,
    func(page *appmesh.ListMeshesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AppMesh) ListMeshesPagesWithContext

func (c *AppMesh) ListMeshesPagesWithContext(ctx aws.Context, input *ListMeshesInput, fn func(*ListMeshesOutput, bool) bool, opts ...request.Option) error

ListMeshesPagesWithContext same as ListMeshesPages 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 (*AppMesh) ListMeshesRequest

func (c *AppMesh) ListMeshesRequest(input *ListMeshesInput) (req *request.Request, output *ListMeshesOutput)

ListMeshesRequest generates a "aws/request.Request" representing the client's request for the ListMeshes 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 ListMeshes for more information on using the ListMeshes 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 ListMeshesRequest method.
req, resp := client.ListMeshesRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListMeshes

func (*AppMesh) ListMeshesWithContext

func (c *AppMesh) ListMeshesWithContext(ctx aws.Context, input *ListMeshesInput, opts ...request.Option) (*ListMeshesOutput, error)

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

See ListMeshes 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 (*AppMesh) ListRoutes

func (c *AppMesh) ListRoutes(input *ListRoutesInput) (*ListRoutesOutput, error)

ListRoutes API operation for AWS App Mesh.

Returns a list of existing routes in a service mesh.

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 App Mesh's API operation ListRoutes for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListRoutes

func (*AppMesh) ListRoutesPages

func (c *AppMesh) ListRoutesPages(input *ListRoutesInput, fn func(*ListRoutesOutput, bool) bool) error

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

See ListRoutes 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 ListRoutes operation.
pageNum := 0
err := client.ListRoutesPages(params,
    func(page *appmesh.ListRoutesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AppMesh) ListRoutesPagesWithContext

func (c *AppMesh) ListRoutesPagesWithContext(ctx aws.Context, input *ListRoutesInput, fn func(*ListRoutesOutput, bool) bool, opts ...request.Option) error

ListRoutesPagesWithContext same as ListRoutesPages 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 (*AppMesh) ListRoutesRequest

func (c *AppMesh) ListRoutesRequest(input *ListRoutesInput) (req *request.Request, output *ListRoutesOutput)

ListRoutesRequest generates a "aws/request.Request" representing the client's request for the ListRoutes 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 ListRoutes for more information on using the ListRoutes 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 ListRoutesRequest method.
req, resp := client.ListRoutesRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListRoutes

func (*AppMesh) ListRoutesWithContext

func (c *AppMesh) ListRoutesWithContext(ctx aws.Context, input *ListRoutesInput, opts ...request.Option) (*ListRoutesOutput, error)

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

See ListRoutes 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 (*AppMesh) ListTagsForResource added in v1.19.3

func (c *AppMesh) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)

ListTagsForResource API operation for AWS App Mesh.

List the tags for an App Mesh resource.

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 App Mesh's API operation ListTagsForResource for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListTagsForResource

func (*AppMesh) ListTagsForResourcePages added in v1.19.3

func (c *AppMesh) ListTagsForResourcePages(input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool) error

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

See ListTagsForResource 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 ListTagsForResource operation.
pageNum := 0
err := client.ListTagsForResourcePages(params,
    func(page *appmesh.ListTagsForResourceOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AppMesh) ListTagsForResourcePagesWithContext added in v1.19.3

func (c *AppMesh) ListTagsForResourcePagesWithContext(ctx aws.Context, input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool, opts ...request.Option) error

ListTagsForResourcePagesWithContext same as ListTagsForResourcePages 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 (*AppMesh) ListTagsForResourceRequest added in v1.19.3

func (c *AppMesh) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)

ListTagsForResourceRequest generates a "aws/request.Request" representing the client's request for the ListTagsForResource 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 ListTagsForResource for more information on using the ListTagsForResource 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 ListTagsForResourceRequest method.
req, resp := client.ListTagsForResourceRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListTagsForResource

func (*AppMesh) ListTagsForResourceWithContext added in v1.19.3

func (c *AppMesh) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)

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

See ListTagsForResource 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 (*AppMesh) ListVirtualGateways added in v1.33.5

func (c *AppMesh) ListVirtualGateways(input *ListVirtualGatewaysInput) (*ListVirtualGatewaysOutput, error)

ListVirtualGateways API operation for AWS App Mesh.

Returns a list of existing virtual gateways in a service mesh.

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 App Mesh's API operation ListVirtualGateways for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualGateways

func (*AppMesh) ListVirtualGatewaysPages added in v1.33.5

func (c *AppMesh) ListVirtualGatewaysPages(input *ListVirtualGatewaysInput, fn func(*ListVirtualGatewaysOutput, bool) bool) error

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

See ListVirtualGateways 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 ListVirtualGateways operation.
pageNum := 0
err := client.ListVirtualGatewaysPages(params,
    func(page *appmesh.ListVirtualGatewaysOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AppMesh) ListVirtualGatewaysPagesWithContext added in v1.33.5

func (c *AppMesh) ListVirtualGatewaysPagesWithContext(ctx aws.Context, input *ListVirtualGatewaysInput, fn func(*ListVirtualGatewaysOutput, bool) bool, opts ...request.Option) error

ListVirtualGatewaysPagesWithContext same as ListVirtualGatewaysPages 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 (*AppMesh) ListVirtualGatewaysRequest added in v1.33.5

func (c *AppMesh) ListVirtualGatewaysRequest(input *ListVirtualGatewaysInput) (req *request.Request, output *ListVirtualGatewaysOutput)

ListVirtualGatewaysRequest generates a "aws/request.Request" representing the client's request for the ListVirtualGateways 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 ListVirtualGateways for more information on using the ListVirtualGateways 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 ListVirtualGatewaysRequest method.
req, resp := client.ListVirtualGatewaysRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualGateways

func (*AppMesh) ListVirtualGatewaysWithContext added in v1.33.5

func (c *AppMesh) ListVirtualGatewaysWithContext(ctx aws.Context, input *ListVirtualGatewaysInput, opts ...request.Option) (*ListVirtualGatewaysOutput, error)

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

See ListVirtualGateways 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 (*AppMesh) ListVirtualNodes

func (c *AppMesh) ListVirtualNodes(input *ListVirtualNodesInput) (*ListVirtualNodesOutput, error)

ListVirtualNodes API operation for AWS App Mesh.

Returns a list of existing virtual nodes.

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 App Mesh's API operation ListVirtualNodes for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualNodes

func (*AppMesh) ListVirtualNodesPages

func (c *AppMesh) ListVirtualNodesPages(input *ListVirtualNodesInput, fn func(*ListVirtualNodesOutput, bool) bool) error

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

See ListVirtualNodes 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 ListVirtualNodes operation.
pageNum := 0
err := client.ListVirtualNodesPages(params,
    func(page *appmesh.ListVirtualNodesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AppMesh) ListVirtualNodesPagesWithContext

func (c *AppMesh) ListVirtualNodesPagesWithContext(ctx aws.Context, input *ListVirtualNodesInput, fn func(*ListVirtualNodesOutput, bool) bool, opts ...request.Option) error

ListVirtualNodesPagesWithContext same as ListVirtualNodesPages 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 (*AppMesh) ListVirtualNodesRequest

func (c *AppMesh) ListVirtualNodesRequest(input *ListVirtualNodesInput) (req *request.Request, output *ListVirtualNodesOutput)

ListVirtualNodesRequest generates a "aws/request.Request" representing the client's request for the ListVirtualNodes 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 ListVirtualNodes for more information on using the ListVirtualNodes 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 ListVirtualNodesRequest method.
req, resp := client.ListVirtualNodesRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualNodes

func (*AppMesh) ListVirtualNodesWithContext

func (c *AppMesh) ListVirtualNodesWithContext(ctx aws.Context, input *ListVirtualNodesInput, opts ...request.Option) (*ListVirtualNodesOutput, error)

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

See ListVirtualNodes 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 (*AppMesh) ListVirtualRouters

func (c *AppMesh) ListVirtualRouters(input *ListVirtualRoutersInput) (*ListVirtualRoutersOutput, error)

ListVirtualRouters API operation for AWS App Mesh.

Returns a list of existing virtual routers in a service mesh.

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 App Mesh's API operation ListVirtualRouters for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualRouters

func (*AppMesh) ListVirtualRoutersPages

func (c *AppMesh) ListVirtualRoutersPages(input *ListVirtualRoutersInput, fn func(*ListVirtualRoutersOutput, bool) bool) error

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

See ListVirtualRouters 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 ListVirtualRouters operation.
pageNum := 0
err := client.ListVirtualRoutersPages(params,
    func(page *appmesh.ListVirtualRoutersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AppMesh) ListVirtualRoutersPagesWithContext

func (c *AppMesh) ListVirtualRoutersPagesWithContext(ctx aws.Context, input *ListVirtualRoutersInput, fn func(*ListVirtualRoutersOutput, bool) bool, opts ...request.Option) error

ListVirtualRoutersPagesWithContext same as ListVirtualRoutersPages 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 (*AppMesh) ListVirtualRoutersRequest

func (c *AppMesh) ListVirtualRoutersRequest(input *ListVirtualRoutersInput) (req *request.Request, output *ListVirtualRoutersOutput)

ListVirtualRoutersRequest generates a "aws/request.Request" representing the client's request for the ListVirtualRouters 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 ListVirtualRouters for more information on using the ListVirtualRouters 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 ListVirtualRoutersRequest method.
req, resp := client.ListVirtualRoutersRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualRouters

func (*AppMesh) ListVirtualRoutersWithContext

func (c *AppMesh) ListVirtualRoutersWithContext(ctx aws.Context, input *ListVirtualRoutersInput, opts ...request.Option) (*ListVirtualRoutersOutput, error)

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

See ListVirtualRouters 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 (*AppMesh) ListVirtualServices added in v1.17.13

func (c *AppMesh) ListVirtualServices(input *ListVirtualServicesInput) (*ListVirtualServicesOutput, error)

ListVirtualServices API operation for AWS App Mesh.

Returns a list of existing virtual services in a service mesh.

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 App Mesh's API operation ListVirtualServices for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualServices

func (*AppMesh) ListVirtualServicesPages added in v1.17.13

func (c *AppMesh) ListVirtualServicesPages(input *ListVirtualServicesInput, fn func(*ListVirtualServicesOutput, bool) bool) error

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

See ListVirtualServices 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 ListVirtualServices operation.
pageNum := 0
err := client.ListVirtualServicesPages(params,
    func(page *appmesh.ListVirtualServicesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*AppMesh) ListVirtualServicesPagesWithContext added in v1.17.13

func (c *AppMesh) ListVirtualServicesPagesWithContext(ctx aws.Context, input *ListVirtualServicesInput, fn func(*ListVirtualServicesOutput, bool) bool, opts ...request.Option) error

ListVirtualServicesPagesWithContext same as ListVirtualServicesPages 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 (*AppMesh) ListVirtualServicesRequest added in v1.17.13

func (c *AppMesh) ListVirtualServicesRequest(input *ListVirtualServicesInput) (req *request.Request, output *ListVirtualServicesOutput)

ListVirtualServicesRequest generates a "aws/request.Request" representing the client's request for the ListVirtualServices 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 ListVirtualServices for more information on using the ListVirtualServices 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 ListVirtualServicesRequest method.
req, resp := client.ListVirtualServicesRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualServices

func (*AppMesh) ListVirtualServicesWithContext added in v1.17.13

func (c *AppMesh) ListVirtualServicesWithContext(ctx aws.Context, input *ListVirtualServicesInput, opts ...request.Option) (*ListVirtualServicesOutput, error)

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

See ListVirtualServices 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 (*AppMesh) TagResource added in v1.19.3

func (c *AppMesh) TagResource(input *TagResourceInput) (*TagResourceOutput, error)

TagResource API operation for AWS App Mesh.

Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource aren't specified in the request parameters, they aren't changed. When a resource is deleted, the tags associated with that resource are also deleted.

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 App Mesh's API operation TagResource for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

  • TooManyTagsException The request exceeds the maximum allowed number of tags allowed per resource. The current limit is 50 user tags per resource. You must reduce the number of tags in the request. None of the tags in this request were applied.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/TagResource

func (*AppMesh) TagResourceRequest added in v1.19.3

func (c *AppMesh) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)

TagResourceRequest generates a "aws/request.Request" representing the client's request for the TagResource 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 TagResource for more information on using the TagResource 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 TagResourceRequest method.
req, resp := client.TagResourceRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/TagResource

func (*AppMesh) TagResourceWithContext added in v1.19.3

func (c *AppMesh) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)

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

See TagResource 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 (*AppMesh) UntagResource added in v1.19.3

func (c *AppMesh) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)

UntagResource API operation for AWS App Mesh.

Deletes specified tags from a resource.

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 App Mesh's API operation UntagResource for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UntagResource

func (*AppMesh) UntagResourceRequest added in v1.19.3

func (c *AppMesh) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)

UntagResourceRequest generates a "aws/request.Request" representing the client's request for the UntagResource 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 UntagResource for more information on using the UntagResource 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 UntagResourceRequest method.
req, resp := client.UntagResourceRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UntagResource

func (*AppMesh) UntagResourceWithContext added in v1.19.3

func (c *AppMesh) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)

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

See UntagResource 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 (*AppMesh) UpdateGatewayRoute added in v1.33.5

func (c *AppMesh) UpdateGatewayRoute(input *UpdateGatewayRouteInput) (*UpdateGatewayRouteOutput, error)

UpdateGatewayRoute API operation for AWS App Mesh.

Updates an existing gateway route that is associated to a specified virtual gateway in a service mesh.

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 App Mesh's API operation UpdateGatewayRoute for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateGatewayRoute

func (*AppMesh) UpdateGatewayRouteRequest added in v1.33.5

func (c *AppMesh) UpdateGatewayRouteRequest(input *UpdateGatewayRouteInput) (req *request.Request, output *UpdateGatewayRouteOutput)

UpdateGatewayRouteRequest generates a "aws/request.Request" representing the client's request for the UpdateGatewayRoute 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 UpdateGatewayRoute for more information on using the UpdateGatewayRoute 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 UpdateGatewayRouteRequest method.
req, resp := client.UpdateGatewayRouteRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateGatewayRoute

func (*AppMesh) UpdateGatewayRouteWithContext added in v1.33.5

func (c *AppMesh) UpdateGatewayRouteWithContext(ctx aws.Context, input *UpdateGatewayRouteInput, opts ...request.Option) (*UpdateGatewayRouteOutput, error)

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

See UpdateGatewayRoute 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 (*AppMesh) UpdateMesh added in v1.19.3

func (c *AppMesh) UpdateMesh(input *UpdateMeshInput) (*UpdateMeshOutput, error)

UpdateMesh API operation for AWS App Mesh.

Updates an existing service mesh.

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 App Mesh's API operation UpdateMesh for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateMesh

func (*AppMesh) UpdateMeshRequest added in v1.19.3

func (c *AppMesh) UpdateMeshRequest(input *UpdateMeshInput) (req *request.Request, output *UpdateMeshOutput)

UpdateMeshRequest generates a "aws/request.Request" representing the client's request for the UpdateMesh 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 UpdateMesh for more information on using the UpdateMesh 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 UpdateMeshRequest method.
req, resp := client.UpdateMeshRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateMesh

func (*AppMesh) UpdateMeshWithContext added in v1.19.3

func (c *AppMesh) UpdateMeshWithContext(ctx aws.Context, input *UpdateMeshInput, opts ...request.Option) (*UpdateMeshOutput, error)

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

See UpdateMesh 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 (*AppMesh) UpdateRoute

func (c *AppMesh) UpdateRoute(input *UpdateRouteInput) (*UpdateRouteOutput, error)

UpdateRoute API operation for AWS App Mesh.

Updates an existing route for a specified service mesh and virtual router.

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 App Mesh's API operation UpdateRoute for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateRoute

func (*AppMesh) UpdateRouteRequest

func (c *AppMesh) UpdateRouteRequest(input *UpdateRouteInput) (req *request.Request, output *UpdateRouteOutput)

UpdateRouteRequest generates a "aws/request.Request" representing the client's request for the UpdateRoute 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 UpdateRoute for more information on using the UpdateRoute 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 UpdateRouteRequest method.
req, resp := client.UpdateRouteRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateRoute

func (*AppMesh) UpdateRouteWithContext

func (c *AppMesh) UpdateRouteWithContext(ctx aws.Context, input *UpdateRouteInput, opts ...request.Option) (*UpdateRouteOutput, error)

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

See UpdateRoute 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 (*AppMesh) UpdateVirtualGateway added in v1.33.5

func (c *AppMesh) UpdateVirtualGateway(input *UpdateVirtualGatewayInput) (*UpdateVirtualGatewayOutput, error)

UpdateVirtualGateway API operation for AWS App Mesh.

Updates an existing virtual gateway in a specified service mesh.

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 App Mesh's API operation UpdateVirtualGateway for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualGateway

func (*AppMesh) UpdateVirtualGatewayRequest added in v1.33.5

func (c *AppMesh) UpdateVirtualGatewayRequest(input *UpdateVirtualGatewayInput) (req *request.Request, output *UpdateVirtualGatewayOutput)

UpdateVirtualGatewayRequest generates a "aws/request.Request" representing the client's request for the UpdateVirtualGateway 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 UpdateVirtualGateway for more information on using the UpdateVirtualGateway 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 UpdateVirtualGatewayRequest method.
req, resp := client.UpdateVirtualGatewayRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualGateway

func (*AppMesh) UpdateVirtualGatewayWithContext added in v1.33.5

func (c *AppMesh) UpdateVirtualGatewayWithContext(ctx aws.Context, input *UpdateVirtualGatewayInput, opts ...request.Option) (*UpdateVirtualGatewayOutput, error)

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

See UpdateVirtualGateway 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 (*AppMesh) UpdateVirtualNode

func (c *AppMesh) UpdateVirtualNode(input *UpdateVirtualNodeInput) (*UpdateVirtualNodeOutput, error)

UpdateVirtualNode API operation for AWS App Mesh.

Updates an existing virtual node in a specified service mesh.

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 App Mesh's API operation UpdateVirtualNode for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualNode

func (*AppMesh) UpdateVirtualNodeRequest

func (c *AppMesh) UpdateVirtualNodeRequest(input *UpdateVirtualNodeInput) (req *request.Request, output *UpdateVirtualNodeOutput)

UpdateVirtualNodeRequest generates a "aws/request.Request" representing the client's request for the UpdateVirtualNode 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 UpdateVirtualNode for more information on using the UpdateVirtualNode 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 UpdateVirtualNodeRequest method.
req, resp := client.UpdateVirtualNodeRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualNode

func (*AppMesh) UpdateVirtualNodeWithContext

func (c *AppMesh) UpdateVirtualNodeWithContext(ctx aws.Context, input *UpdateVirtualNodeInput, opts ...request.Option) (*UpdateVirtualNodeOutput, error)

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

See UpdateVirtualNode 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 (*AppMesh) UpdateVirtualRouter

func (c *AppMesh) UpdateVirtualRouter(input *UpdateVirtualRouterInput) (*UpdateVirtualRouterOutput, error)

UpdateVirtualRouter API operation for AWS App Mesh.

Updates an existing virtual router in a specified service mesh.

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 App Mesh's API operation UpdateVirtualRouter for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualRouter

func (*AppMesh) UpdateVirtualRouterRequest

func (c *AppMesh) UpdateVirtualRouterRequest(input *UpdateVirtualRouterInput) (req *request.Request, output *UpdateVirtualRouterOutput)

UpdateVirtualRouterRequest generates a "aws/request.Request" representing the client's request for the UpdateVirtualRouter 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 UpdateVirtualRouter for more information on using the UpdateVirtualRouter 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 UpdateVirtualRouterRequest method.
req, resp := client.UpdateVirtualRouterRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualRouter

func (*AppMesh) UpdateVirtualRouterWithContext

func (c *AppMesh) UpdateVirtualRouterWithContext(ctx aws.Context, input *UpdateVirtualRouterInput, opts ...request.Option) (*UpdateVirtualRouterOutput, error)

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

See UpdateVirtualRouter 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 (*AppMesh) UpdateVirtualService added in v1.17.13

func (c *AppMesh) UpdateVirtualService(input *UpdateVirtualServiceInput) (*UpdateVirtualServiceOutput, error)

UpdateVirtualService API operation for AWS App Mesh.

Updates an existing virtual service in a specified service mesh.

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 App Mesh's API operation UpdateVirtualService for usage and error information.

Returned Error Types:

  • BadRequestException The request syntax was malformed. Check your request syntax and try again.

  • ConflictException The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

  • ForbiddenException You don't have permissions to perform this action.

  • InternalServerErrorException The request processing has failed because of an unknown error, exception, or failure.

  • LimitExceededException You have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

  • NotFoundException The specified resource doesn't exist. Check your request syntax and try again.

  • ServiceUnavailableException The request has failed due to a temporary failure of the service.

  • TooManyRequestsException The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualService

func (*AppMesh) UpdateVirtualServiceRequest added in v1.17.13

func (c *AppMesh) UpdateVirtualServiceRequest(input *UpdateVirtualServiceInput) (req *request.Request, output *UpdateVirtualServiceOutput)

UpdateVirtualServiceRequest generates a "aws/request.Request" representing the client's request for the UpdateVirtualService 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 UpdateVirtualService for more information on using the UpdateVirtualService 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 UpdateVirtualServiceRequest method.
req, resp := client.UpdateVirtualServiceRequest(params)

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

See also, https://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualService

func (*AppMesh) UpdateVirtualServiceWithContext added in v1.17.13

func (c *AppMesh) UpdateVirtualServiceWithContext(ctx aws.Context, input *UpdateVirtualServiceInput, opts ...request.Option) (*UpdateVirtualServiceOutput, error)

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

See UpdateVirtualService 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 AwsCloudMapInstanceAttribute added in v1.20.0

type AwsCloudMapInstanceAttribute struct {

	// Key is a required field
	Key *string `locationName:"key" min:"1" type:"string" required:"true"`

	// Value is a required field
	Value *string `locationName:"value" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the AWS Cloud Map attribute information for your virtual node.

func (AwsCloudMapInstanceAttribute) GoString added in v1.20.0

func (s AwsCloudMapInstanceAttribute) GoString() string

GoString returns the string representation

func (*AwsCloudMapInstanceAttribute) SetKey added in v1.20.0

SetKey sets the Key field's value.

func (*AwsCloudMapInstanceAttribute) SetValue added in v1.20.0

SetValue sets the Value field's value.

func (AwsCloudMapInstanceAttribute) String added in v1.20.0

String returns the string representation

func (*AwsCloudMapInstanceAttribute) Validate added in v1.20.0

func (s *AwsCloudMapInstanceAttribute) Validate() error

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

type AwsCloudMapServiceDiscovery added in v1.20.0

type AwsCloudMapServiceDiscovery struct {
	Attributes []*AwsCloudMapInstanceAttribute `locationName:"attributes" type:"list"`

	// NamespaceName is a required field
	NamespaceName *string `locationName:"namespaceName" min:"1" type:"string" required:"true"`

	// ServiceName is a required field
	ServiceName *string `locationName:"serviceName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the AWS Cloud Map service discovery information for your virtual node.

func (AwsCloudMapServiceDiscovery) GoString added in v1.20.0

func (s AwsCloudMapServiceDiscovery) GoString() string

GoString returns the string representation

func (*AwsCloudMapServiceDiscovery) SetAttributes added in v1.20.0

SetAttributes sets the Attributes field's value.

func (*AwsCloudMapServiceDiscovery) SetNamespaceName added in v1.20.0

SetNamespaceName sets the NamespaceName field's value.

func (*AwsCloudMapServiceDiscovery) SetServiceName added in v1.20.0

SetServiceName sets the ServiceName field's value.

func (AwsCloudMapServiceDiscovery) String added in v1.20.0

String returns the string representation

func (*AwsCloudMapServiceDiscovery) Validate added in v1.20.0

func (s *AwsCloudMapServiceDiscovery) Validate() error

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

type Backend added in v1.17.13

type Backend struct {

	// An object that represents a virtual service backend for a virtual node.
	VirtualService *VirtualServiceBackend `locationName:"virtualService" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the backends that a virtual node is expected to send outbound traffic to.

func (Backend) GoString added in v1.17.13

func (s Backend) GoString() string

GoString returns the string representation

func (*Backend) SetVirtualService added in v1.17.13

func (s *Backend) SetVirtualService(v *VirtualServiceBackend) *Backend

SetVirtualService sets the VirtualService field's value.

func (Backend) String added in v1.17.13

func (s Backend) String() string

String returns the string representation

func (*Backend) Validate added in v1.17.13

func (s *Backend) Validate() error

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

type BackendDefaults added in v1.29.13

type BackendDefaults struct {

	// An object that represents a client policy.
	ClientPolicy *ClientPolicy `locationName:"clientPolicy" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the default properties for a backend.

func (BackendDefaults) GoString added in v1.29.13

func (s BackendDefaults) GoString() string

GoString returns the string representation

func (*BackendDefaults) SetClientPolicy added in v1.29.13

func (s *BackendDefaults) SetClientPolicy(v *ClientPolicy) *BackendDefaults

SetClientPolicy sets the ClientPolicy field's value.

func (BackendDefaults) String added in v1.29.13

func (s BackendDefaults) String() string

String returns the string representation

func (*BackendDefaults) Validate added in v1.29.13

func (s *BackendDefaults) Validate() error

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

type BadRequestException added in v1.28.0

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

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

The request syntax was malformed. Check your request syntax and try again.

func (*BadRequestException) Code added in v1.28.0

func (s *BadRequestException) Code() string

Code returns the exception type name.

func (*BadRequestException) Error added in v1.28.0

func (s *BadRequestException) Error() string

func (BadRequestException) GoString added in v1.28.0

func (s BadRequestException) GoString() string

GoString returns the string representation

func (*BadRequestException) Message added in v1.28.0

func (s *BadRequestException) Message() string

Message returns the exception's message.

func (*BadRequestException) OrigErr added in v1.28.0

func (s *BadRequestException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*BadRequestException) RequestID added in v1.28.0

func (s *BadRequestException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*BadRequestException) StatusCode added in v1.28.0

func (s *BadRequestException) StatusCode() int

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

func (BadRequestException) String added in v1.28.0

func (s BadRequestException) String() string

String returns the string representation

type ClientPolicy added in v1.29.13

type ClientPolicy struct {

	// An object that represents a Transport Layer Security (TLS) client policy.
	Tls *ClientPolicyTls `locationName:"tls" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a client policy.

func (ClientPolicy) GoString added in v1.29.13

func (s ClientPolicy) GoString() string

GoString returns the string representation

func (*ClientPolicy) SetTls added in v1.29.13

func (s *ClientPolicy) SetTls(v *ClientPolicyTls) *ClientPolicy

SetTls sets the Tls field's value.

func (ClientPolicy) String added in v1.29.13

func (s ClientPolicy) String() string

String returns the string representation

func (*ClientPolicy) Validate added in v1.29.13

func (s *ClientPolicy) Validate() error

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

type ClientPolicyTls added in v1.29.13

type ClientPolicyTls struct {
	Enforce *bool `locationName:"enforce" type:"boolean"`

	Ports []*int64 `locationName:"ports" type:"list"`

	// An object that represents a Transport Layer Security (TLS) validation context.
	//
	// Validation is a required field
	Validation *TlsValidationContext `locationName:"validation" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a Transport Layer Security (TLS) client policy.

func (ClientPolicyTls) GoString added in v1.29.13

func (s ClientPolicyTls) GoString() string

GoString returns the string representation

func (*ClientPolicyTls) SetEnforce added in v1.29.13

func (s *ClientPolicyTls) SetEnforce(v bool) *ClientPolicyTls

SetEnforce sets the Enforce field's value.

func (*ClientPolicyTls) SetPorts added in v1.29.13

func (s *ClientPolicyTls) SetPorts(v []*int64) *ClientPolicyTls

SetPorts sets the Ports field's value.

func (*ClientPolicyTls) SetValidation added in v1.29.13

SetValidation sets the Validation field's value.

func (ClientPolicyTls) String added in v1.29.13

func (s ClientPolicyTls) String() string

String returns the string representation

func (*ClientPolicyTls) Validate added in v1.29.13

func (s *ClientPolicyTls) Validate() error

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

type ConflictException added in v1.28.0

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

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

The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

func (*ConflictException) Code added in v1.28.0

func (s *ConflictException) Code() string

Code returns the exception type name.

func (*ConflictException) Error added in v1.28.0

func (s *ConflictException) Error() string

func (ConflictException) GoString added in v1.28.0

func (s ConflictException) GoString() string

GoString returns the string representation

func (*ConflictException) Message added in v1.28.0

func (s *ConflictException) Message() string

Message returns the exception's message.

func (*ConflictException) OrigErr added in v1.28.0

func (s *ConflictException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ConflictException) RequestID added in v1.28.0

func (s *ConflictException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ConflictException) StatusCode added in v1.28.0

func (s *ConflictException) StatusCode() int

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

func (ConflictException) String added in v1.28.0

func (s ConflictException) String() string

String returns the string representation

type CreateGatewayRouteInput added in v1.33.5

type CreateGatewayRouteInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// GatewayRouteName is a required field
	GatewayRouteName *string `locationName:"gatewayRouteName" min:"1" type:"string" required:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents a gateway route specification. Specify one gateway
	// route type.
	//
	// Spec is a required field
	Spec *GatewayRouteSpec `locationName:"spec" type:"structure" required:"true"`

	Tags []*TagRef `locationName:"tags" type:"list"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `location:"uri" locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateGatewayRouteInput) GoString added in v1.33.5

func (s CreateGatewayRouteInput) GoString() string

GoString returns the string representation

func (*CreateGatewayRouteInput) SetClientToken added in v1.33.5

SetClientToken sets the ClientToken field's value.

func (*CreateGatewayRouteInput) SetGatewayRouteName added in v1.33.5

func (s *CreateGatewayRouteInput) SetGatewayRouteName(v string) *CreateGatewayRouteInput

SetGatewayRouteName sets the GatewayRouteName field's value.

func (*CreateGatewayRouteInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*CreateGatewayRouteInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*CreateGatewayRouteInput) SetSpec added in v1.33.5

SetSpec sets the Spec field's value.

func (*CreateGatewayRouteInput) SetTags added in v1.33.5

SetTags sets the Tags field's value.

func (*CreateGatewayRouteInput) SetVirtualGatewayName added in v1.33.5

func (s *CreateGatewayRouteInput) SetVirtualGatewayName(v string) *CreateGatewayRouteInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (CreateGatewayRouteInput) String added in v1.33.5

func (s CreateGatewayRouteInput) String() string

String returns the string representation

func (*CreateGatewayRouteInput) Validate added in v1.33.5

func (s *CreateGatewayRouteInput) Validate() error

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

type CreateGatewayRouteOutput added in v1.33.5

type CreateGatewayRouteOutput struct {

	// An object that represents a gateway route returned by a describe operation.
	//
	// GatewayRoute is a required field
	GatewayRoute *GatewayRouteData `locationName:"gatewayRoute" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (CreateGatewayRouteOutput) GoString added in v1.33.5

func (s CreateGatewayRouteOutput) GoString() string

GoString returns the string representation

func (*CreateGatewayRouteOutput) SetGatewayRoute added in v1.33.5

SetGatewayRoute sets the GatewayRoute field's value.

func (CreateGatewayRouteOutput) String added in v1.33.5

func (s CreateGatewayRouteOutput) String() string

String returns the string representation

type CreateMeshInput

type CreateMeshInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents the specification of a service mesh.
	Spec *MeshSpec `locationName:"spec" type:"structure"`

	Tags []*TagRef `locationName:"tags" type:"list"`
	// contains filtered or unexported fields
}

func (CreateMeshInput) GoString

func (s CreateMeshInput) GoString() string

GoString returns the string representation

func (*CreateMeshInput) SetClientToken

func (s *CreateMeshInput) SetClientToken(v string) *CreateMeshInput

SetClientToken sets the ClientToken field's value.

func (*CreateMeshInput) SetMeshName

func (s *CreateMeshInput) SetMeshName(v string) *CreateMeshInput

SetMeshName sets the MeshName field's value.

func (*CreateMeshInput) SetSpec added in v1.19.3

func (s *CreateMeshInput) SetSpec(v *MeshSpec) *CreateMeshInput

SetSpec sets the Spec field's value.

func (*CreateMeshInput) SetTags added in v1.19.3

func (s *CreateMeshInput) SetTags(v []*TagRef) *CreateMeshInput

SetTags sets the Tags field's value.

func (CreateMeshInput) String

func (s CreateMeshInput) String() string

String returns the string representation

func (*CreateMeshInput) Validate

func (s *CreateMeshInput) Validate() error

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

type CreateMeshOutput

type CreateMeshOutput struct {

	// An object that represents a service mesh returned by a describe operation.
	//
	// Mesh is a required field
	Mesh *MeshData `locationName:"mesh" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (CreateMeshOutput) GoString

func (s CreateMeshOutput) GoString() string

GoString returns the string representation

func (*CreateMeshOutput) SetMesh

func (s *CreateMeshOutput) SetMesh(v *MeshData) *CreateMeshOutput

SetMesh sets the Mesh field's value.

func (CreateMeshOutput) String

func (s CreateMeshOutput) String() string

String returns the string representation

type CreateRouteInput

type CreateRouteInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// RouteName is a required field
	RouteName *string `locationName:"routeName" min:"1" type:"string" required:"true"`

	// An object that represents a route specification. Specify one route type.
	//
	// Spec is a required field
	Spec *RouteSpec `locationName:"spec" type:"structure" required:"true"`

	Tags []*TagRef `locationName:"tags" type:"list"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `location:"uri" locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateRouteInput) GoString

func (s CreateRouteInput) GoString() string

GoString returns the string representation

func (*CreateRouteInput) SetClientToken

func (s *CreateRouteInput) SetClientToken(v string) *CreateRouteInput

SetClientToken sets the ClientToken field's value.

func (*CreateRouteInput) SetMeshName

func (s *CreateRouteInput) SetMeshName(v string) *CreateRouteInput

SetMeshName sets the MeshName field's value.

func (*CreateRouteInput) SetMeshOwner added in v1.29.19

func (s *CreateRouteInput) SetMeshOwner(v string) *CreateRouteInput

SetMeshOwner sets the MeshOwner field's value.

func (*CreateRouteInput) SetRouteName

func (s *CreateRouteInput) SetRouteName(v string) *CreateRouteInput

SetRouteName sets the RouteName field's value.

func (*CreateRouteInput) SetSpec

SetSpec sets the Spec field's value.

func (*CreateRouteInput) SetTags added in v1.19.3

func (s *CreateRouteInput) SetTags(v []*TagRef) *CreateRouteInput

SetTags sets the Tags field's value.

func (*CreateRouteInput) SetVirtualRouterName

func (s *CreateRouteInput) SetVirtualRouterName(v string) *CreateRouteInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (CreateRouteInput) String

func (s CreateRouteInput) String() string

String returns the string representation

func (*CreateRouteInput) Validate

func (s *CreateRouteInput) Validate() error

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

type CreateRouteOutput

type CreateRouteOutput struct {

	// An object that represents a route returned by a describe operation.
	//
	// Route is a required field
	Route *RouteData `locationName:"route" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (CreateRouteOutput) GoString

func (s CreateRouteOutput) GoString() string

GoString returns the string representation

func (*CreateRouteOutput) SetRoute

SetRoute sets the Route field's value.

func (CreateRouteOutput) String

func (s CreateRouteOutput) String() string

String returns the string representation

type CreateVirtualGatewayInput added in v1.33.5

type CreateVirtualGatewayInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents the specification of a service mesh resource.
	//
	// Spec is a required field
	Spec *VirtualGatewaySpec `locationName:"spec" type:"structure" required:"true"`

	Tags []*TagRef `locationName:"tags" type:"list"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateVirtualGatewayInput) GoString added in v1.33.5

func (s CreateVirtualGatewayInput) GoString() string

GoString returns the string representation

func (*CreateVirtualGatewayInput) SetClientToken added in v1.33.5

SetClientToken sets the ClientToken field's value.

func (*CreateVirtualGatewayInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*CreateVirtualGatewayInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*CreateVirtualGatewayInput) SetSpec added in v1.33.5

SetSpec sets the Spec field's value.

func (*CreateVirtualGatewayInput) SetTags added in v1.33.5

SetTags sets the Tags field's value.

func (*CreateVirtualGatewayInput) SetVirtualGatewayName added in v1.33.5

func (s *CreateVirtualGatewayInput) SetVirtualGatewayName(v string) *CreateVirtualGatewayInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (CreateVirtualGatewayInput) String added in v1.33.5

func (s CreateVirtualGatewayInput) String() string

String returns the string representation

func (*CreateVirtualGatewayInput) Validate added in v1.33.5

func (s *CreateVirtualGatewayInput) Validate() error

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

type CreateVirtualGatewayOutput added in v1.33.5

type CreateVirtualGatewayOutput struct {

	// An object that represents a virtual gateway returned by a describe operation.
	//
	// VirtualGateway is a required field
	VirtualGateway *VirtualGatewayData `locationName:"virtualGateway" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (CreateVirtualGatewayOutput) GoString added in v1.33.5

func (s CreateVirtualGatewayOutput) GoString() string

GoString returns the string representation

func (*CreateVirtualGatewayOutput) SetVirtualGateway added in v1.33.5

SetVirtualGateway sets the VirtualGateway field's value.

func (CreateVirtualGatewayOutput) String added in v1.33.5

String returns the string representation

type CreateVirtualNodeInput

type CreateVirtualNodeInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents the specification of a virtual node.
	//
	// Spec is a required field
	Spec *VirtualNodeSpec `locationName:"spec" type:"structure" required:"true"`

	Tags []*TagRef `locationName:"tags" type:"list"`

	// VirtualNodeName is a required field
	VirtualNodeName *string `locationName:"virtualNodeName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateVirtualNodeInput) GoString

func (s CreateVirtualNodeInput) GoString() string

GoString returns the string representation

func (*CreateVirtualNodeInput) SetClientToken

SetClientToken sets the ClientToken field's value.

func (*CreateVirtualNodeInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*CreateVirtualNodeInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*CreateVirtualNodeInput) SetSpec

SetSpec sets the Spec field's value.

func (*CreateVirtualNodeInput) SetTags added in v1.19.3

SetTags sets the Tags field's value.

func (*CreateVirtualNodeInput) SetVirtualNodeName

func (s *CreateVirtualNodeInput) SetVirtualNodeName(v string) *CreateVirtualNodeInput

SetVirtualNodeName sets the VirtualNodeName field's value.

func (CreateVirtualNodeInput) String

func (s CreateVirtualNodeInput) String() string

String returns the string representation

func (*CreateVirtualNodeInput) Validate

func (s *CreateVirtualNodeInput) Validate() error

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

type CreateVirtualNodeOutput

type CreateVirtualNodeOutput struct {

	// An object that represents a virtual node returned by a describe operation.
	//
	// VirtualNode is a required field
	VirtualNode *VirtualNodeData `locationName:"virtualNode" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (CreateVirtualNodeOutput) GoString

func (s CreateVirtualNodeOutput) GoString() string

GoString returns the string representation

func (*CreateVirtualNodeOutput) SetVirtualNode

SetVirtualNode sets the VirtualNode field's value.

func (CreateVirtualNodeOutput) String

func (s CreateVirtualNodeOutput) String() string

String returns the string representation

type CreateVirtualRouterInput

type CreateVirtualRouterInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents the specification of a virtual router.
	//
	// Spec is a required field
	Spec *VirtualRouterSpec `locationName:"spec" type:"structure" required:"true"`

	Tags []*TagRef `locationName:"tags" type:"list"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateVirtualRouterInput) GoString

func (s CreateVirtualRouterInput) GoString() string

GoString returns the string representation

func (*CreateVirtualRouterInput) SetClientToken

SetClientToken sets the ClientToken field's value.

func (*CreateVirtualRouterInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*CreateVirtualRouterInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*CreateVirtualRouterInput) SetSpec

SetSpec sets the Spec field's value.

func (*CreateVirtualRouterInput) SetTags added in v1.19.3

SetTags sets the Tags field's value.

func (*CreateVirtualRouterInput) SetVirtualRouterName

func (s *CreateVirtualRouterInput) SetVirtualRouterName(v string) *CreateVirtualRouterInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (CreateVirtualRouterInput) String

func (s CreateVirtualRouterInput) String() string

String returns the string representation

func (*CreateVirtualRouterInput) Validate

func (s *CreateVirtualRouterInput) Validate() error

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

type CreateVirtualRouterOutput

type CreateVirtualRouterOutput struct {

	// An object that represents a virtual router returned by a describe operation.
	//
	// VirtualRouter is a required field
	VirtualRouter *VirtualRouterData `locationName:"virtualRouter" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (CreateVirtualRouterOutput) GoString

func (s CreateVirtualRouterOutput) GoString() string

GoString returns the string representation

func (*CreateVirtualRouterOutput) SetVirtualRouter

SetVirtualRouter sets the VirtualRouter field's value.

func (CreateVirtualRouterOutput) String

func (s CreateVirtualRouterOutput) String() string

String returns the string representation

type CreateVirtualServiceInput added in v1.17.13

type CreateVirtualServiceInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents the specification of a virtual service.
	//
	// Spec is a required field
	Spec *VirtualServiceSpec `locationName:"spec" type:"structure" required:"true"`

	Tags []*TagRef `locationName:"tags" type:"list"`

	// VirtualServiceName is a required field
	VirtualServiceName *string `locationName:"virtualServiceName" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateVirtualServiceInput) GoString added in v1.17.13

func (s CreateVirtualServiceInput) GoString() string

GoString returns the string representation

func (*CreateVirtualServiceInput) SetClientToken added in v1.17.13

SetClientToken sets the ClientToken field's value.

func (*CreateVirtualServiceInput) SetMeshName added in v1.17.13

SetMeshName sets the MeshName field's value.

func (*CreateVirtualServiceInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*CreateVirtualServiceInput) SetSpec added in v1.17.13

SetSpec sets the Spec field's value.

func (*CreateVirtualServiceInput) SetTags added in v1.19.3

SetTags sets the Tags field's value.

func (*CreateVirtualServiceInput) SetVirtualServiceName added in v1.17.13

func (s *CreateVirtualServiceInput) SetVirtualServiceName(v string) *CreateVirtualServiceInput

SetVirtualServiceName sets the VirtualServiceName field's value.

func (CreateVirtualServiceInput) String added in v1.17.13

func (s CreateVirtualServiceInput) String() string

String returns the string representation

func (*CreateVirtualServiceInput) Validate added in v1.17.13

func (s *CreateVirtualServiceInput) Validate() error

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

type CreateVirtualServiceOutput added in v1.17.13

type CreateVirtualServiceOutput struct {

	// An object that represents a virtual service returned by a describe operation.
	//
	// VirtualService is a required field
	VirtualService *VirtualServiceData `locationName:"virtualService" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (CreateVirtualServiceOutput) GoString added in v1.17.13

func (s CreateVirtualServiceOutput) GoString() string

GoString returns the string representation

func (*CreateVirtualServiceOutput) SetVirtualService added in v1.17.13

SetVirtualService sets the VirtualService field's value.

func (CreateVirtualServiceOutput) String added in v1.17.13

String returns the string representation

type DeleteGatewayRouteInput added in v1.33.5

type DeleteGatewayRouteInput struct {

	// GatewayRouteName is a required field
	GatewayRouteName *string `location:"uri" locationName:"gatewayRouteName" min:"1" type:"string" required:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `location:"uri" locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteGatewayRouteInput) GoString added in v1.33.5

func (s DeleteGatewayRouteInput) GoString() string

GoString returns the string representation

func (*DeleteGatewayRouteInput) SetGatewayRouteName added in v1.33.5

func (s *DeleteGatewayRouteInput) SetGatewayRouteName(v string) *DeleteGatewayRouteInput

SetGatewayRouteName sets the GatewayRouteName field's value.

func (*DeleteGatewayRouteInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*DeleteGatewayRouteInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*DeleteGatewayRouteInput) SetVirtualGatewayName added in v1.33.5

func (s *DeleteGatewayRouteInput) SetVirtualGatewayName(v string) *DeleteGatewayRouteInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (DeleteGatewayRouteInput) String added in v1.33.5

func (s DeleteGatewayRouteInput) String() string

String returns the string representation

func (*DeleteGatewayRouteInput) Validate added in v1.33.5

func (s *DeleteGatewayRouteInput) Validate() error

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

type DeleteGatewayRouteOutput added in v1.33.5

type DeleteGatewayRouteOutput struct {

	// An object that represents a gateway route returned by a describe operation.
	//
	// GatewayRoute is a required field
	GatewayRoute *GatewayRouteData `locationName:"gatewayRoute" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteGatewayRouteOutput) GoString added in v1.33.5

func (s DeleteGatewayRouteOutput) GoString() string

GoString returns the string representation

func (*DeleteGatewayRouteOutput) SetGatewayRoute added in v1.33.5

SetGatewayRoute sets the GatewayRoute field's value.

func (DeleteGatewayRouteOutput) String added in v1.33.5

func (s DeleteGatewayRouteOutput) String() string

String returns the string representation

type DeleteMeshInput

type DeleteMeshInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteMeshInput) GoString

func (s DeleteMeshInput) GoString() string

GoString returns the string representation

func (*DeleteMeshInput) SetMeshName

func (s *DeleteMeshInput) SetMeshName(v string) *DeleteMeshInput

SetMeshName sets the MeshName field's value.

func (DeleteMeshInput) String

func (s DeleteMeshInput) String() string

String returns the string representation

func (*DeleteMeshInput) Validate

func (s *DeleteMeshInput) Validate() error

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

type DeleteMeshOutput

type DeleteMeshOutput struct {

	// An object that represents a service mesh returned by a describe operation.
	//
	// Mesh is a required field
	Mesh *MeshData `locationName:"mesh" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteMeshOutput) GoString

func (s DeleteMeshOutput) GoString() string

GoString returns the string representation

func (*DeleteMeshOutput) SetMesh

func (s *DeleteMeshOutput) SetMesh(v *MeshData) *DeleteMeshOutput

SetMesh sets the Mesh field's value.

func (DeleteMeshOutput) String

func (s DeleteMeshOutput) String() string

String returns the string representation

type DeleteRouteInput

type DeleteRouteInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// RouteName is a required field
	RouteName *string `location:"uri" locationName:"routeName" min:"1" type:"string" required:"true"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `location:"uri" locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteRouteInput) GoString

func (s DeleteRouteInput) GoString() string

GoString returns the string representation

func (*DeleteRouteInput) SetMeshName

func (s *DeleteRouteInput) SetMeshName(v string) *DeleteRouteInput

SetMeshName sets the MeshName field's value.

func (*DeleteRouteInput) SetMeshOwner added in v1.29.19

func (s *DeleteRouteInput) SetMeshOwner(v string) *DeleteRouteInput

SetMeshOwner sets the MeshOwner field's value.

func (*DeleteRouteInput) SetRouteName

func (s *DeleteRouteInput) SetRouteName(v string) *DeleteRouteInput

SetRouteName sets the RouteName field's value.

func (*DeleteRouteInput) SetVirtualRouterName

func (s *DeleteRouteInput) SetVirtualRouterName(v string) *DeleteRouteInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (DeleteRouteInput) String

func (s DeleteRouteInput) String() string

String returns the string representation

func (*DeleteRouteInput) Validate

func (s *DeleteRouteInput) Validate() error

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

type DeleteRouteOutput

type DeleteRouteOutput struct {

	// An object that represents a route returned by a describe operation.
	//
	// Route is a required field
	Route *RouteData `locationName:"route" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteRouteOutput) GoString

func (s DeleteRouteOutput) GoString() string

GoString returns the string representation

func (*DeleteRouteOutput) SetRoute

SetRoute sets the Route field's value.

func (DeleteRouteOutput) String

func (s DeleteRouteOutput) String() string

String returns the string representation

type DeleteVirtualGatewayInput added in v1.33.5

type DeleteVirtualGatewayInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `location:"uri" locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteVirtualGatewayInput) GoString added in v1.33.5

func (s DeleteVirtualGatewayInput) GoString() string

GoString returns the string representation

func (*DeleteVirtualGatewayInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*DeleteVirtualGatewayInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*DeleteVirtualGatewayInput) SetVirtualGatewayName added in v1.33.5

func (s *DeleteVirtualGatewayInput) SetVirtualGatewayName(v string) *DeleteVirtualGatewayInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (DeleteVirtualGatewayInput) String added in v1.33.5

func (s DeleteVirtualGatewayInput) String() string

String returns the string representation

func (*DeleteVirtualGatewayInput) Validate added in v1.33.5

func (s *DeleteVirtualGatewayInput) Validate() error

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

type DeleteVirtualGatewayOutput added in v1.33.5

type DeleteVirtualGatewayOutput struct {

	// An object that represents a virtual gateway returned by a describe operation.
	//
	// VirtualGateway is a required field
	VirtualGateway *VirtualGatewayData `locationName:"virtualGateway" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteVirtualGatewayOutput) GoString added in v1.33.5

func (s DeleteVirtualGatewayOutput) GoString() string

GoString returns the string representation

func (*DeleteVirtualGatewayOutput) SetVirtualGateway added in v1.33.5

SetVirtualGateway sets the VirtualGateway field's value.

func (DeleteVirtualGatewayOutput) String added in v1.33.5

String returns the string representation

type DeleteVirtualNodeInput

type DeleteVirtualNodeInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualNodeName is a required field
	VirtualNodeName *string `location:"uri" locationName:"virtualNodeName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteVirtualNodeInput) GoString

func (s DeleteVirtualNodeInput) GoString() string

GoString returns the string representation

func (*DeleteVirtualNodeInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*DeleteVirtualNodeInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*DeleteVirtualNodeInput) SetVirtualNodeName

func (s *DeleteVirtualNodeInput) SetVirtualNodeName(v string) *DeleteVirtualNodeInput

SetVirtualNodeName sets the VirtualNodeName field's value.

func (DeleteVirtualNodeInput) String

func (s DeleteVirtualNodeInput) String() string

String returns the string representation

func (*DeleteVirtualNodeInput) Validate

func (s *DeleteVirtualNodeInput) Validate() error

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

type DeleteVirtualNodeOutput

type DeleteVirtualNodeOutput struct {

	// An object that represents a virtual node returned by a describe operation.
	//
	// VirtualNode is a required field
	VirtualNode *VirtualNodeData `locationName:"virtualNode" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteVirtualNodeOutput) GoString

func (s DeleteVirtualNodeOutput) GoString() string

GoString returns the string representation

func (*DeleteVirtualNodeOutput) SetVirtualNode

SetVirtualNode sets the VirtualNode field's value.

func (DeleteVirtualNodeOutput) String

func (s DeleteVirtualNodeOutput) String() string

String returns the string representation

type DeleteVirtualRouterInput

type DeleteVirtualRouterInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `location:"uri" locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteVirtualRouterInput) GoString

func (s DeleteVirtualRouterInput) GoString() string

GoString returns the string representation

func (*DeleteVirtualRouterInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*DeleteVirtualRouterInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*DeleteVirtualRouterInput) SetVirtualRouterName

func (s *DeleteVirtualRouterInput) SetVirtualRouterName(v string) *DeleteVirtualRouterInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (DeleteVirtualRouterInput) String

func (s DeleteVirtualRouterInput) String() string

String returns the string representation

func (*DeleteVirtualRouterInput) Validate

func (s *DeleteVirtualRouterInput) Validate() error

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

type DeleteVirtualRouterOutput

type DeleteVirtualRouterOutput struct {

	// An object that represents a virtual router returned by a describe operation.
	//
	// VirtualRouter is a required field
	VirtualRouter *VirtualRouterData `locationName:"virtualRouter" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteVirtualRouterOutput) GoString

func (s DeleteVirtualRouterOutput) GoString() string

GoString returns the string representation

func (*DeleteVirtualRouterOutput) SetVirtualRouter

SetVirtualRouter sets the VirtualRouter field's value.

func (DeleteVirtualRouterOutput) String

func (s DeleteVirtualRouterOutput) String() string

String returns the string representation

type DeleteVirtualServiceInput added in v1.17.13

type DeleteVirtualServiceInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualServiceName is a required field
	VirtualServiceName *string `location:"uri" locationName:"virtualServiceName" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteVirtualServiceInput) GoString added in v1.17.13

func (s DeleteVirtualServiceInput) GoString() string

GoString returns the string representation

func (*DeleteVirtualServiceInput) SetMeshName added in v1.17.13

SetMeshName sets the MeshName field's value.

func (*DeleteVirtualServiceInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*DeleteVirtualServiceInput) SetVirtualServiceName added in v1.17.13

func (s *DeleteVirtualServiceInput) SetVirtualServiceName(v string) *DeleteVirtualServiceInput

SetVirtualServiceName sets the VirtualServiceName field's value.

func (DeleteVirtualServiceInput) String added in v1.17.13

func (s DeleteVirtualServiceInput) String() string

String returns the string representation

func (*DeleteVirtualServiceInput) Validate added in v1.17.13

func (s *DeleteVirtualServiceInput) Validate() error

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

type DeleteVirtualServiceOutput added in v1.17.13

type DeleteVirtualServiceOutput struct {

	// An object that represents a virtual service returned by a describe operation.
	//
	// VirtualService is a required field
	VirtualService *VirtualServiceData `locationName:"virtualService" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteVirtualServiceOutput) GoString added in v1.17.13

func (s DeleteVirtualServiceOutput) GoString() string

GoString returns the string representation

func (*DeleteVirtualServiceOutput) SetVirtualService added in v1.17.13

SetVirtualService sets the VirtualService field's value.

func (DeleteVirtualServiceOutput) String added in v1.17.13

String returns the string representation

type DescribeGatewayRouteInput added in v1.33.5

type DescribeGatewayRouteInput struct {

	// GatewayRouteName is a required field
	GatewayRouteName *string `location:"uri" locationName:"gatewayRouteName" min:"1" type:"string" required:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `location:"uri" locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeGatewayRouteInput) GoString added in v1.33.5

func (s DescribeGatewayRouteInput) GoString() string

GoString returns the string representation

func (*DescribeGatewayRouteInput) SetGatewayRouteName added in v1.33.5

func (s *DescribeGatewayRouteInput) SetGatewayRouteName(v string) *DescribeGatewayRouteInput

SetGatewayRouteName sets the GatewayRouteName field's value.

func (*DescribeGatewayRouteInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*DescribeGatewayRouteInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*DescribeGatewayRouteInput) SetVirtualGatewayName added in v1.33.5

func (s *DescribeGatewayRouteInput) SetVirtualGatewayName(v string) *DescribeGatewayRouteInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (DescribeGatewayRouteInput) String added in v1.33.5

func (s DescribeGatewayRouteInput) String() string

String returns the string representation

func (*DescribeGatewayRouteInput) Validate added in v1.33.5

func (s *DescribeGatewayRouteInput) Validate() error

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

type DescribeGatewayRouteOutput added in v1.33.5

type DescribeGatewayRouteOutput struct {

	// An object that represents a gateway route returned by a describe operation.
	//
	// GatewayRoute is a required field
	GatewayRoute *GatewayRouteData `locationName:"gatewayRoute" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeGatewayRouteOutput) GoString added in v1.33.5

func (s DescribeGatewayRouteOutput) GoString() string

GoString returns the string representation

func (*DescribeGatewayRouteOutput) SetGatewayRoute added in v1.33.5

SetGatewayRoute sets the GatewayRoute field's value.

func (DescribeGatewayRouteOutput) String added in v1.33.5

String returns the string representation

type DescribeMeshInput

type DescribeMeshInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`
	// contains filtered or unexported fields
}

func (DescribeMeshInput) GoString

func (s DescribeMeshInput) GoString() string

GoString returns the string representation

func (*DescribeMeshInput) SetMeshName

func (s *DescribeMeshInput) SetMeshName(v string) *DescribeMeshInput

SetMeshName sets the MeshName field's value.

func (*DescribeMeshInput) SetMeshOwner added in v1.29.19

func (s *DescribeMeshInput) SetMeshOwner(v string) *DescribeMeshInput

SetMeshOwner sets the MeshOwner field's value.

func (DescribeMeshInput) String

func (s DescribeMeshInput) String() string

String returns the string representation

func (*DescribeMeshInput) Validate

func (s *DescribeMeshInput) Validate() error

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

type DescribeMeshOutput

type DescribeMeshOutput struct {

	// An object that represents a service mesh returned by a describe operation.
	//
	// Mesh is a required field
	Mesh *MeshData `locationName:"mesh" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeMeshOutput) GoString

func (s DescribeMeshOutput) GoString() string

GoString returns the string representation

func (*DescribeMeshOutput) SetMesh

SetMesh sets the Mesh field's value.

func (DescribeMeshOutput) String

func (s DescribeMeshOutput) String() string

String returns the string representation

type DescribeRouteInput

type DescribeRouteInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// RouteName is a required field
	RouteName *string `location:"uri" locationName:"routeName" min:"1" type:"string" required:"true"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `location:"uri" locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeRouteInput) GoString

func (s DescribeRouteInput) GoString() string

GoString returns the string representation

func (*DescribeRouteInput) SetMeshName

func (s *DescribeRouteInput) SetMeshName(v string) *DescribeRouteInput

SetMeshName sets the MeshName field's value.

func (*DescribeRouteInput) SetMeshOwner added in v1.29.19

func (s *DescribeRouteInput) SetMeshOwner(v string) *DescribeRouteInput

SetMeshOwner sets the MeshOwner field's value.

func (*DescribeRouteInput) SetRouteName

func (s *DescribeRouteInput) SetRouteName(v string) *DescribeRouteInput

SetRouteName sets the RouteName field's value.

func (*DescribeRouteInput) SetVirtualRouterName

func (s *DescribeRouteInput) SetVirtualRouterName(v string) *DescribeRouteInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (DescribeRouteInput) String

func (s DescribeRouteInput) String() string

String returns the string representation

func (*DescribeRouteInput) Validate

func (s *DescribeRouteInput) Validate() error

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

type DescribeRouteOutput

type DescribeRouteOutput struct {

	// An object that represents a route returned by a describe operation.
	//
	// Route is a required field
	Route *RouteData `locationName:"route" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeRouteOutput) GoString

func (s DescribeRouteOutput) GoString() string

GoString returns the string representation

func (*DescribeRouteOutput) SetRoute

SetRoute sets the Route field's value.

func (DescribeRouteOutput) String

func (s DescribeRouteOutput) String() string

String returns the string representation

type DescribeVirtualGatewayInput added in v1.33.5

type DescribeVirtualGatewayInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `location:"uri" locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeVirtualGatewayInput) GoString added in v1.33.5

func (s DescribeVirtualGatewayInput) GoString() string

GoString returns the string representation

func (*DescribeVirtualGatewayInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*DescribeVirtualGatewayInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*DescribeVirtualGatewayInput) SetVirtualGatewayName added in v1.33.5

func (s *DescribeVirtualGatewayInput) SetVirtualGatewayName(v string) *DescribeVirtualGatewayInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (DescribeVirtualGatewayInput) String added in v1.33.5

String returns the string representation

func (*DescribeVirtualGatewayInput) Validate added in v1.33.5

func (s *DescribeVirtualGatewayInput) Validate() error

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

type DescribeVirtualGatewayOutput added in v1.33.5

type DescribeVirtualGatewayOutput struct {

	// An object that represents a virtual gateway returned by a describe operation.
	//
	// VirtualGateway is a required field
	VirtualGateway *VirtualGatewayData `locationName:"virtualGateway" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeVirtualGatewayOutput) GoString added in v1.33.5

func (s DescribeVirtualGatewayOutput) GoString() string

GoString returns the string representation

func (*DescribeVirtualGatewayOutput) SetVirtualGateway added in v1.33.5

SetVirtualGateway sets the VirtualGateway field's value.

func (DescribeVirtualGatewayOutput) String added in v1.33.5

String returns the string representation

type DescribeVirtualNodeInput

type DescribeVirtualNodeInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualNodeName is a required field
	VirtualNodeName *string `location:"uri" locationName:"virtualNodeName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeVirtualNodeInput) GoString

func (s DescribeVirtualNodeInput) GoString() string

GoString returns the string representation

func (*DescribeVirtualNodeInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*DescribeVirtualNodeInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*DescribeVirtualNodeInput) SetVirtualNodeName

func (s *DescribeVirtualNodeInput) SetVirtualNodeName(v string) *DescribeVirtualNodeInput

SetVirtualNodeName sets the VirtualNodeName field's value.

func (DescribeVirtualNodeInput) String

func (s DescribeVirtualNodeInput) String() string

String returns the string representation

func (*DescribeVirtualNodeInput) Validate

func (s *DescribeVirtualNodeInput) Validate() error

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

type DescribeVirtualNodeOutput

type DescribeVirtualNodeOutput struct {

	// An object that represents a virtual node returned by a describe operation.
	//
	// VirtualNode is a required field
	VirtualNode *VirtualNodeData `locationName:"virtualNode" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeVirtualNodeOutput) GoString

func (s DescribeVirtualNodeOutput) GoString() string

GoString returns the string representation

func (*DescribeVirtualNodeOutput) SetVirtualNode

SetVirtualNode sets the VirtualNode field's value.

func (DescribeVirtualNodeOutput) String

func (s DescribeVirtualNodeOutput) String() string

String returns the string representation

type DescribeVirtualRouterInput

type DescribeVirtualRouterInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `location:"uri" locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeVirtualRouterInput) GoString

func (s DescribeVirtualRouterInput) GoString() string

GoString returns the string representation

func (*DescribeVirtualRouterInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*DescribeVirtualRouterInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*DescribeVirtualRouterInput) SetVirtualRouterName

func (s *DescribeVirtualRouterInput) SetVirtualRouterName(v string) *DescribeVirtualRouterInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (DescribeVirtualRouterInput) String

String returns the string representation

func (*DescribeVirtualRouterInput) Validate

func (s *DescribeVirtualRouterInput) Validate() error

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

type DescribeVirtualRouterOutput

type DescribeVirtualRouterOutput struct {

	// An object that represents a virtual router returned by a describe operation.
	//
	// VirtualRouter is a required field
	VirtualRouter *VirtualRouterData `locationName:"virtualRouter" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeVirtualRouterOutput) GoString

func (s DescribeVirtualRouterOutput) GoString() string

GoString returns the string representation

func (*DescribeVirtualRouterOutput) SetVirtualRouter

SetVirtualRouter sets the VirtualRouter field's value.

func (DescribeVirtualRouterOutput) String

String returns the string representation

type DescribeVirtualServiceInput added in v1.17.13

type DescribeVirtualServiceInput struct {

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// VirtualServiceName is a required field
	VirtualServiceName *string `location:"uri" locationName:"virtualServiceName" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeVirtualServiceInput) GoString added in v1.17.13

func (s DescribeVirtualServiceInput) GoString() string

GoString returns the string representation

func (*DescribeVirtualServiceInput) SetMeshName added in v1.17.13

SetMeshName sets the MeshName field's value.

func (*DescribeVirtualServiceInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*DescribeVirtualServiceInput) SetVirtualServiceName added in v1.17.13

func (s *DescribeVirtualServiceInput) SetVirtualServiceName(v string) *DescribeVirtualServiceInput

SetVirtualServiceName sets the VirtualServiceName field's value.

func (DescribeVirtualServiceInput) String added in v1.17.13

String returns the string representation

func (*DescribeVirtualServiceInput) Validate added in v1.17.13

func (s *DescribeVirtualServiceInput) Validate() error

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

type DescribeVirtualServiceOutput added in v1.17.13

type DescribeVirtualServiceOutput struct {

	// An object that represents a virtual service returned by a describe operation.
	//
	// VirtualService is a required field
	VirtualService *VirtualServiceData `locationName:"virtualService" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeVirtualServiceOutput) GoString added in v1.17.13

func (s DescribeVirtualServiceOutput) GoString() string

GoString returns the string representation

func (*DescribeVirtualServiceOutput) SetVirtualService added in v1.17.13

SetVirtualService sets the VirtualService field's value.

func (DescribeVirtualServiceOutput) String added in v1.17.13

String returns the string representation

type DnsServiceDiscovery

type DnsServiceDiscovery struct {

	// Hostname is a required field
	Hostname *string `locationName:"hostname" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the DNS service discovery information for your virtual node.

func (DnsServiceDiscovery) GoString

func (s DnsServiceDiscovery) GoString() string

GoString returns the string representation

func (*DnsServiceDiscovery) SetHostname added in v1.17.13

func (s *DnsServiceDiscovery) SetHostname(v string) *DnsServiceDiscovery

SetHostname sets the Hostname field's value.

func (DnsServiceDiscovery) String

func (s DnsServiceDiscovery) String() string

String returns the string representation

func (*DnsServiceDiscovery) Validate added in v1.17.13

func (s *DnsServiceDiscovery) Validate() error

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

type Duration added in v1.23.18

type Duration struct {
	Unit *string `locationName:"unit" type:"string" enum:"DurationUnit"`

	Value *int64 `locationName:"value" type:"long"`
	// contains filtered or unexported fields
}

An object that represents a duration of time.

func (Duration) GoString added in v1.23.18

func (s Duration) GoString() string

GoString returns the string representation

func (*Duration) SetUnit added in v1.23.18

func (s *Duration) SetUnit(v string) *Duration

SetUnit sets the Unit field's value.

func (*Duration) SetValue added in v1.23.18

func (s *Duration) SetValue(v int64) *Duration

SetValue sets the Value field's value.

func (Duration) String added in v1.23.18

func (s Duration) String() string

String returns the string representation

type EgressFilter added in v1.19.3

type EgressFilter struct {

	// Type is a required field
	Type *string `locationName:"type" type:"string" required:"true" enum:"EgressFilterType"`
	// contains filtered or unexported fields
}

An object that represents the egress filter rules for a service mesh.

func (EgressFilter) GoString added in v1.19.3

func (s EgressFilter) GoString() string

GoString returns the string representation

func (*EgressFilter) SetType added in v1.19.3

func (s *EgressFilter) SetType(v string) *EgressFilter

SetType sets the Type field's value.

func (EgressFilter) String added in v1.19.3

func (s EgressFilter) String() string

String returns the string representation

func (*EgressFilter) Validate added in v1.19.3

func (s *EgressFilter) Validate() error

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

type FileAccessLog added in v1.19.3

type FileAccessLog struct {

	// Path is a required field
	Path *string `locationName:"path" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents an access log file.

func (FileAccessLog) GoString added in v1.19.3

func (s FileAccessLog) GoString() string

GoString returns the string representation

func (*FileAccessLog) SetPath added in v1.19.3

func (s *FileAccessLog) SetPath(v string) *FileAccessLog

SetPath sets the Path field's value.

func (FileAccessLog) String added in v1.19.3

func (s FileAccessLog) String() string

String returns the string representation

func (*FileAccessLog) Validate added in v1.19.3

func (s *FileAccessLog) Validate() error

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

type ForbiddenException added in v1.28.0

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

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

You don't have permissions to perform this action.

func (*ForbiddenException) Code added in v1.28.0

func (s *ForbiddenException) Code() string

Code returns the exception type name.

func (*ForbiddenException) Error added in v1.28.0

func (s *ForbiddenException) Error() string

func (ForbiddenException) GoString added in v1.28.0

func (s ForbiddenException) GoString() string

GoString returns the string representation

func (*ForbiddenException) Message added in v1.28.0

func (s *ForbiddenException) Message() string

Message returns the exception's message.

func (*ForbiddenException) OrigErr added in v1.28.0

func (s *ForbiddenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ForbiddenException) RequestID added in v1.28.0

func (s *ForbiddenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ForbiddenException) StatusCode added in v1.28.0

func (s *ForbiddenException) StatusCode() int

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

func (ForbiddenException) String added in v1.28.0

func (s ForbiddenException) String() string

String returns the string representation

type GatewayRouteData added in v1.33.5

type GatewayRouteData struct {

	// GatewayRouteName is a required field
	GatewayRouteName *string `locationName:"gatewayRouteName" min:"1" type:"string" required:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents metadata for a resource.
	//
	// Metadata is a required field
	Metadata *ResourceMetadata `locationName:"metadata" type:"structure" required:"true"`

	// An object that represents a gateway route specification. Specify one gateway
	// route type.
	//
	// Spec is a required field
	Spec *GatewayRouteSpec `locationName:"spec" type:"structure" required:"true"`

	// An object that represents the current status of a gateway route.
	//
	// Status is a required field
	Status *GatewayRouteStatus `locationName:"status" type:"structure" required:"true"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a gateway route returned by a describe operation.

func (GatewayRouteData) GoString added in v1.33.5

func (s GatewayRouteData) GoString() string

GoString returns the string representation

func (*GatewayRouteData) SetGatewayRouteName added in v1.33.5

func (s *GatewayRouteData) SetGatewayRouteName(v string) *GatewayRouteData

SetGatewayRouteName sets the GatewayRouteName field's value.

func (*GatewayRouteData) SetMeshName added in v1.33.5

func (s *GatewayRouteData) SetMeshName(v string) *GatewayRouteData

SetMeshName sets the MeshName field's value.

func (*GatewayRouteData) SetMetadata added in v1.33.5

SetMetadata sets the Metadata field's value.

func (*GatewayRouteData) SetSpec added in v1.33.5

SetSpec sets the Spec field's value.

func (*GatewayRouteData) SetStatus added in v1.33.5

SetStatus sets the Status field's value.

func (*GatewayRouteData) SetVirtualGatewayName added in v1.33.5

func (s *GatewayRouteData) SetVirtualGatewayName(v string) *GatewayRouteData

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (GatewayRouteData) String added in v1.33.5

func (s GatewayRouteData) String() string

String returns the string representation

type GatewayRouteRef added in v1.33.5

type GatewayRouteRef struct {

	// Arn is a required field
	Arn *string `locationName:"arn" type:"string" required:"true"`

	// CreatedAt is a required field
	CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`

	// GatewayRouteName is a required field
	GatewayRouteName *string `locationName:"gatewayRouteName" min:"1" type:"string" required:"true"`

	// LastUpdatedAt is a required field
	LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp" required:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// MeshOwner is a required field
	MeshOwner *string `locationName:"meshOwner" min:"12" type:"string" required:"true"`

	// ResourceOwner is a required field
	ResourceOwner *string `locationName:"resourceOwner" min:"12" type:"string" required:"true"`

	// Version is a required field
	Version *int64 `locationName:"version" type:"long" required:"true"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a gateway route returned by a list operation.

func (GatewayRouteRef) GoString added in v1.33.5

func (s GatewayRouteRef) GoString() string

GoString returns the string representation

func (*GatewayRouteRef) SetArn added in v1.33.5

func (s *GatewayRouteRef) SetArn(v string) *GatewayRouteRef

SetArn sets the Arn field's value.

func (*GatewayRouteRef) SetCreatedAt added in v1.33.5

func (s *GatewayRouteRef) SetCreatedAt(v time.Time) *GatewayRouteRef

SetCreatedAt sets the CreatedAt field's value.

func (*GatewayRouteRef) SetGatewayRouteName added in v1.33.5

func (s *GatewayRouteRef) SetGatewayRouteName(v string) *GatewayRouteRef

SetGatewayRouteName sets the GatewayRouteName field's value.

func (*GatewayRouteRef) SetLastUpdatedAt added in v1.33.5

func (s *GatewayRouteRef) SetLastUpdatedAt(v time.Time) *GatewayRouteRef

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*GatewayRouteRef) SetMeshName added in v1.33.5

func (s *GatewayRouteRef) SetMeshName(v string) *GatewayRouteRef

SetMeshName sets the MeshName field's value.

func (*GatewayRouteRef) SetMeshOwner added in v1.33.5

func (s *GatewayRouteRef) SetMeshOwner(v string) *GatewayRouteRef

SetMeshOwner sets the MeshOwner field's value.

func (*GatewayRouteRef) SetResourceOwner added in v1.33.5

func (s *GatewayRouteRef) SetResourceOwner(v string) *GatewayRouteRef

SetResourceOwner sets the ResourceOwner field's value.

func (*GatewayRouteRef) SetVersion added in v1.33.5

func (s *GatewayRouteRef) SetVersion(v int64) *GatewayRouteRef

SetVersion sets the Version field's value.

func (*GatewayRouteRef) SetVirtualGatewayName added in v1.33.5

func (s *GatewayRouteRef) SetVirtualGatewayName(v string) *GatewayRouteRef

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (GatewayRouteRef) String added in v1.33.5

func (s GatewayRouteRef) String() string

String returns the string representation

type GatewayRouteSpec added in v1.33.5

type GatewayRouteSpec struct {

	// An object that represents a gRPC gateway route.
	GrpcRoute *GrpcGatewayRoute `locationName:"grpcRoute" type:"structure"`

	// An object that represents an HTTP gateway route.
	Http2Route *HttpGatewayRoute `locationName:"http2Route" type:"structure"`

	// An object that represents an HTTP gateway route.
	HttpRoute *HttpGatewayRoute `locationName:"httpRoute" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a gateway route specification. Specify one gateway route type.

func (GatewayRouteSpec) GoString added in v1.33.5

func (s GatewayRouteSpec) GoString() string

GoString returns the string representation

func (*GatewayRouteSpec) SetGrpcRoute added in v1.33.5

func (s *GatewayRouteSpec) SetGrpcRoute(v *GrpcGatewayRoute) *GatewayRouteSpec

SetGrpcRoute sets the GrpcRoute field's value.

func (*GatewayRouteSpec) SetHttp2Route added in v1.33.5

func (s *GatewayRouteSpec) SetHttp2Route(v *HttpGatewayRoute) *GatewayRouteSpec

SetHttp2Route sets the Http2Route field's value.

func (*GatewayRouteSpec) SetHttpRoute added in v1.33.5

func (s *GatewayRouteSpec) SetHttpRoute(v *HttpGatewayRoute) *GatewayRouteSpec

SetHttpRoute sets the HttpRoute field's value.

func (GatewayRouteSpec) String added in v1.33.5

func (s GatewayRouteSpec) String() string

String returns the string representation

func (*GatewayRouteSpec) Validate added in v1.33.5

func (s *GatewayRouteSpec) Validate() error

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

type GatewayRouteStatus added in v1.33.5

type GatewayRouteStatus struct {

	// Status is a required field
	Status *string `locationName:"status" type:"string" required:"true" enum:"GatewayRouteStatusCode"`
	// contains filtered or unexported fields
}

An object that represents the current status of a gateway route.

func (GatewayRouteStatus) GoString added in v1.33.5

func (s GatewayRouteStatus) GoString() string

GoString returns the string representation

func (*GatewayRouteStatus) SetStatus added in v1.33.5

func (s *GatewayRouteStatus) SetStatus(v string) *GatewayRouteStatus

SetStatus sets the Status field's value.

func (GatewayRouteStatus) String added in v1.33.5

func (s GatewayRouteStatus) String() string

String returns the string representation

type GatewayRouteTarget added in v1.33.5

type GatewayRouteTarget struct {

	// An object that represents the virtual service that traffic is routed to.
	//
	// VirtualService is a required field
	VirtualService *GatewayRouteVirtualService `locationName:"virtualService" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a gateway route target.

func (GatewayRouteTarget) GoString added in v1.33.5

func (s GatewayRouteTarget) GoString() string

GoString returns the string representation

func (*GatewayRouteTarget) SetVirtualService added in v1.33.5

SetVirtualService sets the VirtualService field's value.

func (GatewayRouteTarget) String added in v1.33.5

func (s GatewayRouteTarget) String() string

String returns the string representation

func (*GatewayRouteTarget) Validate added in v1.33.5

func (s *GatewayRouteTarget) Validate() error

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

type GatewayRouteVirtualService added in v1.33.5

type GatewayRouteVirtualService struct {

	// VirtualServiceName is a required field
	VirtualServiceName *string `locationName:"virtualServiceName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the virtual service that traffic is routed to.

func (GatewayRouteVirtualService) GoString added in v1.33.5

func (s GatewayRouteVirtualService) GoString() string

GoString returns the string representation

func (*GatewayRouteVirtualService) SetVirtualServiceName added in v1.33.5

func (s *GatewayRouteVirtualService) SetVirtualServiceName(v string) *GatewayRouteVirtualService

SetVirtualServiceName sets the VirtualServiceName field's value.

func (GatewayRouteVirtualService) String added in v1.33.5

String returns the string representation

func (*GatewayRouteVirtualService) Validate added in v1.33.5

func (s *GatewayRouteVirtualService) Validate() error

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

type GrpcGatewayRoute added in v1.33.5

type GrpcGatewayRoute struct {

	// An object that represents the action to take if a match is determined.
	//
	// Action is a required field
	Action *GrpcGatewayRouteAction `locationName:"action" type:"structure" required:"true"`

	// An object that represents the criteria for determining a request match.
	//
	// Match is a required field
	Match *GrpcGatewayRouteMatch `locationName:"match" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a gRPC gateway route.

func (GrpcGatewayRoute) GoString added in v1.33.5

func (s GrpcGatewayRoute) GoString() string

GoString returns the string representation

func (*GrpcGatewayRoute) SetAction added in v1.33.5

SetAction sets the Action field's value.

func (*GrpcGatewayRoute) SetMatch added in v1.33.5

SetMatch sets the Match field's value.

func (GrpcGatewayRoute) String added in v1.33.5

func (s GrpcGatewayRoute) String() string

String returns the string representation

func (*GrpcGatewayRoute) Validate added in v1.33.5

func (s *GrpcGatewayRoute) Validate() error

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

type GrpcGatewayRouteAction added in v1.33.5

type GrpcGatewayRouteAction struct {

	// An object that represents a gateway route target.
	//
	// Target is a required field
	Target *GatewayRouteTarget `locationName:"target" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the action to take if a match is determined.

func (GrpcGatewayRouteAction) GoString added in v1.33.5

func (s GrpcGatewayRouteAction) GoString() string

GoString returns the string representation

func (*GrpcGatewayRouteAction) SetTarget added in v1.33.5

SetTarget sets the Target field's value.

func (GrpcGatewayRouteAction) String added in v1.33.5

func (s GrpcGatewayRouteAction) String() string

String returns the string representation

func (*GrpcGatewayRouteAction) Validate added in v1.33.5

func (s *GrpcGatewayRouteAction) Validate() error

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

type GrpcGatewayRouteMatch added in v1.33.5

type GrpcGatewayRouteMatch struct {
	ServiceName *string `locationName:"serviceName" type:"string"`
	// contains filtered or unexported fields
}

An object that represents the criteria for determining a request match.

func (GrpcGatewayRouteMatch) GoString added in v1.33.5

func (s GrpcGatewayRouteMatch) GoString() string

GoString returns the string representation

func (*GrpcGatewayRouteMatch) SetServiceName added in v1.33.5

func (s *GrpcGatewayRouteMatch) SetServiceName(v string) *GrpcGatewayRouteMatch

SetServiceName sets the ServiceName field's value.

func (GrpcGatewayRouteMatch) String added in v1.33.5

func (s GrpcGatewayRouteMatch) String() string

String returns the string representation

type GrpcRetryPolicy added in v1.25.19

type GrpcRetryPolicy struct {
	GrpcRetryEvents []*string `locationName:"grpcRetryEvents" min:"1" type:"list"`

	HttpRetryEvents []*string `locationName:"httpRetryEvents" min:"1" type:"list"`

	// MaxRetries is a required field
	MaxRetries *int64 `locationName:"maxRetries" type:"long" required:"true"`

	// An object that represents a duration of time.
	//
	// PerRetryTimeout is a required field
	PerRetryTimeout *Duration `locationName:"perRetryTimeout" type:"structure" required:"true"`

	TcpRetryEvents []*string `locationName:"tcpRetryEvents" min:"1" type:"list"`
	// contains filtered or unexported fields
}

An object that represents a retry policy. Specify at least one value for at least one of the types of RetryEvents, a value for maxRetries, and a value for perRetryTimeout.

func (GrpcRetryPolicy) GoString added in v1.25.19

func (s GrpcRetryPolicy) GoString() string

GoString returns the string representation

func (*GrpcRetryPolicy) SetGrpcRetryEvents added in v1.25.19

func (s *GrpcRetryPolicy) SetGrpcRetryEvents(v []*string) *GrpcRetryPolicy

SetGrpcRetryEvents sets the GrpcRetryEvents field's value.

func (*GrpcRetryPolicy) SetHttpRetryEvents added in v1.25.19

func (s *GrpcRetryPolicy) SetHttpRetryEvents(v []*string) *GrpcRetryPolicy

SetHttpRetryEvents sets the HttpRetryEvents field's value.

func (*GrpcRetryPolicy) SetMaxRetries added in v1.25.19

func (s *GrpcRetryPolicy) SetMaxRetries(v int64) *GrpcRetryPolicy

SetMaxRetries sets the MaxRetries field's value.

func (*GrpcRetryPolicy) SetPerRetryTimeout added in v1.25.19

func (s *GrpcRetryPolicy) SetPerRetryTimeout(v *Duration) *GrpcRetryPolicy

SetPerRetryTimeout sets the PerRetryTimeout field's value.

func (*GrpcRetryPolicy) SetTcpRetryEvents added in v1.25.19

func (s *GrpcRetryPolicy) SetTcpRetryEvents(v []*string) *GrpcRetryPolicy

SetTcpRetryEvents sets the TcpRetryEvents field's value.

func (GrpcRetryPolicy) String added in v1.25.19

func (s GrpcRetryPolicy) String() string

String returns the string representation

func (*GrpcRetryPolicy) Validate added in v1.25.19

func (s *GrpcRetryPolicy) Validate() error

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

type GrpcRoute added in v1.25.19

type GrpcRoute struct {

	// An object that represents the action to take if a match is determined.
	//
	// Action is a required field
	Action *GrpcRouteAction `locationName:"action" type:"structure" required:"true"`

	// An object that represents the criteria for determining a request match.
	//
	// Match is a required field
	Match *GrpcRouteMatch `locationName:"match" type:"structure" required:"true"`

	// An object that represents a retry policy. Specify at least one value for
	// at least one of the types of RetryEvents, a value for maxRetries, and a value
	// for perRetryTimeout.
	RetryPolicy *GrpcRetryPolicy `locationName:"retryPolicy" type:"structure"`

	// An object that represents types of timeouts.
	Timeout *GrpcTimeout `locationName:"timeout" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a gRPC route type.

func (GrpcRoute) GoString added in v1.25.19

func (s GrpcRoute) GoString() string

GoString returns the string representation

func (*GrpcRoute) SetAction added in v1.25.19

func (s *GrpcRoute) SetAction(v *GrpcRouteAction) *GrpcRoute

SetAction sets the Action field's value.

func (*GrpcRoute) SetMatch added in v1.25.19

func (s *GrpcRoute) SetMatch(v *GrpcRouteMatch) *GrpcRoute

SetMatch sets the Match field's value.

func (*GrpcRoute) SetRetryPolicy added in v1.25.19

func (s *GrpcRoute) SetRetryPolicy(v *GrpcRetryPolicy) *GrpcRoute

SetRetryPolicy sets the RetryPolicy field's value.

func (*GrpcRoute) SetTimeout added in v1.32.4

func (s *GrpcRoute) SetTimeout(v *GrpcTimeout) *GrpcRoute

SetTimeout sets the Timeout field's value.

func (GrpcRoute) String added in v1.25.19

func (s GrpcRoute) String() string

String returns the string representation

func (*GrpcRoute) Validate added in v1.25.19

func (s *GrpcRoute) Validate() error

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

type GrpcRouteAction added in v1.25.19

type GrpcRouteAction struct {

	// WeightedTargets is a required field
	WeightedTargets []*WeightedTarget `locationName:"weightedTargets" min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the action to take if a match is determined.

func (GrpcRouteAction) GoString added in v1.25.19

func (s GrpcRouteAction) GoString() string

GoString returns the string representation

func (*GrpcRouteAction) SetWeightedTargets added in v1.25.19

func (s *GrpcRouteAction) SetWeightedTargets(v []*WeightedTarget) *GrpcRouteAction

SetWeightedTargets sets the WeightedTargets field's value.

func (GrpcRouteAction) String added in v1.25.19

func (s GrpcRouteAction) String() string

String returns the string representation

func (*GrpcRouteAction) Validate added in v1.25.19

func (s *GrpcRouteAction) Validate() error

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

type GrpcRouteMatch added in v1.25.19

type GrpcRouteMatch struct {
	Metadata []*GrpcRouteMetadata `locationName:"metadata" min:"1" type:"list"`

	MethodName *string `locationName:"methodName" min:"1" type:"string"`

	ServiceName *string `locationName:"serviceName" type:"string"`
	// contains filtered or unexported fields
}

An object that represents the criteria for determining a request match.

func (GrpcRouteMatch) GoString added in v1.25.19

func (s GrpcRouteMatch) GoString() string

GoString returns the string representation

func (*GrpcRouteMatch) SetMetadata added in v1.25.19

func (s *GrpcRouteMatch) SetMetadata(v []*GrpcRouteMetadata) *GrpcRouteMatch

SetMetadata sets the Metadata field's value.

func (*GrpcRouteMatch) SetMethodName added in v1.25.19

func (s *GrpcRouteMatch) SetMethodName(v string) *GrpcRouteMatch

SetMethodName sets the MethodName field's value.

func (*GrpcRouteMatch) SetServiceName added in v1.25.19

func (s *GrpcRouteMatch) SetServiceName(v string) *GrpcRouteMatch

SetServiceName sets the ServiceName field's value.

func (GrpcRouteMatch) String added in v1.25.19

func (s GrpcRouteMatch) String() string

String returns the string representation

func (*GrpcRouteMatch) Validate added in v1.25.19

func (s *GrpcRouteMatch) Validate() error

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

type GrpcRouteMetadata added in v1.25.19

type GrpcRouteMetadata struct {
	Invert *bool `locationName:"invert" type:"boolean"`

	// An object that represents the match method. Specify one of the match values.
	Match *GrpcRouteMetadataMatchMethod `locationName:"match" type:"structure"`

	// Name is a required field
	Name *string `locationName:"name" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the match metadata for the route.

func (GrpcRouteMetadata) GoString added in v1.25.19

func (s GrpcRouteMetadata) GoString() string

GoString returns the string representation

func (*GrpcRouteMetadata) SetInvert added in v1.25.19

func (s *GrpcRouteMetadata) SetInvert(v bool) *GrpcRouteMetadata

SetInvert sets the Invert field's value.

func (*GrpcRouteMetadata) SetMatch added in v1.25.19

SetMatch sets the Match field's value.

func (*GrpcRouteMetadata) SetName added in v1.25.19

SetName sets the Name field's value.

func (GrpcRouteMetadata) String added in v1.25.19

func (s GrpcRouteMetadata) String() string

String returns the string representation

func (*GrpcRouteMetadata) Validate added in v1.25.19

func (s *GrpcRouteMetadata) Validate() error

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

type GrpcRouteMetadataMatchMethod added in v1.25.19

type GrpcRouteMetadataMatchMethod struct {
	Exact *string `locationName:"exact" min:"1" type:"string"`

	Prefix *string `locationName:"prefix" min:"1" type:"string"`

	// An object that represents the range of values to match on. The first character
	// of the range is included in the range, though the last character is not.
	// For example, if the range specified were 1-100, only values 1-99 would be
	// matched.
	Range *MatchRange `locationName:"range" type:"structure"`

	Regex *string `locationName:"regex" min:"1" type:"string"`

	Suffix *string `locationName:"suffix" min:"1" type:"string"`
	// contains filtered or unexported fields
}

An object that represents the match method. Specify one of the match values.

func (GrpcRouteMetadataMatchMethod) GoString added in v1.25.19

func (s GrpcRouteMetadataMatchMethod) GoString() string

GoString returns the string representation

func (*GrpcRouteMetadataMatchMethod) SetExact added in v1.25.19

SetExact sets the Exact field's value.

func (*GrpcRouteMetadataMatchMethod) SetPrefix added in v1.25.19

SetPrefix sets the Prefix field's value.

func (*GrpcRouteMetadataMatchMethod) SetRange added in v1.25.19

SetRange sets the Range field's value.

func (*GrpcRouteMetadataMatchMethod) SetRegex added in v1.25.19

SetRegex sets the Regex field's value.

func (*GrpcRouteMetadataMatchMethod) SetSuffix added in v1.25.19

SetSuffix sets the Suffix field's value.

func (GrpcRouteMetadataMatchMethod) String added in v1.25.19

String returns the string representation

func (*GrpcRouteMetadataMatchMethod) Validate added in v1.25.19

func (s *GrpcRouteMetadataMatchMethod) Validate() error

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

type GrpcTimeout added in v1.32.4

type GrpcTimeout struct {

	// An object that represents a duration of time.
	Idle *Duration `locationName:"idle" type:"structure"`

	// An object that represents a duration of time.
	PerRequest *Duration `locationName:"perRequest" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents types of timeouts.

func (GrpcTimeout) GoString added in v1.32.4

func (s GrpcTimeout) GoString() string

GoString returns the string representation

func (*GrpcTimeout) SetIdle added in v1.32.4

func (s *GrpcTimeout) SetIdle(v *Duration) *GrpcTimeout

SetIdle sets the Idle field's value.

func (*GrpcTimeout) SetPerRequest added in v1.32.4

func (s *GrpcTimeout) SetPerRequest(v *Duration) *GrpcTimeout

SetPerRequest sets the PerRequest field's value.

func (GrpcTimeout) String added in v1.32.4

func (s GrpcTimeout) String() string

String returns the string representation

type HeaderMatchMethod added in v1.23.2

type HeaderMatchMethod struct {
	Exact *string `locationName:"exact" min:"1" type:"string"`

	Prefix *string `locationName:"prefix" min:"1" type:"string"`

	// An object that represents the range of values to match on. The first character
	// of the range is included in the range, though the last character is not.
	// For example, if the range specified were 1-100, only values 1-99 would be
	// matched.
	Range *MatchRange `locationName:"range" type:"structure"`

	Regex *string `locationName:"regex" min:"1" type:"string"`

	Suffix *string `locationName:"suffix" min:"1" type:"string"`
	// contains filtered or unexported fields
}

An object that represents the method and value to match with the header value sent in a request. Specify one match method.

func (HeaderMatchMethod) GoString added in v1.23.2

func (s HeaderMatchMethod) GoString() string

GoString returns the string representation

func (*HeaderMatchMethod) SetExact added in v1.23.2

func (s *HeaderMatchMethod) SetExact(v string) *HeaderMatchMethod

SetExact sets the Exact field's value.

func (*HeaderMatchMethod) SetPrefix added in v1.23.2

func (s *HeaderMatchMethod) SetPrefix(v string) *HeaderMatchMethod

SetPrefix sets the Prefix field's value.

func (*HeaderMatchMethod) SetRange added in v1.23.2

SetRange sets the Range field's value.

func (*HeaderMatchMethod) SetRegex added in v1.23.2

func (s *HeaderMatchMethod) SetRegex(v string) *HeaderMatchMethod

SetRegex sets the Regex field's value.

func (*HeaderMatchMethod) SetSuffix added in v1.23.2

func (s *HeaderMatchMethod) SetSuffix(v string) *HeaderMatchMethod

SetSuffix sets the Suffix field's value.

func (HeaderMatchMethod) String added in v1.23.2

func (s HeaderMatchMethod) String() string

String returns the string representation

func (*HeaderMatchMethod) Validate added in v1.23.2

func (s *HeaderMatchMethod) Validate() error

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

type HealthCheckPolicy

type HealthCheckPolicy struct {

	// HealthyThreshold is a required field
	HealthyThreshold *int64 `locationName:"healthyThreshold" min:"2" type:"integer" required:"true"`

	// IntervalMillis is a required field
	IntervalMillis *int64 `locationName:"intervalMillis" min:"5000" type:"long" required:"true"`

	Path *string `locationName:"path" type:"string"`

	Port *int64 `locationName:"port" min:"1" type:"integer"`

	// Protocol is a required field
	Protocol *string `locationName:"protocol" type:"string" required:"true" enum:"PortProtocol"`

	// TimeoutMillis is a required field
	TimeoutMillis *int64 `locationName:"timeoutMillis" min:"2000" type:"long" required:"true"`

	// UnhealthyThreshold is a required field
	UnhealthyThreshold *int64 `locationName:"unhealthyThreshold" min:"2" type:"integer" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the health check policy for a virtual node's listener.

func (HealthCheckPolicy) GoString

func (s HealthCheckPolicy) GoString() string

GoString returns the string representation

func (*HealthCheckPolicy) SetHealthyThreshold

func (s *HealthCheckPolicy) SetHealthyThreshold(v int64) *HealthCheckPolicy

SetHealthyThreshold sets the HealthyThreshold field's value.

func (*HealthCheckPolicy) SetIntervalMillis

func (s *HealthCheckPolicy) SetIntervalMillis(v int64) *HealthCheckPolicy

SetIntervalMillis sets the IntervalMillis field's value.

func (*HealthCheckPolicy) SetPath

SetPath sets the Path field's value.

func (*HealthCheckPolicy) SetPort

func (s *HealthCheckPolicy) SetPort(v int64) *HealthCheckPolicy

SetPort sets the Port field's value.

func (*HealthCheckPolicy) SetProtocol

func (s *HealthCheckPolicy) SetProtocol(v string) *HealthCheckPolicy

SetProtocol sets the Protocol field's value.

func (*HealthCheckPolicy) SetTimeoutMillis

func (s *HealthCheckPolicy) SetTimeoutMillis(v int64) *HealthCheckPolicy

SetTimeoutMillis sets the TimeoutMillis field's value.

func (*HealthCheckPolicy) SetUnhealthyThreshold

func (s *HealthCheckPolicy) SetUnhealthyThreshold(v int64) *HealthCheckPolicy

SetUnhealthyThreshold sets the UnhealthyThreshold field's value.

func (HealthCheckPolicy) String

func (s HealthCheckPolicy) String() string

String returns the string representation

func (*HealthCheckPolicy) Validate

func (s *HealthCheckPolicy) Validate() error

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

type HttpGatewayRoute added in v1.33.5

type HttpGatewayRoute struct {

	// An object that represents the action to take if a match is determined.
	//
	// Action is a required field
	Action *HttpGatewayRouteAction `locationName:"action" type:"structure" required:"true"`

	// An object that represents the criteria for determining a request match.
	//
	// Match is a required field
	Match *HttpGatewayRouteMatch `locationName:"match" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents an HTTP gateway route.

func (HttpGatewayRoute) GoString added in v1.33.5

func (s HttpGatewayRoute) GoString() string

GoString returns the string representation

func (*HttpGatewayRoute) SetAction added in v1.33.5

SetAction sets the Action field's value.

func (*HttpGatewayRoute) SetMatch added in v1.33.5

SetMatch sets the Match field's value.

func (HttpGatewayRoute) String added in v1.33.5

func (s HttpGatewayRoute) String() string

String returns the string representation

func (*HttpGatewayRoute) Validate added in v1.33.5

func (s *HttpGatewayRoute) Validate() error

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

type HttpGatewayRouteAction added in v1.33.5

type HttpGatewayRouteAction struct {

	// An object that represents a gateway route target.
	//
	// Target is a required field
	Target *GatewayRouteTarget `locationName:"target" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the action to take if a match is determined.

func (HttpGatewayRouteAction) GoString added in v1.33.5

func (s HttpGatewayRouteAction) GoString() string

GoString returns the string representation

func (*HttpGatewayRouteAction) SetTarget added in v1.33.5

SetTarget sets the Target field's value.

func (HttpGatewayRouteAction) String added in v1.33.5

func (s HttpGatewayRouteAction) String() string

String returns the string representation

func (*HttpGatewayRouteAction) Validate added in v1.33.5

func (s *HttpGatewayRouteAction) Validate() error

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

type HttpGatewayRouteMatch added in v1.33.5

type HttpGatewayRouteMatch struct {

	// Prefix is a required field
	Prefix *string `locationName:"prefix" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the criteria for determining a request match.

func (HttpGatewayRouteMatch) GoString added in v1.33.5

func (s HttpGatewayRouteMatch) GoString() string

GoString returns the string representation

func (*HttpGatewayRouteMatch) SetPrefix added in v1.33.5

SetPrefix sets the Prefix field's value.

func (HttpGatewayRouteMatch) String added in v1.33.5

func (s HttpGatewayRouteMatch) String() string

String returns the string representation

func (*HttpGatewayRouteMatch) Validate added in v1.33.5

func (s *HttpGatewayRouteMatch) Validate() error

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

type HttpRetryPolicy added in v1.23.18

type HttpRetryPolicy struct {
	HttpRetryEvents []*string `locationName:"httpRetryEvents" min:"1" type:"list"`

	// MaxRetries is a required field
	MaxRetries *int64 `locationName:"maxRetries" type:"long" required:"true"`

	// An object that represents a duration of time.
	//
	// PerRetryTimeout is a required field
	PerRetryTimeout *Duration `locationName:"perRetryTimeout" type:"structure" required:"true"`

	TcpRetryEvents []*string `locationName:"tcpRetryEvents" min:"1" type:"list"`
	// contains filtered or unexported fields
}

An object that represents a retry policy. Specify at least one value for at least one of the types of RetryEvents, a value for maxRetries, and a value for perRetryTimeout.

func (HttpRetryPolicy) GoString added in v1.23.18

func (s HttpRetryPolicy) GoString() string

GoString returns the string representation

func (*HttpRetryPolicy) SetHttpRetryEvents added in v1.23.18

func (s *HttpRetryPolicy) SetHttpRetryEvents(v []*string) *HttpRetryPolicy

SetHttpRetryEvents sets the HttpRetryEvents field's value.

func (*HttpRetryPolicy) SetMaxRetries added in v1.23.18

func (s *HttpRetryPolicy) SetMaxRetries(v int64) *HttpRetryPolicy

SetMaxRetries sets the MaxRetries field's value.

func (*HttpRetryPolicy) SetPerRetryTimeout added in v1.23.18

func (s *HttpRetryPolicy) SetPerRetryTimeout(v *Duration) *HttpRetryPolicy

SetPerRetryTimeout sets the PerRetryTimeout field's value.

func (*HttpRetryPolicy) SetTcpRetryEvents added in v1.23.18

func (s *HttpRetryPolicy) SetTcpRetryEvents(v []*string) *HttpRetryPolicy

SetTcpRetryEvents sets the TcpRetryEvents field's value.

func (HttpRetryPolicy) String added in v1.23.18

func (s HttpRetryPolicy) String() string

String returns the string representation

func (*HttpRetryPolicy) Validate added in v1.23.18

func (s *HttpRetryPolicy) Validate() error

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

type HttpRoute

type HttpRoute struct {

	// An object that represents the action to take if a match is determined.
	//
	// Action is a required field
	Action *HttpRouteAction `locationName:"action" type:"structure" required:"true"`

	// An object that represents the requirements for a route to match HTTP requests
	// for a virtual router.
	//
	// Match is a required field
	Match *HttpRouteMatch `locationName:"match" type:"structure" required:"true"`

	// An object that represents a retry policy. Specify at least one value for
	// at least one of the types of RetryEvents, a value for maxRetries, and a value
	// for perRetryTimeout.
	RetryPolicy *HttpRetryPolicy `locationName:"retryPolicy" type:"structure"`

	// An object that represents types of timeouts.
	Timeout *HttpTimeout `locationName:"timeout" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents an HTTP or HTTP/2 route type.

func (HttpRoute) GoString

func (s HttpRoute) GoString() string

GoString returns the string representation

func (*HttpRoute) SetAction

func (s *HttpRoute) SetAction(v *HttpRouteAction) *HttpRoute

SetAction sets the Action field's value.

func (*HttpRoute) SetMatch

func (s *HttpRoute) SetMatch(v *HttpRouteMatch) *HttpRoute

SetMatch sets the Match field's value.

func (*HttpRoute) SetRetryPolicy added in v1.23.18

func (s *HttpRoute) SetRetryPolicy(v *HttpRetryPolicy) *HttpRoute

SetRetryPolicy sets the RetryPolicy field's value.

func (*HttpRoute) SetTimeout added in v1.32.4

func (s *HttpRoute) SetTimeout(v *HttpTimeout) *HttpRoute

SetTimeout sets the Timeout field's value.

func (HttpRoute) String

func (s HttpRoute) String() string

String returns the string representation

func (*HttpRoute) Validate

func (s *HttpRoute) Validate() error

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

type HttpRouteAction

type HttpRouteAction struct {

	// WeightedTargets is a required field
	WeightedTargets []*WeightedTarget `locationName:"weightedTargets" min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the action to take if a match is determined.

func (HttpRouteAction) GoString

func (s HttpRouteAction) GoString() string

GoString returns the string representation

func (*HttpRouteAction) SetWeightedTargets

func (s *HttpRouteAction) SetWeightedTargets(v []*WeightedTarget) *HttpRouteAction

SetWeightedTargets sets the WeightedTargets field's value.

func (HttpRouteAction) String

func (s HttpRouteAction) String() string

String returns the string representation

func (*HttpRouteAction) Validate

func (s *HttpRouteAction) Validate() error

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

type HttpRouteHeader added in v1.23.2

type HttpRouteHeader struct {
	Invert *bool `locationName:"invert" type:"boolean"`

	// An object that represents the method and value to match with the header value
	// sent in a request. Specify one match method.
	Match *HeaderMatchMethod `locationName:"match" type:"structure"`

	// Name is a required field
	Name *string `locationName:"name" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the HTTP header in the request.

func (HttpRouteHeader) GoString added in v1.23.2

func (s HttpRouteHeader) GoString() string

GoString returns the string representation

func (*HttpRouteHeader) SetInvert added in v1.23.2

func (s *HttpRouteHeader) SetInvert(v bool) *HttpRouteHeader

SetInvert sets the Invert field's value.

func (*HttpRouteHeader) SetMatch added in v1.23.2

SetMatch sets the Match field's value.

func (*HttpRouteHeader) SetName added in v1.23.2

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

SetName sets the Name field's value.

func (HttpRouteHeader) String added in v1.23.2

func (s HttpRouteHeader) String() string

String returns the string representation

func (*HttpRouteHeader) Validate added in v1.23.2

func (s *HttpRouteHeader) Validate() error

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

type HttpRouteMatch

type HttpRouteMatch struct {
	Headers []*HttpRouteHeader `locationName:"headers" min:"1" type:"list"`

	Method *string `locationName:"method" type:"string" enum:"HttpMethod"`

	// Prefix is a required field
	Prefix *string `locationName:"prefix" type:"string" required:"true"`

	Scheme *string `locationName:"scheme" type:"string" enum:"HttpScheme"`
	// contains filtered or unexported fields
}

An object that represents the requirements for a route to match HTTP requests for a virtual router.

func (HttpRouteMatch) GoString

func (s HttpRouteMatch) GoString() string

GoString returns the string representation

func (*HttpRouteMatch) SetHeaders added in v1.23.2

func (s *HttpRouteMatch) SetHeaders(v []*HttpRouteHeader) *HttpRouteMatch

SetHeaders sets the Headers field's value.

func (*HttpRouteMatch) SetMethod added in v1.23.2

func (s *HttpRouteMatch) SetMethod(v string) *HttpRouteMatch

SetMethod sets the Method field's value.

func (*HttpRouteMatch) SetPrefix

func (s *HttpRouteMatch) SetPrefix(v string) *HttpRouteMatch

SetPrefix sets the Prefix field's value.

func (*HttpRouteMatch) SetScheme added in v1.23.2

func (s *HttpRouteMatch) SetScheme(v string) *HttpRouteMatch

SetScheme sets the Scheme field's value.

func (HttpRouteMatch) String

func (s HttpRouteMatch) String() string

String returns the string representation

func (*HttpRouteMatch) Validate added in v1.17.13

func (s *HttpRouteMatch) Validate() error

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

type HttpTimeout added in v1.32.4

type HttpTimeout struct {

	// An object that represents a duration of time.
	Idle *Duration `locationName:"idle" type:"structure"`

	// An object that represents a duration of time.
	PerRequest *Duration `locationName:"perRequest" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents types of timeouts.

func (HttpTimeout) GoString added in v1.32.4

func (s HttpTimeout) GoString() string

GoString returns the string representation

func (*HttpTimeout) SetIdle added in v1.32.4

func (s *HttpTimeout) SetIdle(v *Duration) *HttpTimeout

SetIdle sets the Idle field's value.

func (*HttpTimeout) SetPerRequest added in v1.32.4

func (s *HttpTimeout) SetPerRequest(v *Duration) *HttpTimeout

SetPerRequest sets the PerRequest field's value.

func (HttpTimeout) String added in v1.32.4

func (s HttpTimeout) String() string

String returns the string representation

type InternalServerErrorException added in v1.28.0

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

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

The request processing has failed because of an unknown error, exception, or failure.

func (*InternalServerErrorException) Code added in v1.28.0

Code returns the exception type name.

func (*InternalServerErrorException) Error added in v1.28.0

func (InternalServerErrorException) GoString added in v1.28.0

func (s InternalServerErrorException) GoString() string

GoString returns the string representation

func (*InternalServerErrorException) Message added in v1.28.0

func (s *InternalServerErrorException) Message() string

Message returns the exception's message.

func (*InternalServerErrorException) OrigErr added in v1.28.0

func (s *InternalServerErrorException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InternalServerErrorException) RequestID added in v1.28.0

func (s *InternalServerErrorException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InternalServerErrorException) StatusCode added in v1.28.0

func (s *InternalServerErrorException) StatusCode() int

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

func (InternalServerErrorException) String added in v1.28.0

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 have exceeded a service limit for your account. For more information, see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html) in the AWS App Mesh User Guide.

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 ListGatewayRoutesInput added in v1.33.5

type ListGatewayRoutesInput struct {
	Limit *int64 `location:"querystring" locationName:"limit" min:"1" type:"integer"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `location:"uri" locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListGatewayRoutesInput) GoString added in v1.33.5

func (s ListGatewayRoutesInput) GoString() string

GoString returns the string representation

func (*ListGatewayRoutesInput) SetLimit added in v1.33.5

SetLimit sets the Limit field's value.

func (*ListGatewayRoutesInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*ListGatewayRoutesInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*ListGatewayRoutesInput) SetNextToken added in v1.33.5

SetNextToken sets the NextToken field's value.

func (*ListGatewayRoutesInput) SetVirtualGatewayName added in v1.33.5

func (s *ListGatewayRoutesInput) SetVirtualGatewayName(v string) *ListGatewayRoutesInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (ListGatewayRoutesInput) String added in v1.33.5

func (s ListGatewayRoutesInput) String() string

String returns the string representation

func (*ListGatewayRoutesInput) Validate added in v1.33.5

func (s *ListGatewayRoutesInput) Validate() error

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

type ListGatewayRoutesOutput added in v1.33.5

type ListGatewayRoutesOutput struct {

	// GatewayRoutes is a required field
	GatewayRoutes []*GatewayRouteRef `locationName:"gatewayRoutes" type:"list" required:"true"`

	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

func (ListGatewayRoutesOutput) GoString added in v1.33.5

func (s ListGatewayRoutesOutput) GoString() string

GoString returns the string representation

func (*ListGatewayRoutesOutput) SetGatewayRoutes added in v1.33.5

SetGatewayRoutes sets the GatewayRoutes field's value.

func (*ListGatewayRoutesOutput) SetNextToken added in v1.33.5

SetNextToken sets the NextToken field's value.

func (ListGatewayRoutesOutput) String added in v1.33.5

func (s ListGatewayRoutesOutput) String() string

String returns the string representation

type ListMeshesInput

type ListMeshesInput struct {
	Limit *int64 `location:"querystring" locationName:"limit" min:"1" type:"integer"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

func (ListMeshesInput) GoString

func (s ListMeshesInput) GoString() string

GoString returns the string representation

func (*ListMeshesInput) SetLimit

func (s *ListMeshesInput) SetLimit(v int64) *ListMeshesInput

SetLimit sets the Limit field's value.

func (*ListMeshesInput) SetNextToken

func (s *ListMeshesInput) SetNextToken(v string) *ListMeshesInput

SetNextToken sets the NextToken field's value.

func (ListMeshesInput) String

func (s ListMeshesInput) String() string

String returns the string representation

func (*ListMeshesInput) Validate

func (s *ListMeshesInput) Validate() error

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

type ListMeshesOutput

type ListMeshesOutput struct {

	// Meshes is a required field
	Meshes []*MeshRef `locationName:"meshes" type:"list" required:"true"`

	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

func (ListMeshesOutput) GoString

func (s ListMeshesOutput) GoString() string

GoString returns the string representation

func (*ListMeshesOutput) SetMeshes

func (s *ListMeshesOutput) SetMeshes(v []*MeshRef) *ListMeshesOutput

SetMeshes sets the Meshes field's value.

func (*ListMeshesOutput) SetNextToken

func (s *ListMeshesOutput) SetNextToken(v string) *ListMeshesOutput

SetNextToken sets the NextToken field's value.

func (ListMeshesOutput) String

func (s ListMeshesOutput) String() string

String returns the string representation

type ListRoutesInput

type ListRoutesInput struct {
	Limit *int64 `location:"querystring" locationName:"limit" min:"1" type:"integer"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `location:"uri" locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListRoutesInput) GoString

func (s ListRoutesInput) GoString() string

GoString returns the string representation

func (*ListRoutesInput) SetLimit

func (s *ListRoutesInput) SetLimit(v int64) *ListRoutesInput

SetLimit sets the Limit field's value.

func (*ListRoutesInput) SetMeshName

func (s *ListRoutesInput) SetMeshName(v string) *ListRoutesInput

SetMeshName sets the MeshName field's value.

func (*ListRoutesInput) SetMeshOwner added in v1.29.19

func (s *ListRoutesInput) SetMeshOwner(v string) *ListRoutesInput

SetMeshOwner sets the MeshOwner field's value.

func (*ListRoutesInput) SetNextToken

func (s *ListRoutesInput) SetNextToken(v string) *ListRoutesInput

SetNextToken sets the NextToken field's value.

func (*ListRoutesInput) SetVirtualRouterName

func (s *ListRoutesInput) SetVirtualRouterName(v string) *ListRoutesInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (ListRoutesInput) String

func (s ListRoutesInput) String() string

String returns the string representation

func (*ListRoutesInput) Validate

func (s *ListRoutesInput) Validate() error

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

type ListRoutesOutput

type ListRoutesOutput struct {
	NextToken *string `locationName:"nextToken" type:"string"`

	// Routes is a required field
	Routes []*RouteRef `locationName:"routes" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (ListRoutesOutput) GoString

func (s ListRoutesOutput) GoString() string

GoString returns the string representation

func (*ListRoutesOutput) SetNextToken

func (s *ListRoutesOutput) SetNextToken(v string) *ListRoutesOutput

SetNextToken sets the NextToken field's value.

func (*ListRoutesOutput) SetRoutes

func (s *ListRoutesOutput) SetRoutes(v []*RouteRef) *ListRoutesOutput

SetRoutes sets the Routes field's value.

func (ListRoutesOutput) String

func (s ListRoutesOutput) String() string

String returns the string representation

type ListTagsForResourceInput added in v1.19.3

type ListTagsForResourceInput struct {
	Limit *int64 `location:"querystring" locationName:"limit" min:"1" type:"integer"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`

	// ResourceArn is a required field
	ResourceArn *string `location:"querystring" locationName:"resourceArn" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListTagsForResourceInput) GoString added in v1.19.3

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceInput) SetLimit added in v1.19.3

SetLimit sets the Limit field's value.

func (*ListTagsForResourceInput) SetNextToken added in v1.19.3

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceInput) SetResourceArn added in v1.19.3

SetResourceArn sets the ResourceArn field's value.

func (ListTagsForResourceInput) String added in v1.19.3

func (s ListTagsForResourceInput) String() string

String returns the string representation

func (*ListTagsForResourceInput) Validate added in v1.19.3

func (s *ListTagsForResourceInput) Validate() error

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

type ListTagsForResourceOutput added in v1.19.3

type ListTagsForResourceOutput struct {
	NextToken *string `locationName:"nextToken" type:"string"`

	// Tags is a required field
	Tags []*TagRef `locationName:"tags" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (ListTagsForResourceOutput) GoString added in v1.19.3

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceOutput) SetNextToken added in v1.19.3

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceOutput) SetTags added in v1.19.3

SetTags sets the Tags field's value.

func (ListTagsForResourceOutput) String added in v1.19.3

func (s ListTagsForResourceOutput) String() string

String returns the string representation

type ListVirtualGatewaysInput added in v1.33.5

type ListVirtualGatewaysInput struct {
	Limit *int64 `location:"querystring" locationName:"limit" min:"1" type:"integer"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

func (ListVirtualGatewaysInput) GoString added in v1.33.5

func (s ListVirtualGatewaysInput) GoString() string

GoString returns the string representation

func (*ListVirtualGatewaysInput) SetLimit added in v1.33.5

SetLimit sets the Limit field's value.

func (*ListVirtualGatewaysInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*ListVirtualGatewaysInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*ListVirtualGatewaysInput) SetNextToken added in v1.33.5

SetNextToken sets the NextToken field's value.

func (ListVirtualGatewaysInput) String added in v1.33.5

func (s ListVirtualGatewaysInput) String() string

String returns the string representation

func (*ListVirtualGatewaysInput) Validate added in v1.33.5

func (s *ListVirtualGatewaysInput) Validate() error

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

type ListVirtualGatewaysOutput added in v1.33.5

type ListVirtualGatewaysOutput struct {
	NextToken *string `locationName:"nextToken" type:"string"`

	// VirtualGateways is a required field
	VirtualGateways []*VirtualGatewayRef `locationName:"virtualGateways" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (ListVirtualGatewaysOutput) GoString added in v1.33.5

func (s ListVirtualGatewaysOutput) GoString() string

GoString returns the string representation

func (*ListVirtualGatewaysOutput) SetNextToken added in v1.33.5

SetNextToken sets the NextToken field's value.

func (*ListVirtualGatewaysOutput) SetVirtualGateways added in v1.33.5

SetVirtualGateways sets the VirtualGateways field's value.

func (ListVirtualGatewaysOutput) String added in v1.33.5

func (s ListVirtualGatewaysOutput) String() string

String returns the string representation

type ListVirtualNodesInput

type ListVirtualNodesInput struct {
	Limit *int64 `location:"querystring" locationName:"limit" min:"1" type:"integer"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

func (ListVirtualNodesInput) GoString

func (s ListVirtualNodesInput) GoString() string

GoString returns the string representation

func (*ListVirtualNodesInput) SetLimit

SetLimit sets the Limit field's value.

func (*ListVirtualNodesInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*ListVirtualNodesInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*ListVirtualNodesInput) SetNextToken

SetNextToken sets the NextToken field's value.

func (ListVirtualNodesInput) String

func (s ListVirtualNodesInput) String() string

String returns the string representation

func (*ListVirtualNodesInput) Validate

func (s *ListVirtualNodesInput) Validate() error

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

type ListVirtualNodesOutput

type ListVirtualNodesOutput struct {
	NextToken *string `locationName:"nextToken" type:"string"`

	// VirtualNodes is a required field
	VirtualNodes []*VirtualNodeRef `locationName:"virtualNodes" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (ListVirtualNodesOutput) GoString

func (s ListVirtualNodesOutput) GoString() string

GoString returns the string representation

func (*ListVirtualNodesOutput) SetNextToken

SetNextToken sets the NextToken field's value.

func (*ListVirtualNodesOutput) SetVirtualNodes

SetVirtualNodes sets the VirtualNodes field's value.

func (ListVirtualNodesOutput) String

func (s ListVirtualNodesOutput) String() string

String returns the string representation

type ListVirtualRoutersInput

type ListVirtualRoutersInput struct {
	Limit *int64 `location:"querystring" locationName:"limit" min:"1" type:"integer"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

func (ListVirtualRoutersInput) GoString

func (s ListVirtualRoutersInput) GoString() string

GoString returns the string representation

func (*ListVirtualRoutersInput) SetLimit

SetLimit sets the Limit field's value.

func (*ListVirtualRoutersInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*ListVirtualRoutersInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*ListVirtualRoutersInput) SetNextToken

SetNextToken sets the NextToken field's value.

func (ListVirtualRoutersInput) String

func (s ListVirtualRoutersInput) String() string

String returns the string representation

func (*ListVirtualRoutersInput) Validate

func (s *ListVirtualRoutersInput) Validate() error

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

type ListVirtualRoutersOutput

type ListVirtualRoutersOutput struct {
	NextToken *string `locationName:"nextToken" type:"string"`

	// VirtualRouters is a required field
	VirtualRouters []*VirtualRouterRef `locationName:"virtualRouters" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (ListVirtualRoutersOutput) GoString

func (s ListVirtualRoutersOutput) GoString() string

GoString returns the string representation

func (*ListVirtualRoutersOutput) SetNextToken

SetNextToken sets the NextToken field's value.

func (*ListVirtualRoutersOutput) SetVirtualRouters

SetVirtualRouters sets the VirtualRouters field's value.

func (ListVirtualRoutersOutput) String

func (s ListVirtualRoutersOutput) String() string

String returns the string representation

type ListVirtualServicesInput added in v1.17.13

type ListVirtualServicesInput struct {
	Limit *int64 `location:"querystring" locationName:"limit" min:"1" type:"integer"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

func (ListVirtualServicesInput) GoString added in v1.17.13

func (s ListVirtualServicesInput) GoString() string

GoString returns the string representation

func (*ListVirtualServicesInput) SetLimit added in v1.17.13

SetLimit sets the Limit field's value.

func (*ListVirtualServicesInput) SetMeshName added in v1.17.13

SetMeshName sets the MeshName field's value.

func (*ListVirtualServicesInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*ListVirtualServicesInput) SetNextToken added in v1.17.13

SetNextToken sets the NextToken field's value.

func (ListVirtualServicesInput) String added in v1.17.13

func (s ListVirtualServicesInput) String() string

String returns the string representation

func (*ListVirtualServicesInput) Validate added in v1.17.13

func (s *ListVirtualServicesInput) Validate() error

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

type ListVirtualServicesOutput added in v1.17.13

type ListVirtualServicesOutput struct {
	NextToken *string `locationName:"nextToken" type:"string"`

	// VirtualServices is a required field
	VirtualServices []*VirtualServiceRef `locationName:"virtualServices" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (ListVirtualServicesOutput) GoString added in v1.17.13

func (s ListVirtualServicesOutput) GoString() string

GoString returns the string representation

func (*ListVirtualServicesOutput) SetNextToken added in v1.17.13

SetNextToken sets the NextToken field's value.

func (*ListVirtualServicesOutput) SetVirtualServices added in v1.17.13

SetVirtualServices sets the VirtualServices field's value.

func (ListVirtualServicesOutput) String added in v1.17.13

func (s ListVirtualServicesOutput) String() string

String returns the string representation

type Listener

type Listener struct {

	// An object that represents the health check policy for a virtual node's listener.
	HealthCheck *HealthCheckPolicy `locationName:"healthCheck" type:"structure"`

	// An object that represents a port mapping.
	//
	// PortMapping is a required field
	PortMapping *PortMapping `locationName:"portMapping" type:"structure" required:"true"`

	// An object that represents timeouts for different protocols.
	Timeout *ListenerTimeout `locationName:"timeout" type:"structure"`

	// An object that represents the Transport Layer Security (TLS) properties for
	// a listener.
	Tls *ListenerTls `locationName:"tls" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a listener for a virtual node.

func (Listener) GoString

func (s Listener) GoString() string

GoString returns the string representation

func (*Listener) SetHealthCheck

func (s *Listener) SetHealthCheck(v *HealthCheckPolicy) *Listener

SetHealthCheck sets the HealthCheck field's value.

func (*Listener) SetPortMapping

func (s *Listener) SetPortMapping(v *PortMapping) *Listener

SetPortMapping sets the PortMapping field's value.

func (*Listener) SetTimeout added in v1.32.4

func (s *Listener) SetTimeout(v *ListenerTimeout) *Listener

SetTimeout sets the Timeout field's value.

func (*Listener) SetTls added in v1.29.13

func (s *Listener) SetTls(v *ListenerTls) *Listener

SetTls sets the Tls field's value.

func (Listener) String

func (s Listener) String() string

String returns the string representation

func (*Listener) Validate

func (s *Listener) Validate() error

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

type ListenerTimeout added in v1.32.4

type ListenerTimeout struct {

	// An object that represents types of timeouts.
	Grpc *GrpcTimeout `locationName:"grpc" type:"structure"`

	// An object that represents types of timeouts.
	Http *HttpTimeout `locationName:"http" type:"structure"`

	// An object that represents types of timeouts.
	Http2 *HttpTimeout `locationName:"http2" type:"structure"`

	// An object that represents types of timeouts.
	Tcp *TcpTimeout `locationName:"tcp" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents timeouts for different protocols.

func (ListenerTimeout) GoString added in v1.32.4

func (s ListenerTimeout) GoString() string

GoString returns the string representation

func (*ListenerTimeout) SetGrpc added in v1.32.4

SetGrpc sets the Grpc field's value.

func (*ListenerTimeout) SetHttp added in v1.32.4

SetHttp sets the Http field's value.

func (*ListenerTimeout) SetHttp2 added in v1.32.4

func (s *ListenerTimeout) SetHttp2(v *HttpTimeout) *ListenerTimeout

SetHttp2 sets the Http2 field's value.

func (*ListenerTimeout) SetTcp added in v1.32.4

SetTcp sets the Tcp field's value.

func (ListenerTimeout) String added in v1.32.4

func (s ListenerTimeout) String() string

String returns the string representation

type ListenerTls added in v1.29.13

type ListenerTls struct {

	// An object that represents a listener's Transport Layer Security (TLS) certificate.
	//
	// Certificate is a required field
	Certificate *ListenerTlsCertificate `locationName:"certificate" type:"structure" required:"true"`

	// Mode is a required field
	Mode *string `locationName:"mode" type:"string" required:"true" enum:"ListenerTlsMode"`
	// contains filtered or unexported fields
}

An object that represents the Transport Layer Security (TLS) properties for a listener.

func (ListenerTls) GoString added in v1.29.13

func (s ListenerTls) GoString() string

GoString returns the string representation

func (*ListenerTls) SetCertificate added in v1.29.13

func (s *ListenerTls) SetCertificate(v *ListenerTlsCertificate) *ListenerTls

SetCertificate sets the Certificate field's value.

func (*ListenerTls) SetMode added in v1.29.13

func (s *ListenerTls) SetMode(v string) *ListenerTls

SetMode sets the Mode field's value.

func (ListenerTls) String added in v1.29.13

func (s ListenerTls) String() string

String returns the string representation

func (*ListenerTls) Validate added in v1.29.13

func (s *ListenerTls) Validate() error

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

type ListenerTlsAcmCertificate added in v1.29.13

type ListenerTlsAcmCertificate struct {

	// CertificateArn is a required field
	CertificateArn *string `locationName:"certificateArn" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents an AWS Certicate Manager (ACM) certificate.

func (ListenerTlsAcmCertificate) GoString added in v1.29.13

func (s ListenerTlsAcmCertificate) GoString() string

GoString returns the string representation

func (*ListenerTlsAcmCertificate) SetCertificateArn added in v1.29.13

SetCertificateArn sets the CertificateArn field's value.

func (ListenerTlsAcmCertificate) String added in v1.29.13

func (s ListenerTlsAcmCertificate) String() string

String returns the string representation

func (*ListenerTlsAcmCertificate) Validate added in v1.29.13

func (s *ListenerTlsAcmCertificate) Validate() error

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

type ListenerTlsCertificate added in v1.29.13

type ListenerTlsCertificate struct {

	// An object that represents an AWS Certicate Manager (ACM) certificate.
	Acm *ListenerTlsAcmCertificate `locationName:"acm" type:"structure"`

	// An object that represents a local file certificate. The certificate must
	// meet specific requirements and you must have proxy authorization enabled.
	// For more information, see Transport Layer Security (TLS) (https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites).
	File *ListenerTlsFileCertificate `locationName:"file" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a listener's Transport Layer Security (TLS) certificate.

func (ListenerTlsCertificate) GoString added in v1.29.13

func (s ListenerTlsCertificate) GoString() string

GoString returns the string representation

func (*ListenerTlsCertificate) SetAcm added in v1.29.13

SetAcm sets the Acm field's value.

func (*ListenerTlsCertificate) SetFile added in v1.29.13

SetFile sets the File field's value.

func (ListenerTlsCertificate) String added in v1.29.13

func (s ListenerTlsCertificate) String() string

String returns the string representation

func (*ListenerTlsCertificate) Validate added in v1.29.13

func (s *ListenerTlsCertificate) Validate() error

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

type ListenerTlsFileCertificate added in v1.29.13

type ListenerTlsFileCertificate struct {

	// CertificateChain is a required field
	CertificateChain *string `locationName:"certificateChain" min:"1" type:"string" required:"true"`

	// PrivateKey is a required field
	PrivateKey *string `locationName:"privateKey" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) (https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites).

func (ListenerTlsFileCertificate) GoString added in v1.29.13

func (s ListenerTlsFileCertificate) GoString() string

GoString returns the string representation

func (*ListenerTlsFileCertificate) SetCertificateChain added in v1.29.13

SetCertificateChain sets the CertificateChain field's value.

func (*ListenerTlsFileCertificate) SetPrivateKey added in v1.29.13

SetPrivateKey sets the PrivateKey field's value.

func (ListenerTlsFileCertificate) String added in v1.29.13

String returns the string representation

func (*ListenerTlsFileCertificate) Validate added in v1.29.13

func (s *ListenerTlsFileCertificate) Validate() error

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

type Logging added in v1.19.3

type Logging struct {

	// An object that represents the access logging information for a virtual node.
	AccessLog *AccessLog `locationName:"accessLog" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the logging information for a virtual node.

func (Logging) GoString added in v1.19.3

func (s Logging) GoString() string

GoString returns the string representation

func (*Logging) SetAccessLog added in v1.19.3

func (s *Logging) SetAccessLog(v *AccessLog) *Logging

SetAccessLog sets the AccessLog field's value.

func (Logging) String added in v1.19.3

func (s Logging) String() string

String returns the string representation

func (*Logging) Validate added in v1.19.3

func (s *Logging) Validate() error

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

type MatchRange added in v1.23.2

type MatchRange struct {

	// End is a required field
	End *int64 `locationName:"end" type:"long" required:"true"`

	// Start is a required field
	Start *int64 `locationName:"start" type:"long" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.

func (MatchRange) GoString added in v1.23.2

func (s MatchRange) GoString() string

GoString returns the string representation

func (*MatchRange) SetEnd added in v1.23.2

func (s *MatchRange) SetEnd(v int64) *MatchRange

SetEnd sets the End field's value.

func (*MatchRange) SetStart added in v1.23.2

func (s *MatchRange) SetStart(v int64) *MatchRange

SetStart sets the Start field's value.

func (MatchRange) String added in v1.23.2

func (s MatchRange) String() string

String returns the string representation

func (*MatchRange) Validate added in v1.23.2

func (s *MatchRange) Validate() error

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

type MeshData

type MeshData struct {

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents metadata for a resource.
	//
	// Metadata is a required field
	Metadata *ResourceMetadata `locationName:"metadata" type:"structure" required:"true"`

	// An object that represents the specification of a service mesh.
	//
	// Spec is a required field
	Spec *MeshSpec `locationName:"spec" type:"structure" required:"true"`

	// An object that represents the status of a service mesh.
	//
	// Status is a required field
	Status *MeshStatus `locationName:"status" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a service mesh returned by a describe operation.

func (MeshData) GoString

func (s MeshData) GoString() string

GoString returns the string representation

func (*MeshData) SetMeshName

func (s *MeshData) SetMeshName(v string) *MeshData

SetMeshName sets the MeshName field's value.

func (*MeshData) SetMetadata

func (s *MeshData) SetMetadata(v *ResourceMetadata) *MeshData

SetMetadata sets the Metadata field's value.

func (*MeshData) SetSpec added in v1.19.3

func (s *MeshData) SetSpec(v *MeshSpec) *MeshData

SetSpec sets the Spec field's value.

func (*MeshData) SetStatus

func (s *MeshData) SetStatus(v *MeshStatus) *MeshData

SetStatus sets the Status field's value.

func (MeshData) String

func (s MeshData) String() string

String returns the string representation

type MeshRef

type MeshRef struct {

	// Arn is a required field
	Arn *string `locationName:"arn" type:"string" required:"true"`

	// CreatedAt is a required field
	CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`

	// LastUpdatedAt is a required field
	LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp" required:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// MeshOwner is a required field
	MeshOwner *string `locationName:"meshOwner" min:"12" type:"string" required:"true"`

	// ResourceOwner is a required field
	ResourceOwner *string `locationName:"resourceOwner" min:"12" type:"string" required:"true"`

	// Version is a required field
	Version *int64 `locationName:"version" type:"long" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a service mesh returned by a list operation.

func (MeshRef) GoString

func (s MeshRef) GoString() string

GoString returns the string representation

func (*MeshRef) SetArn

func (s *MeshRef) SetArn(v string) *MeshRef

SetArn sets the Arn field's value.

func (*MeshRef) SetCreatedAt added in v1.31.2

func (s *MeshRef) SetCreatedAt(v time.Time) *MeshRef

SetCreatedAt sets the CreatedAt field's value.

func (*MeshRef) SetLastUpdatedAt added in v1.31.2

func (s *MeshRef) SetLastUpdatedAt(v time.Time) *MeshRef

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*MeshRef) SetMeshName

func (s *MeshRef) SetMeshName(v string) *MeshRef

SetMeshName sets the MeshName field's value.

func (*MeshRef) SetMeshOwner added in v1.29.19

func (s *MeshRef) SetMeshOwner(v string) *MeshRef

SetMeshOwner sets the MeshOwner field's value.

func (*MeshRef) SetResourceOwner added in v1.29.19

func (s *MeshRef) SetResourceOwner(v string) *MeshRef

SetResourceOwner sets the ResourceOwner field's value.

func (*MeshRef) SetVersion added in v1.31.2

func (s *MeshRef) SetVersion(v int64) *MeshRef

SetVersion sets the Version field's value.

func (MeshRef) String

func (s MeshRef) String() string

String returns the string representation

type MeshSpec added in v1.19.3

type MeshSpec struct {

	// An object that represents the egress filter rules for a service mesh.
	EgressFilter *EgressFilter `locationName:"egressFilter" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the specification of a service mesh.

func (MeshSpec) GoString added in v1.19.3

func (s MeshSpec) GoString() string

GoString returns the string representation

func (*MeshSpec) SetEgressFilter added in v1.19.3

func (s *MeshSpec) SetEgressFilter(v *EgressFilter) *MeshSpec

SetEgressFilter sets the EgressFilter field's value.

func (MeshSpec) String added in v1.19.3

func (s MeshSpec) String() string

String returns the string representation

func (*MeshSpec) Validate added in v1.19.3

func (s *MeshSpec) Validate() error

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

type MeshStatus

type MeshStatus struct {
	Status *string `locationName:"status" type:"string" enum:"MeshStatusCode"`
	// contains filtered or unexported fields
}

An object that represents the status of a service mesh.

func (MeshStatus) GoString

func (s MeshStatus) GoString() string

GoString returns the string representation

func (*MeshStatus) SetStatus

func (s *MeshStatus) SetStatus(v string) *MeshStatus

SetStatus sets the Status field's value.

func (MeshStatus) String

func (s MeshStatus) String() string

String returns the string representation

type NotFoundException added in v1.28.0

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

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

The specified resource doesn't exist. Check your request syntax and try again.

func (*NotFoundException) Code added in v1.28.0

func (s *NotFoundException) Code() string

Code returns the exception type name.

func (*NotFoundException) Error added in v1.28.0

func (s *NotFoundException) Error() string

func (NotFoundException) GoString added in v1.28.0

func (s NotFoundException) GoString() string

GoString returns the string representation

func (*NotFoundException) Message added in v1.28.0

func (s *NotFoundException) Message() string

Message returns the exception's message.

func (*NotFoundException) OrigErr added in v1.28.0

func (s *NotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NotFoundException) RequestID added in v1.28.0

func (s *NotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*NotFoundException) StatusCode added in v1.28.0

func (s *NotFoundException) StatusCode() int

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

func (NotFoundException) String added in v1.28.0

func (s NotFoundException) String() string

String returns the string representation

type PortMapping

type PortMapping struct {

	// Port is a required field
	Port *int64 `locationName:"port" min:"1" type:"integer" required:"true"`

	// Protocol is a required field
	Protocol *string `locationName:"protocol" type:"string" required:"true" enum:"PortProtocol"`
	// contains filtered or unexported fields
}

An object that represents a port mapping.

func (PortMapping) GoString

func (s PortMapping) GoString() string

GoString returns the string representation

func (*PortMapping) SetPort

func (s *PortMapping) SetPort(v int64) *PortMapping

SetPort sets the Port field's value.

func (*PortMapping) SetProtocol

func (s *PortMapping) SetProtocol(v string) *PortMapping

SetProtocol sets the Protocol field's value.

func (PortMapping) String

func (s PortMapping) String() string

String returns the string representation

func (*PortMapping) Validate

func (s *PortMapping) Validate() error

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

type ResourceInUseException added in v1.28.0

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

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

You can't delete the specified resource because it's in use or required by another resource.

func (*ResourceInUseException) Code added in v1.28.0

func (s *ResourceInUseException) Code() string

Code returns the exception type name.

func (*ResourceInUseException) Error added in v1.28.0

func (s *ResourceInUseException) Error() string

func (ResourceInUseException) GoString added in v1.28.0

func (s ResourceInUseException) GoString() string

GoString returns the string representation

func (*ResourceInUseException) Message added in v1.28.0

func (s *ResourceInUseException) Message() string

Message returns the exception's message.

func (*ResourceInUseException) OrigErr added in v1.28.0

func (s *ResourceInUseException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceInUseException) RequestID added in v1.28.0

func (s *ResourceInUseException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ResourceInUseException) StatusCode added in v1.28.0

func (s *ResourceInUseException) StatusCode() int

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

func (ResourceInUseException) String added in v1.28.0

func (s ResourceInUseException) String() string

String returns the string representation

type ResourceMetadata

type ResourceMetadata struct {

	// Arn is a required field
	Arn *string `locationName:"arn" type:"string" required:"true"`

	// CreatedAt is a required field
	CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`

	// LastUpdatedAt is a required field
	LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp" required:"true"`

	// MeshOwner is a required field
	MeshOwner *string `locationName:"meshOwner" min:"12" type:"string" required:"true"`

	// ResourceOwner is a required field
	ResourceOwner *string `locationName:"resourceOwner" min:"12" type:"string" required:"true"`

	// Uid is a required field
	Uid *string `locationName:"uid" type:"string" required:"true"`

	// Version is a required field
	Version *int64 `locationName:"version" type:"long" required:"true"`
	// contains filtered or unexported fields
}

An object that represents metadata for a resource.

func (ResourceMetadata) GoString

func (s ResourceMetadata) GoString() string

GoString returns the string representation

func (*ResourceMetadata) SetArn

SetArn sets the Arn field's value.

func (*ResourceMetadata) SetCreatedAt

func (s *ResourceMetadata) SetCreatedAt(v time.Time) *ResourceMetadata

SetCreatedAt sets the CreatedAt field's value.

func (*ResourceMetadata) SetLastUpdatedAt

func (s *ResourceMetadata) SetLastUpdatedAt(v time.Time) *ResourceMetadata

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*ResourceMetadata) SetMeshOwner added in v1.29.19

func (s *ResourceMetadata) SetMeshOwner(v string) *ResourceMetadata

SetMeshOwner sets the MeshOwner field's value.

func (*ResourceMetadata) SetResourceOwner added in v1.29.19

func (s *ResourceMetadata) SetResourceOwner(v string) *ResourceMetadata

SetResourceOwner sets the ResourceOwner field's value.

func (*ResourceMetadata) SetUid

SetUid sets the Uid field's value.

func (*ResourceMetadata) SetVersion

func (s *ResourceMetadata) SetVersion(v int64) *ResourceMetadata

SetVersion sets the Version field's value.

func (ResourceMetadata) String

func (s ResourceMetadata) String() string

String returns the string representation

type RouteData

type RouteData struct {

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents metadata for a resource.
	//
	// Metadata is a required field
	Metadata *ResourceMetadata `locationName:"metadata" type:"structure" required:"true"`

	// RouteName is a required field
	RouteName *string `locationName:"routeName" min:"1" type:"string" required:"true"`

	// An object that represents a route specification. Specify one route type.
	//
	// Spec is a required field
	Spec *RouteSpec `locationName:"spec" type:"structure" required:"true"`

	// An object that represents the current status of a route.
	//
	// Status is a required field
	Status *RouteStatus `locationName:"status" type:"structure" required:"true"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a route returned by a describe operation.

func (RouteData) GoString

func (s RouteData) GoString() string

GoString returns the string representation

func (*RouteData) SetMeshName

func (s *RouteData) SetMeshName(v string) *RouteData

SetMeshName sets the MeshName field's value.

func (*RouteData) SetMetadata

func (s *RouteData) SetMetadata(v *ResourceMetadata) *RouteData

SetMetadata sets the Metadata field's value.

func (*RouteData) SetRouteName

func (s *RouteData) SetRouteName(v string) *RouteData

SetRouteName sets the RouteName field's value.

func (*RouteData) SetSpec

func (s *RouteData) SetSpec(v *RouteSpec) *RouteData

SetSpec sets the Spec field's value.

func (*RouteData) SetStatus

func (s *RouteData) SetStatus(v *RouteStatus) *RouteData

SetStatus sets the Status field's value.

func (*RouteData) SetVirtualRouterName

func (s *RouteData) SetVirtualRouterName(v string) *RouteData

SetVirtualRouterName sets the VirtualRouterName field's value.

func (RouteData) String

func (s RouteData) String() string

String returns the string representation

type RouteRef

type RouteRef struct {

	// Arn is a required field
	Arn *string `locationName:"arn" type:"string" required:"true"`

	// CreatedAt is a required field
	CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`

	// LastUpdatedAt is a required field
	LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp" required:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// MeshOwner is a required field
	MeshOwner *string `locationName:"meshOwner" min:"12" type:"string" required:"true"`

	// ResourceOwner is a required field
	ResourceOwner *string `locationName:"resourceOwner" min:"12" type:"string" required:"true"`

	// RouteName is a required field
	RouteName *string `locationName:"routeName" min:"1" type:"string" required:"true"`

	// Version is a required field
	Version *int64 `locationName:"version" type:"long" required:"true"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a route returned by a list operation.

func (RouteRef) GoString

func (s RouteRef) GoString() string

GoString returns the string representation

func (*RouteRef) SetArn

func (s *RouteRef) SetArn(v string) *RouteRef

SetArn sets the Arn field's value.

func (*RouteRef) SetCreatedAt added in v1.31.2

func (s *RouteRef) SetCreatedAt(v time.Time) *RouteRef

SetCreatedAt sets the CreatedAt field's value.

func (*RouteRef) SetLastUpdatedAt added in v1.31.2

func (s *RouteRef) SetLastUpdatedAt(v time.Time) *RouteRef

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*RouteRef) SetMeshName

func (s *RouteRef) SetMeshName(v string) *RouteRef

SetMeshName sets the MeshName field's value.

func (*RouteRef) SetMeshOwner added in v1.29.19

func (s *RouteRef) SetMeshOwner(v string) *RouteRef

SetMeshOwner sets the MeshOwner field's value.

func (*RouteRef) SetResourceOwner added in v1.29.19

func (s *RouteRef) SetResourceOwner(v string) *RouteRef

SetResourceOwner sets the ResourceOwner field's value.

func (*RouteRef) SetRouteName

func (s *RouteRef) SetRouteName(v string) *RouteRef

SetRouteName sets the RouteName field's value.

func (*RouteRef) SetVersion added in v1.31.2

func (s *RouteRef) SetVersion(v int64) *RouteRef

SetVersion sets the Version field's value.

func (*RouteRef) SetVirtualRouterName

func (s *RouteRef) SetVirtualRouterName(v string) *RouteRef

SetVirtualRouterName sets the VirtualRouterName field's value.

func (RouteRef) String

func (s RouteRef) String() string

String returns the string representation

type RouteSpec

type RouteSpec struct {

	// An object that represents a gRPC route type.
	GrpcRoute *GrpcRoute `locationName:"grpcRoute" type:"structure"`

	// An object that represents an HTTP or HTTP/2 route type.
	Http2Route *HttpRoute `locationName:"http2Route" type:"structure"`

	// An object that represents an HTTP or HTTP/2 route type.
	HttpRoute *HttpRoute `locationName:"httpRoute" type:"structure"`

	Priority *int64 `locationName:"priority" type:"integer"`

	// An object that represents a TCP route type.
	TcpRoute *TcpRoute `locationName:"tcpRoute" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a route specification. Specify one route type.

func (RouteSpec) GoString

func (s RouteSpec) GoString() string

GoString returns the string representation

func (*RouteSpec) SetGrpcRoute added in v1.25.19

func (s *RouteSpec) SetGrpcRoute(v *GrpcRoute) *RouteSpec

SetGrpcRoute sets the GrpcRoute field's value.

func (*RouteSpec) SetHttp2Route added in v1.25.19

func (s *RouteSpec) SetHttp2Route(v *HttpRoute) *RouteSpec

SetHttp2Route sets the Http2Route field's value.

func (*RouteSpec) SetHttpRoute

func (s *RouteSpec) SetHttpRoute(v *HttpRoute) *RouteSpec

SetHttpRoute sets the HttpRoute field's value.

func (*RouteSpec) SetPriority added in v1.23.2

func (s *RouteSpec) SetPriority(v int64) *RouteSpec

SetPriority sets the Priority field's value.

func (*RouteSpec) SetTcpRoute added in v1.19.3

func (s *RouteSpec) SetTcpRoute(v *TcpRoute) *RouteSpec

SetTcpRoute sets the TcpRoute field's value.

func (RouteSpec) String

func (s RouteSpec) String() string

String returns the string representation

func (*RouteSpec) Validate

func (s *RouteSpec) Validate() error

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

type RouteStatus

type RouteStatus struct {

	// Status is a required field
	Status *string `locationName:"status" type:"string" required:"true" enum:"RouteStatusCode"`
	// contains filtered or unexported fields
}

An object that represents the current status of a route.

func (RouteStatus) GoString

func (s RouteStatus) GoString() string

GoString returns the string representation

func (*RouteStatus) SetStatus

func (s *RouteStatus) SetStatus(v string) *RouteStatus

SetStatus sets the Status field's value.

func (RouteStatus) String

func (s RouteStatus) String() string

String returns the string representation

type ServiceDiscovery

type ServiceDiscovery struct {

	// An object that represents the AWS Cloud Map service discovery information
	// for your virtual node.
	AwsCloudMap *AwsCloudMapServiceDiscovery `locationName:"awsCloudMap" type:"structure"`

	// An object that represents the DNS service discovery information for your
	// virtual node.
	Dns *DnsServiceDiscovery `locationName:"dns" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the service discovery information for a virtual node.

func (ServiceDiscovery) GoString

func (s ServiceDiscovery) GoString() string

GoString returns the string representation

func (*ServiceDiscovery) SetAwsCloudMap added in v1.20.0

SetAwsCloudMap sets the AwsCloudMap field's value.

func (*ServiceDiscovery) SetDns

SetDns sets the Dns field's value.

func (ServiceDiscovery) String

func (s ServiceDiscovery) String() string

String returns the string representation

func (*ServiceDiscovery) Validate added in v1.17.13

func (s *ServiceDiscovery) Validate() error

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

type ServiceUnavailableException added in v1.28.0

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

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

The request has failed due to a temporary failure of the service.

func (*ServiceUnavailableException) Code added in v1.28.0

Code returns the exception type name.

func (*ServiceUnavailableException) Error added in v1.28.0

func (ServiceUnavailableException) GoString added in v1.28.0

func (s ServiceUnavailableException) GoString() string

GoString returns the string representation

func (*ServiceUnavailableException) Message added in v1.28.0

func (s *ServiceUnavailableException) Message() string

Message returns the exception's message.

func (*ServiceUnavailableException) OrigErr added in v1.28.0

func (s *ServiceUnavailableException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ServiceUnavailableException) RequestID added in v1.28.0

func (s *ServiceUnavailableException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ServiceUnavailableException) StatusCode added in v1.28.0

func (s *ServiceUnavailableException) StatusCode() int

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

func (ServiceUnavailableException) String added in v1.28.0

String returns the string representation

type TagRef added in v1.19.3

type TagRef struct {

	// Key is a required field
	Key *string `locationName:"key" min:"1" type:"string" required:"true"`

	Value *string `locationName:"value" type:"string"`
	// contains filtered or unexported fields
}

Optional metadata that you apply to a resource to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

func (TagRef) GoString added in v1.19.3

func (s TagRef) GoString() string

GoString returns the string representation

func (*TagRef) SetKey added in v1.19.3

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

SetKey sets the Key field's value.

func (*TagRef) SetValue added in v1.19.3

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

SetValue sets the Value field's value.

func (TagRef) String added in v1.19.3

func (s TagRef) String() string

String returns the string representation

func (*TagRef) Validate added in v1.19.3

func (s *TagRef) Validate() error

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

type TagResourceInput added in v1.19.3

type TagResourceInput struct {

	// ResourceArn is a required field
	ResourceArn *string `location:"querystring" locationName:"resourceArn" type:"string" required:"true"`

	// Tags is a required field
	Tags []*TagRef `locationName:"tags" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (TagResourceInput) GoString added in v1.19.3

func (s TagResourceInput) GoString() string

GoString returns the string representation

func (*TagResourceInput) SetResourceArn added in v1.19.3

func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*TagResourceInput) SetTags added in v1.19.3

func (s *TagResourceInput) SetTags(v []*TagRef) *TagResourceInput

SetTags sets the Tags field's value.

func (TagResourceInput) String added in v1.19.3

func (s TagResourceInput) String() string

String returns the string representation

func (*TagResourceInput) Validate added in v1.19.3

func (s *TagResourceInput) Validate() error

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

type TagResourceOutput added in v1.19.3

type TagResourceOutput struct {
	// contains filtered or unexported fields
}

func (TagResourceOutput) GoString added in v1.19.3

func (s TagResourceOutput) GoString() string

GoString returns the string representation

func (TagResourceOutput) String added in v1.19.3

func (s TagResourceOutput) String() string

String returns the string representation

type TcpRoute added in v1.19.3

type TcpRoute struct {

	// An object that represents the action to take if a match is determined.
	//
	// Action is a required field
	Action *TcpRouteAction `locationName:"action" type:"structure" required:"true"`

	// An object that represents types of timeouts.
	Timeout *TcpTimeout `locationName:"timeout" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a TCP route type.

func (TcpRoute) GoString added in v1.19.3

func (s TcpRoute) GoString() string

GoString returns the string representation

func (*TcpRoute) SetAction added in v1.19.3

func (s *TcpRoute) SetAction(v *TcpRouteAction) *TcpRoute

SetAction sets the Action field's value.

func (*TcpRoute) SetTimeout added in v1.32.4

func (s *TcpRoute) SetTimeout(v *TcpTimeout) *TcpRoute

SetTimeout sets the Timeout field's value.

func (TcpRoute) String added in v1.19.3

func (s TcpRoute) String() string

String returns the string representation

func (*TcpRoute) Validate added in v1.19.3

func (s *TcpRoute) Validate() error

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

type TcpRouteAction added in v1.19.3

type TcpRouteAction struct {

	// WeightedTargets is a required field
	WeightedTargets []*WeightedTarget `locationName:"weightedTargets" min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the action to take if a match is determined.

func (TcpRouteAction) GoString added in v1.19.3

func (s TcpRouteAction) GoString() string

GoString returns the string representation

func (*TcpRouteAction) SetWeightedTargets added in v1.19.3

func (s *TcpRouteAction) SetWeightedTargets(v []*WeightedTarget) *TcpRouteAction

SetWeightedTargets sets the WeightedTargets field's value.

func (TcpRouteAction) String added in v1.19.3

func (s TcpRouteAction) String() string

String returns the string representation

func (*TcpRouteAction) Validate added in v1.19.3

func (s *TcpRouteAction) Validate() error

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

type TcpTimeout added in v1.32.4

type TcpTimeout struct {

	// An object that represents a duration of time.
	Idle *Duration `locationName:"idle" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents types of timeouts.

func (TcpTimeout) GoString added in v1.32.4

func (s TcpTimeout) GoString() string

GoString returns the string representation

func (*TcpTimeout) SetIdle added in v1.32.4

func (s *TcpTimeout) SetIdle(v *Duration) *TcpTimeout

SetIdle sets the Idle field's value.

func (TcpTimeout) String added in v1.32.4

func (s TcpTimeout) String() string

String returns the string representation

type TlsValidationContext added in v1.29.13

type TlsValidationContext struct {

	// An object that represents a Transport Layer Security (TLS) validation context
	// trust.
	//
	// Trust is a required field
	Trust *TlsValidationContextTrust `locationName:"trust" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a Transport Layer Security (TLS) validation context.

func (TlsValidationContext) GoString added in v1.29.13

func (s TlsValidationContext) GoString() string

GoString returns the string representation

func (*TlsValidationContext) SetTrust added in v1.29.13

SetTrust sets the Trust field's value.

func (TlsValidationContext) String added in v1.29.13

func (s TlsValidationContext) String() string

String returns the string representation

func (*TlsValidationContext) Validate added in v1.29.13

func (s *TlsValidationContext) Validate() error

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

type TlsValidationContextAcmTrust added in v1.29.13

type TlsValidationContextAcmTrust struct {

	// CertificateAuthorityArns is a required field
	CertificateAuthorityArns []*string `locationName:"certificateAuthorityArns" min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a TLS validation context trust for an AWS Certicate Manager (ACM) certificate.

func (TlsValidationContextAcmTrust) GoString added in v1.29.13

func (s TlsValidationContextAcmTrust) GoString() string

GoString returns the string representation

func (*TlsValidationContextAcmTrust) SetCertificateAuthorityArns added in v1.29.13

func (s *TlsValidationContextAcmTrust) SetCertificateAuthorityArns(v []*string) *TlsValidationContextAcmTrust

SetCertificateAuthorityArns sets the CertificateAuthorityArns field's value.

func (TlsValidationContextAcmTrust) String added in v1.29.13

String returns the string representation

func (*TlsValidationContextAcmTrust) Validate added in v1.29.13

func (s *TlsValidationContextAcmTrust) Validate() error

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

type TlsValidationContextFileTrust added in v1.29.13

type TlsValidationContextFileTrust struct {

	// CertificateChain is a required field
	CertificateChain *string `locationName:"certificateChain" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

func (TlsValidationContextFileTrust) GoString added in v1.29.13

GoString returns the string representation

func (*TlsValidationContextFileTrust) SetCertificateChain added in v1.29.13

SetCertificateChain sets the CertificateChain field's value.

func (TlsValidationContextFileTrust) String added in v1.29.13

String returns the string representation

func (*TlsValidationContextFileTrust) Validate added in v1.29.13

func (s *TlsValidationContextFileTrust) Validate() error

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

type TlsValidationContextTrust added in v1.29.13

type TlsValidationContextTrust struct {

	// An object that represents a TLS validation context trust for an AWS Certicate
	// Manager (ACM) certificate.
	Acm *TlsValidationContextAcmTrust `locationName:"acm" type:"structure"`

	// An object that represents a Transport Layer Security (TLS) validation context
	// trust for a local file.
	File *TlsValidationContextFileTrust `locationName:"file" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a Transport Layer Security (TLS) validation context trust.

func (TlsValidationContextTrust) GoString added in v1.29.13

func (s TlsValidationContextTrust) GoString() string

GoString returns the string representation

func (*TlsValidationContextTrust) SetAcm added in v1.29.13

SetAcm sets the Acm field's value.

func (*TlsValidationContextTrust) SetFile added in v1.29.13

SetFile sets the File field's value.

func (TlsValidationContextTrust) String added in v1.29.13

func (s TlsValidationContextTrust) String() string

String returns the string representation

func (*TlsValidationContextTrust) Validate added in v1.29.13

func (s *TlsValidationContextTrust) Validate() error

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

type TooManyRequestsException added in v1.28.0

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

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

The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

func (*TooManyRequestsException) Code added in v1.28.0

func (s *TooManyRequestsException) Code() string

Code returns the exception type name.

func (*TooManyRequestsException) Error added in v1.28.0

func (s *TooManyRequestsException) Error() string

func (TooManyRequestsException) GoString added in v1.28.0

func (s TooManyRequestsException) GoString() string

GoString returns the string representation

func (*TooManyRequestsException) Message added in v1.28.0

func (s *TooManyRequestsException) Message() string

Message returns the exception's message.

func (*TooManyRequestsException) OrigErr added in v1.28.0

func (s *TooManyRequestsException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*TooManyRequestsException) RequestID added in v1.28.0

func (s *TooManyRequestsException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*TooManyRequestsException) StatusCode added in v1.28.0

func (s *TooManyRequestsException) StatusCode() int

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

func (TooManyRequestsException) String added in v1.28.0

func (s TooManyRequestsException) String() string

String returns the string representation

type TooManyTagsException added in v1.28.0

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

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

The request exceeds the maximum allowed number of tags allowed per resource. The current limit is 50 user tags per resource. You must reduce the number of tags in the request. None of the tags in this request were applied.

func (*TooManyTagsException) Code added in v1.28.0

func (s *TooManyTagsException) Code() string

Code returns the exception type name.

func (*TooManyTagsException) Error added in v1.28.0

func (s *TooManyTagsException) Error() string

func (TooManyTagsException) GoString added in v1.28.0

func (s TooManyTagsException) GoString() string

GoString returns the string representation

func (*TooManyTagsException) Message added in v1.28.0

func (s *TooManyTagsException) Message() string

Message returns the exception's message.

func (*TooManyTagsException) OrigErr added in v1.28.0

func (s *TooManyTagsException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*TooManyTagsException) RequestID added in v1.28.0

func (s *TooManyTagsException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*TooManyTagsException) StatusCode added in v1.28.0

func (s *TooManyTagsException) StatusCode() int

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

func (TooManyTagsException) String added in v1.28.0

func (s TooManyTagsException) String() string

String returns the string representation

type UntagResourceInput added in v1.19.3

type UntagResourceInput struct {

	// ResourceArn is a required field
	ResourceArn *string `location:"querystring" locationName:"resourceArn" type:"string" required:"true"`

	// TagKeys is a required field
	TagKeys []*string `locationName:"tagKeys" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (UntagResourceInput) GoString added in v1.19.3

func (s UntagResourceInput) GoString() string

GoString returns the string representation

func (*UntagResourceInput) SetResourceArn added in v1.19.3

func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*UntagResourceInput) SetTagKeys added in v1.19.3

func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput

SetTagKeys sets the TagKeys field's value.

func (UntagResourceInput) String added in v1.19.3

func (s UntagResourceInput) String() string

String returns the string representation

func (*UntagResourceInput) Validate added in v1.19.3

func (s *UntagResourceInput) Validate() error

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

type UntagResourceOutput added in v1.19.3

type UntagResourceOutput struct {
	// contains filtered or unexported fields
}

func (UntagResourceOutput) GoString added in v1.19.3

func (s UntagResourceOutput) GoString() string

GoString returns the string representation

func (UntagResourceOutput) String added in v1.19.3

func (s UntagResourceOutput) String() string

String returns the string representation

type UpdateGatewayRouteInput added in v1.33.5

type UpdateGatewayRouteInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// GatewayRouteName is a required field
	GatewayRouteName *string `location:"uri" locationName:"gatewayRouteName" min:"1" type:"string" required:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents a gateway route specification. Specify one gateway
	// route type.
	//
	// Spec is a required field
	Spec *GatewayRouteSpec `locationName:"spec" type:"structure" required:"true"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `location:"uri" locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateGatewayRouteInput) GoString added in v1.33.5

func (s UpdateGatewayRouteInput) GoString() string

GoString returns the string representation

func (*UpdateGatewayRouteInput) SetClientToken added in v1.33.5

SetClientToken sets the ClientToken field's value.

func (*UpdateGatewayRouteInput) SetGatewayRouteName added in v1.33.5

func (s *UpdateGatewayRouteInput) SetGatewayRouteName(v string) *UpdateGatewayRouteInput

SetGatewayRouteName sets the GatewayRouteName field's value.

func (*UpdateGatewayRouteInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*UpdateGatewayRouteInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*UpdateGatewayRouteInput) SetSpec added in v1.33.5

SetSpec sets the Spec field's value.

func (*UpdateGatewayRouteInput) SetVirtualGatewayName added in v1.33.5

func (s *UpdateGatewayRouteInput) SetVirtualGatewayName(v string) *UpdateGatewayRouteInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (UpdateGatewayRouteInput) String added in v1.33.5

func (s UpdateGatewayRouteInput) String() string

String returns the string representation

func (*UpdateGatewayRouteInput) Validate added in v1.33.5

func (s *UpdateGatewayRouteInput) Validate() error

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

type UpdateGatewayRouteOutput added in v1.33.5

type UpdateGatewayRouteOutput struct {

	// An object that represents a gateway route returned by a describe operation.
	//
	// GatewayRoute is a required field
	GatewayRoute *GatewayRouteData `locationName:"gatewayRoute" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateGatewayRouteOutput) GoString added in v1.33.5

func (s UpdateGatewayRouteOutput) GoString() string

GoString returns the string representation

func (*UpdateGatewayRouteOutput) SetGatewayRoute added in v1.33.5

SetGatewayRoute sets the GatewayRoute field's value.

func (UpdateGatewayRouteOutput) String added in v1.33.5

func (s UpdateGatewayRouteOutput) String() string

String returns the string representation

type UpdateMeshInput added in v1.19.3

type UpdateMeshInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents the specification of a service mesh.
	Spec *MeshSpec `locationName:"spec" type:"structure"`
	// contains filtered or unexported fields
}

func (UpdateMeshInput) GoString added in v1.19.3

func (s UpdateMeshInput) GoString() string

GoString returns the string representation

func (*UpdateMeshInput) SetClientToken added in v1.19.3

func (s *UpdateMeshInput) SetClientToken(v string) *UpdateMeshInput

SetClientToken sets the ClientToken field's value.

func (*UpdateMeshInput) SetMeshName added in v1.19.3

func (s *UpdateMeshInput) SetMeshName(v string) *UpdateMeshInput

SetMeshName sets the MeshName field's value.

func (*UpdateMeshInput) SetSpec added in v1.19.3

func (s *UpdateMeshInput) SetSpec(v *MeshSpec) *UpdateMeshInput

SetSpec sets the Spec field's value.

func (UpdateMeshInput) String added in v1.19.3

func (s UpdateMeshInput) String() string

String returns the string representation

func (*UpdateMeshInput) Validate added in v1.19.3

func (s *UpdateMeshInput) Validate() error

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

type UpdateMeshOutput added in v1.19.3

type UpdateMeshOutput struct {

	// An object that represents a service mesh returned by a describe operation.
	//
	// Mesh is a required field
	Mesh *MeshData `locationName:"mesh" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateMeshOutput) GoString added in v1.19.3

func (s UpdateMeshOutput) GoString() string

GoString returns the string representation

func (*UpdateMeshOutput) SetMesh added in v1.19.3

func (s *UpdateMeshOutput) SetMesh(v *MeshData) *UpdateMeshOutput

SetMesh sets the Mesh field's value.

func (UpdateMeshOutput) String added in v1.19.3

func (s UpdateMeshOutput) String() string

String returns the string representation

type UpdateRouteInput

type UpdateRouteInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// RouteName is a required field
	RouteName *string `location:"uri" locationName:"routeName" min:"1" type:"string" required:"true"`

	// An object that represents a route specification. Specify one route type.
	//
	// Spec is a required field
	Spec *RouteSpec `locationName:"spec" type:"structure" required:"true"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `location:"uri" locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateRouteInput) GoString

func (s UpdateRouteInput) GoString() string

GoString returns the string representation

func (*UpdateRouteInput) SetClientToken

func (s *UpdateRouteInput) SetClientToken(v string) *UpdateRouteInput

SetClientToken sets the ClientToken field's value.

func (*UpdateRouteInput) SetMeshName

func (s *UpdateRouteInput) SetMeshName(v string) *UpdateRouteInput

SetMeshName sets the MeshName field's value.

func (*UpdateRouteInput) SetMeshOwner added in v1.29.19

func (s *UpdateRouteInput) SetMeshOwner(v string) *UpdateRouteInput

SetMeshOwner sets the MeshOwner field's value.

func (*UpdateRouteInput) SetRouteName

func (s *UpdateRouteInput) SetRouteName(v string) *UpdateRouteInput

SetRouteName sets the RouteName field's value.

func (*UpdateRouteInput) SetSpec

SetSpec sets the Spec field's value.

func (*UpdateRouteInput) SetVirtualRouterName

func (s *UpdateRouteInput) SetVirtualRouterName(v string) *UpdateRouteInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (UpdateRouteInput) String

func (s UpdateRouteInput) String() string

String returns the string representation

func (*UpdateRouteInput) Validate

func (s *UpdateRouteInput) Validate() error

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

type UpdateRouteOutput

type UpdateRouteOutput struct {

	// An object that represents a route returned by a describe operation.
	//
	// Route is a required field
	Route *RouteData `locationName:"route" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateRouteOutput) GoString

func (s UpdateRouteOutput) GoString() string

GoString returns the string representation

func (*UpdateRouteOutput) SetRoute

SetRoute sets the Route field's value.

func (UpdateRouteOutput) String

func (s UpdateRouteOutput) String() string

String returns the string representation

type UpdateVirtualGatewayInput added in v1.33.5

type UpdateVirtualGatewayInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents the specification of a service mesh resource.
	//
	// Spec is a required field
	Spec *VirtualGatewaySpec `locationName:"spec" type:"structure" required:"true"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `location:"uri" locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateVirtualGatewayInput) GoString added in v1.33.5

func (s UpdateVirtualGatewayInput) GoString() string

GoString returns the string representation

func (*UpdateVirtualGatewayInput) SetClientToken added in v1.33.5

SetClientToken sets the ClientToken field's value.

func (*UpdateVirtualGatewayInput) SetMeshName added in v1.33.5

SetMeshName sets the MeshName field's value.

func (*UpdateVirtualGatewayInput) SetMeshOwner added in v1.33.5

SetMeshOwner sets the MeshOwner field's value.

func (*UpdateVirtualGatewayInput) SetSpec added in v1.33.5

SetSpec sets the Spec field's value.

func (*UpdateVirtualGatewayInput) SetVirtualGatewayName added in v1.33.5

func (s *UpdateVirtualGatewayInput) SetVirtualGatewayName(v string) *UpdateVirtualGatewayInput

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (UpdateVirtualGatewayInput) String added in v1.33.5

func (s UpdateVirtualGatewayInput) String() string

String returns the string representation

func (*UpdateVirtualGatewayInput) Validate added in v1.33.5

func (s *UpdateVirtualGatewayInput) Validate() error

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

type UpdateVirtualGatewayOutput added in v1.33.5

type UpdateVirtualGatewayOutput struct {

	// An object that represents a virtual gateway returned by a describe operation.
	//
	// VirtualGateway is a required field
	VirtualGateway *VirtualGatewayData `locationName:"virtualGateway" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateVirtualGatewayOutput) GoString added in v1.33.5

func (s UpdateVirtualGatewayOutput) GoString() string

GoString returns the string representation

func (*UpdateVirtualGatewayOutput) SetVirtualGateway added in v1.33.5

SetVirtualGateway sets the VirtualGateway field's value.

func (UpdateVirtualGatewayOutput) String added in v1.33.5

String returns the string representation

type UpdateVirtualNodeInput

type UpdateVirtualNodeInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents the specification of a virtual node.
	//
	// Spec is a required field
	Spec *VirtualNodeSpec `locationName:"spec" type:"structure" required:"true"`

	// VirtualNodeName is a required field
	VirtualNodeName *string `location:"uri" locationName:"virtualNodeName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateVirtualNodeInput) GoString

func (s UpdateVirtualNodeInput) GoString() string

GoString returns the string representation

func (*UpdateVirtualNodeInput) SetClientToken

SetClientToken sets the ClientToken field's value.

func (*UpdateVirtualNodeInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*UpdateVirtualNodeInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*UpdateVirtualNodeInput) SetSpec

SetSpec sets the Spec field's value.

func (*UpdateVirtualNodeInput) SetVirtualNodeName

func (s *UpdateVirtualNodeInput) SetVirtualNodeName(v string) *UpdateVirtualNodeInput

SetVirtualNodeName sets the VirtualNodeName field's value.

func (UpdateVirtualNodeInput) String

func (s UpdateVirtualNodeInput) String() string

String returns the string representation

func (*UpdateVirtualNodeInput) Validate

func (s *UpdateVirtualNodeInput) Validate() error

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

type UpdateVirtualNodeOutput

type UpdateVirtualNodeOutput struct {

	// An object that represents a virtual node returned by a describe operation.
	//
	// VirtualNode is a required field
	VirtualNode *VirtualNodeData `locationName:"virtualNode" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateVirtualNodeOutput) GoString

func (s UpdateVirtualNodeOutput) GoString() string

GoString returns the string representation

func (*UpdateVirtualNodeOutput) SetVirtualNode

SetVirtualNode sets the VirtualNode field's value.

func (UpdateVirtualNodeOutput) String

func (s UpdateVirtualNodeOutput) String() string

String returns the string representation

type UpdateVirtualRouterInput

type UpdateVirtualRouterInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents the specification of a virtual router.
	//
	// Spec is a required field
	Spec *VirtualRouterSpec `locationName:"spec" type:"structure" required:"true"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `location:"uri" locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateVirtualRouterInput) GoString

func (s UpdateVirtualRouterInput) GoString() string

GoString returns the string representation

func (*UpdateVirtualRouterInput) SetClientToken

SetClientToken sets the ClientToken field's value.

func (*UpdateVirtualRouterInput) SetMeshName

SetMeshName sets the MeshName field's value.

func (*UpdateVirtualRouterInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*UpdateVirtualRouterInput) SetSpec

SetSpec sets the Spec field's value.

func (*UpdateVirtualRouterInput) SetVirtualRouterName

func (s *UpdateVirtualRouterInput) SetVirtualRouterName(v string) *UpdateVirtualRouterInput

SetVirtualRouterName sets the VirtualRouterName field's value.

func (UpdateVirtualRouterInput) String

func (s UpdateVirtualRouterInput) String() string

String returns the string representation

func (*UpdateVirtualRouterInput) Validate

func (s *UpdateVirtualRouterInput) Validate() error

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

type UpdateVirtualRouterOutput

type UpdateVirtualRouterOutput struct {

	// An object that represents a virtual router returned by a describe operation.
	//
	// VirtualRouter is a required field
	VirtualRouter *VirtualRouterData `locationName:"virtualRouter" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateVirtualRouterOutput) GoString

func (s UpdateVirtualRouterOutput) GoString() string

GoString returns the string representation

func (*UpdateVirtualRouterOutput) SetVirtualRouter

SetVirtualRouter sets the VirtualRouter field's value.

func (UpdateVirtualRouterOutput) String

func (s UpdateVirtualRouterOutput) String() string

String returns the string representation

type UpdateVirtualServiceInput added in v1.17.13

type UpdateVirtualServiceInput struct {
	ClientToken *string `locationName:"clientToken" type:"string" idempotencyToken:"true"`

	// MeshName is a required field
	MeshName *string `location:"uri" locationName:"meshName" min:"1" type:"string" required:"true"`

	MeshOwner *string `location:"querystring" locationName:"meshOwner" min:"12" type:"string"`

	// An object that represents the specification of a virtual service.
	//
	// Spec is a required field
	Spec *VirtualServiceSpec `locationName:"spec" type:"structure" required:"true"`

	// VirtualServiceName is a required field
	VirtualServiceName *string `location:"uri" locationName:"virtualServiceName" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateVirtualServiceInput) GoString added in v1.17.13

func (s UpdateVirtualServiceInput) GoString() string

GoString returns the string representation

func (*UpdateVirtualServiceInput) SetClientToken added in v1.17.13

SetClientToken sets the ClientToken field's value.

func (*UpdateVirtualServiceInput) SetMeshName added in v1.17.13

SetMeshName sets the MeshName field's value.

func (*UpdateVirtualServiceInput) SetMeshOwner added in v1.29.19

SetMeshOwner sets the MeshOwner field's value.

func (*UpdateVirtualServiceInput) SetSpec added in v1.17.13

SetSpec sets the Spec field's value.

func (*UpdateVirtualServiceInput) SetVirtualServiceName added in v1.17.13

func (s *UpdateVirtualServiceInput) SetVirtualServiceName(v string) *UpdateVirtualServiceInput

SetVirtualServiceName sets the VirtualServiceName field's value.

func (UpdateVirtualServiceInput) String added in v1.17.13

func (s UpdateVirtualServiceInput) String() string

String returns the string representation

func (*UpdateVirtualServiceInput) Validate added in v1.17.13

func (s *UpdateVirtualServiceInput) Validate() error

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

type UpdateVirtualServiceOutput added in v1.17.13

type UpdateVirtualServiceOutput struct {

	// An object that represents a virtual service returned by a describe operation.
	//
	// VirtualService is a required field
	VirtualService *VirtualServiceData `locationName:"virtualService" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateVirtualServiceOutput) GoString added in v1.17.13

func (s UpdateVirtualServiceOutput) GoString() string

GoString returns the string representation

func (*UpdateVirtualServiceOutput) SetVirtualService added in v1.17.13

SetVirtualService sets the VirtualService field's value.

func (UpdateVirtualServiceOutput) String added in v1.17.13

String returns the string representation

type VirtualGatewayAccessLog added in v1.33.5

type VirtualGatewayAccessLog struct {

	// An object that represents an access log file.
	File *VirtualGatewayFileAccessLog `locationName:"file" type:"structure"`
	// contains filtered or unexported fields
}

The access log configuration for a virtual gateway.

func (VirtualGatewayAccessLog) GoString added in v1.33.5

func (s VirtualGatewayAccessLog) GoString() string

GoString returns the string representation

func (*VirtualGatewayAccessLog) SetFile added in v1.33.5

SetFile sets the File field's value.

func (VirtualGatewayAccessLog) String added in v1.33.5

func (s VirtualGatewayAccessLog) String() string

String returns the string representation

func (*VirtualGatewayAccessLog) Validate added in v1.33.5

func (s *VirtualGatewayAccessLog) Validate() error

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

type VirtualGatewayBackendDefaults added in v1.33.5

type VirtualGatewayBackendDefaults struct {

	// An object that represents a client policy.
	ClientPolicy *VirtualGatewayClientPolicy `locationName:"clientPolicy" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the default properties for a backend.

func (VirtualGatewayBackendDefaults) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayBackendDefaults) SetClientPolicy added in v1.33.5

SetClientPolicy sets the ClientPolicy field's value.

func (VirtualGatewayBackendDefaults) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayBackendDefaults) Validate added in v1.33.5

func (s *VirtualGatewayBackendDefaults) Validate() error

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

type VirtualGatewayClientPolicy added in v1.33.5

type VirtualGatewayClientPolicy struct {

	// An object that represents a Transport Layer Security (TLS) client policy.
	Tls *VirtualGatewayClientPolicyTls `locationName:"tls" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a client policy.

func (VirtualGatewayClientPolicy) GoString added in v1.33.5

func (s VirtualGatewayClientPolicy) GoString() string

GoString returns the string representation

func (*VirtualGatewayClientPolicy) SetTls added in v1.33.5

SetTls sets the Tls field's value.

func (VirtualGatewayClientPolicy) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayClientPolicy) Validate added in v1.33.5

func (s *VirtualGatewayClientPolicy) Validate() error

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

type VirtualGatewayClientPolicyTls added in v1.33.5

type VirtualGatewayClientPolicyTls struct {
	Enforce *bool `locationName:"enforce" type:"boolean"`

	Ports []*int64 `locationName:"ports" type:"list"`

	// An object that represents a Transport Layer Security (TLS) validation context.
	//
	// Validation is a required field
	Validation *VirtualGatewayTlsValidationContext `locationName:"validation" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a Transport Layer Security (TLS) client policy.

func (VirtualGatewayClientPolicyTls) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayClientPolicyTls) SetEnforce added in v1.33.5

SetEnforce sets the Enforce field's value.

func (*VirtualGatewayClientPolicyTls) SetPorts added in v1.33.5

SetPorts sets the Ports field's value.

func (*VirtualGatewayClientPolicyTls) SetValidation added in v1.33.5

SetValidation sets the Validation field's value.

func (VirtualGatewayClientPolicyTls) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayClientPolicyTls) Validate added in v1.33.5

func (s *VirtualGatewayClientPolicyTls) Validate() error

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

type VirtualGatewayData added in v1.33.5

type VirtualGatewayData struct {

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents metadata for a resource.
	//
	// Metadata is a required field
	Metadata *ResourceMetadata `locationName:"metadata" type:"structure" required:"true"`

	// An object that represents the specification of a service mesh resource.
	//
	// Spec is a required field
	Spec *VirtualGatewaySpec `locationName:"spec" type:"structure" required:"true"`

	// An object that represents the status of the mesh resource.
	//
	// Status is a required field
	Status *VirtualGatewayStatus `locationName:"status" type:"structure" required:"true"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual gateway returned by a describe operation.

func (VirtualGatewayData) GoString added in v1.33.5

func (s VirtualGatewayData) GoString() string

GoString returns the string representation

func (*VirtualGatewayData) SetMeshName added in v1.33.5

func (s *VirtualGatewayData) SetMeshName(v string) *VirtualGatewayData

SetMeshName sets the MeshName field's value.

func (*VirtualGatewayData) SetMetadata added in v1.33.5

SetMetadata sets the Metadata field's value.

func (*VirtualGatewayData) SetSpec added in v1.33.5

SetSpec sets the Spec field's value.

func (*VirtualGatewayData) SetStatus added in v1.33.5

SetStatus sets the Status field's value.

func (*VirtualGatewayData) SetVirtualGatewayName added in v1.33.5

func (s *VirtualGatewayData) SetVirtualGatewayName(v string) *VirtualGatewayData

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (VirtualGatewayData) String added in v1.33.5

func (s VirtualGatewayData) String() string

String returns the string representation

type VirtualGatewayFileAccessLog added in v1.33.5

type VirtualGatewayFileAccessLog struct {

	// Path is a required field
	Path *string `locationName:"path" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents an access log file.

func (VirtualGatewayFileAccessLog) GoString added in v1.33.5

func (s VirtualGatewayFileAccessLog) GoString() string

GoString returns the string representation

func (*VirtualGatewayFileAccessLog) SetPath added in v1.33.5

SetPath sets the Path field's value.

func (VirtualGatewayFileAccessLog) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayFileAccessLog) Validate added in v1.33.5

func (s *VirtualGatewayFileAccessLog) Validate() error

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

type VirtualGatewayHealthCheckPolicy added in v1.33.5

type VirtualGatewayHealthCheckPolicy struct {

	// HealthyThreshold is a required field
	HealthyThreshold *int64 `locationName:"healthyThreshold" min:"2" type:"integer" required:"true"`

	// IntervalMillis is a required field
	IntervalMillis *int64 `locationName:"intervalMillis" min:"5000" type:"long" required:"true"`

	Path *string `locationName:"path" type:"string"`

	Port *int64 `locationName:"port" min:"1" type:"integer"`

	// Protocol is a required field
	Protocol *string `locationName:"protocol" type:"string" required:"true" enum:"VirtualGatewayPortProtocol"`

	// TimeoutMillis is a required field
	TimeoutMillis *int64 `locationName:"timeoutMillis" min:"2000" type:"long" required:"true"`

	// UnhealthyThreshold is a required field
	UnhealthyThreshold *int64 `locationName:"unhealthyThreshold" min:"2" type:"integer" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the health check policy for a virtual gateway's listener.

func (VirtualGatewayHealthCheckPolicy) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayHealthCheckPolicy) SetHealthyThreshold added in v1.33.5

SetHealthyThreshold sets the HealthyThreshold field's value.

func (*VirtualGatewayHealthCheckPolicy) SetIntervalMillis added in v1.33.5

SetIntervalMillis sets the IntervalMillis field's value.

func (*VirtualGatewayHealthCheckPolicy) SetPath added in v1.33.5

SetPath sets the Path field's value.

func (*VirtualGatewayHealthCheckPolicy) SetPort added in v1.33.5

SetPort sets the Port field's value.

func (*VirtualGatewayHealthCheckPolicy) SetProtocol added in v1.33.5

SetProtocol sets the Protocol field's value.

func (*VirtualGatewayHealthCheckPolicy) SetTimeoutMillis added in v1.33.5

SetTimeoutMillis sets the TimeoutMillis field's value.

func (*VirtualGatewayHealthCheckPolicy) SetUnhealthyThreshold added in v1.33.5

SetUnhealthyThreshold sets the UnhealthyThreshold field's value.

func (VirtualGatewayHealthCheckPolicy) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayHealthCheckPolicy) Validate added in v1.33.5

func (s *VirtualGatewayHealthCheckPolicy) Validate() error

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

type VirtualGatewayListener added in v1.33.5

type VirtualGatewayListener struct {

	// An object that represents the health check policy for a virtual gateway's
	// listener.
	HealthCheck *VirtualGatewayHealthCheckPolicy `locationName:"healthCheck" type:"structure"`

	// An object that represents a port mapping.
	//
	// PortMapping is a required field
	PortMapping *VirtualGatewayPortMapping `locationName:"portMapping" type:"structure" required:"true"`

	// An object that represents the Transport Layer Security (TLS) properties for
	// a listener.
	Tls *VirtualGatewayListenerTls `locationName:"tls" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a listener for a virtual gateway.

func (VirtualGatewayListener) GoString added in v1.33.5

func (s VirtualGatewayListener) GoString() string

GoString returns the string representation

func (*VirtualGatewayListener) SetHealthCheck added in v1.33.5

SetHealthCheck sets the HealthCheck field's value.

func (*VirtualGatewayListener) SetPortMapping added in v1.33.5

SetPortMapping sets the PortMapping field's value.

func (*VirtualGatewayListener) SetTls added in v1.33.5

SetTls sets the Tls field's value.

func (VirtualGatewayListener) String added in v1.33.5

func (s VirtualGatewayListener) String() string

String returns the string representation

func (*VirtualGatewayListener) Validate added in v1.33.5

func (s *VirtualGatewayListener) Validate() error

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

type VirtualGatewayListenerTls added in v1.33.5

type VirtualGatewayListenerTls struct {

	// An object that represents a listener's Transport Layer Security (TLS) certificate.
	//
	// Certificate is a required field
	Certificate *VirtualGatewayListenerTlsCertificate `locationName:"certificate" type:"structure" required:"true"`

	// Mode is a required field
	Mode *string `locationName:"mode" type:"string" required:"true" enum:"VirtualGatewayListenerTlsMode"`
	// contains filtered or unexported fields
}

An object that represents the Transport Layer Security (TLS) properties for a listener.

func (VirtualGatewayListenerTls) GoString added in v1.33.5

func (s VirtualGatewayListenerTls) GoString() string

GoString returns the string representation

func (*VirtualGatewayListenerTls) SetCertificate added in v1.33.5

SetCertificate sets the Certificate field's value.

func (*VirtualGatewayListenerTls) SetMode added in v1.33.5

SetMode sets the Mode field's value.

func (VirtualGatewayListenerTls) String added in v1.33.5

func (s VirtualGatewayListenerTls) String() string

String returns the string representation

func (*VirtualGatewayListenerTls) Validate added in v1.33.5

func (s *VirtualGatewayListenerTls) Validate() error

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

type VirtualGatewayListenerTlsAcmCertificate added in v1.33.5

type VirtualGatewayListenerTlsAcmCertificate struct {

	// CertificateArn is a required field
	CertificateArn *string `locationName:"certificateArn" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents an AWS Certicate Manager (ACM) certificate.

func (VirtualGatewayListenerTlsAcmCertificate) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayListenerTlsAcmCertificate) SetCertificateArn added in v1.33.5

SetCertificateArn sets the CertificateArn field's value.

func (VirtualGatewayListenerTlsAcmCertificate) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayListenerTlsAcmCertificate) Validate added in v1.33.5

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

type VirtualGatewayListenerTlsCertificate added in v1.33.5

type VirtualGatewayListenerTlsCertificate struct {

	// An object that represents an AWS Certicate Manager (ACM) certificate.
	Acm *VirtualGatewayListenerTlsAcmCertificate `locationName:"acm" type:"structure"`

	// An object that represents a local file certificate. The certificate must
	// meet specific requirements and you must have proxy authorization enabled.
	// For more information, see Transport Layer Security (TLS) (https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites).
	File *VirtualGatewayListenerTlsFileCertificate `locationName:"file" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a listener's Transport Layer Security (TLS) certificate.

func (VirtualGatewayListenerTlsCertificate) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayListenerTlsCertificate) SetAcm added in v1.33.5

SetAcm sets the Acm field's value.

func (*VirtualGatewayListenerTlsCertificate) SetFile added in v1.33.5

SetFile sets the File field's value.

func (VirtualGatewayListenerTlsCertificate) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayListenerTlsCertificate) Validate added in v1.33.5

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

type VirtualGatewayListenerTlsFileCertificate added in v1.33.5

type VirtualGatewayListenerTlsFileCertificate struct {

	// CertificateChain is a required field
	CertificateChain *string `locationName:"certificateChain" min:"1" type:"string" required:"true"`

	// PrivateKey is a required field
	PrivateKey *string `locationName:"privateKey" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) (https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites).

func (VirtualGatewayListenerTlsFileCertificate) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayListenerTlsFileCertificate) SetCertificateChain added in v1.33.5

SetCertificateChain sets the CertificateChain field's value.

func (*VirtualGatewayListenerTlsFileCertificate) SetPrivateKey added in v1.33.5

SetPrivateKey sets the PrivateKey field's value.

func (VirtualGatewayListenerTlsFileCertificate) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayListenerTlsFileCertificate) Validate added in v1.33.5

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

type VirtualGatewayLogging added in v1.33.5

type VirtualGatewayLogging struct {

	// The access log configuration for a virtual gateway.
	AccessLog *VirtualGatewayAccessLog `locationName:"accessLog" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents logging information.

func (VirtualGatewayLogging) GoString added in v1.33.5

func (s VirtualGatewayLogging) GoString() string

GoString returns the string representation

func (*VirtualGatewayLogging) SetAccessLog added in v1.33.5

SetAccessLog sets the AccessLog field's value.

func (VirtualGatewayLogging) String added in v1.33.5

func (s VirtualGatewayLogging) String() string

String returns the string representation

func (*VirtualGatewayLogging) Validate added in v1.33.5

func (s *VirtualGatewayLogging) Validate() error

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

type VirtualGatewayPortMapping added in v1.33.5

type VirtualGatewayPortMapping struct {

	// Port is a required field
	Port *int64 `locationName:"port" min:"1" type:"integer" required:"true"`

	// Protocol is a required field
	Protocol *string `locationName:"protocol" type:"string" required:"true" enum:"VirtualGatewayPortProtocol"`
	// contains filtered or unexported fields
}

An object that represents a port mapping.

func (VirtualGatewayPortMapping) GoString added in v1.33.5

func (s VirtualGatewayPortMapping) GoString() string

GoString returns the string representation

func (*VirtualGatewayPortMapping) SetPort added in v1.33.5

SetPort sets the Port field's value.

func (*VirtualGatewayPortMapping) SetProtocol added in v1.33.5

SetProtocol sets the Protocol field's value.

func (VirtualGatewayPortMapping) String added in v1.33.5

func (s VirtualGatewayPortMapping) String() string

String returns the string representation

func (*VirtualGatewayPortMapping) Validate added in v1.33.5

func (s *VirtualGatewayPortMapping) Validate() error

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

type VirtualGatewayRef added in v1.33.5

type VirtualGatewayRef struct {

	// Arn is a required field
	Arn *string `locationName:"arn" type:"string" required:"true"`

	// CreatedAt is a required field
	CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`

	// LastUpdatedAt is a required field
	LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp" required:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// MeshOwner is a required field
	MeshOwner *string `locationName:"meshOwner" min:"12" type:"string" required:"true"`

	// ResourceOwner is a required field
	ResourceOwner *string `locationName:"resourceOwner" min:"12" type:"string" required:"true"`

	// Version is a required field
	Version *int64 `locationName:"version" type:"long" required:"true"`

	// VirtualGatewayName is a required field
	VirtualGatewayName *string `locationName:"virtualGatewayName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual gateway returned by a list operation.

func (VirtualGatewayRef) GoString added in v1.33.5

func (s VirtualGatewayRef) GoString() string

GoString returns the string representation

func (*VirtualGatewayRef) SetArn added in v1.33.5

SetArn sets the Arn field's value.

func (*VirtualGatewayRef) SetCreatedAt added in v1.33.5

func (s *VirtualGatewayRef) SetCreatedAt(v time.Time) *VirtualGatewayRef

SetCreatedAt sets the CreatedAt field's value.

func (*VirtualGatewayRef) SetLastUpdatedAt added in v1.33.5

func (s *VirtualGatewayRef) SetLastUpdatedAt(v time.Time) *VirtualGatewayRef

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*VirtualGatewayRef) SetMeshName added in v1.33.5

func (s *VirtualGatewayRef) SetMeshName(v string) *VirtualGatewayRef

SetMeshName sets the MeshName field's value.

func (*VirtualGatewayRef) SetMeshOwner added in v1.33.5

func (s *VirtualGatewayRef) SetMeshOwner(v string) *VirtualGatewayRef

SetMeshOwner sets the MeshOwner field's value.

func (*VirtualGatewayRef) SetResourceOwner added in v1.33.5

func (s *VirtualGatewayRef) SetResourceOwner(v string) *VirtualGatewayRef

SetResourceOwner sets the ResourceOwner field's value.

func (*VirtualGatewayRef) SetVersion added in v1.33.5

func (s *VirtualGatewayRef) SetVersion(v int64) *VirtualGatewayRef

SetVersion sets the Version field's value.

func (*VirtualGatewayRef) SetVirtualGatewayName added in v1.33.5

func (s *VirtualGatewayRef) SetVirtualGatewayName(v string) *VirtualGatewayRef

SetVirtualGatewayName sets the VirtualGatewayName field's value.

func (VirtualGatewayRef) String added in v1.33.5

func (s VirtualGatewayRef) String() string

String returns the string representation

type VirtualGatewaySpec added in v1.33.5

type VirtualGatewaySpec struct {

	// An object that represents the default properties for a backend.
	BackendDefaults *VirtualGatewayBackendDefaults `locationName:"backendDefaults" type:"structure"`

	// Listeners is a required field
	Listeners []*VirtualGatewayListener `locationName:"listeners" type:"list" required:"true"`

	// An object that represents logging information.
	Logging *VirtualGatewayLogging `locationName:"logging" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the specification of a service mesh resource.

func (VirtualGatewaySpec) GoString added in v1.33.5

func (s VirtualGatewaySpec) GoString() string

GoString returns the string representation

func (*VirtualGatewaySpec) SetBackendDefaults added in v1.33.5

SetBackendDefaults sets the BackendDefaults field's value.

func (*VirtualGatewaySpec) SetListeners added in v1.33.5

SetListeners sets the Listeners field's value.

func (*VirtualGatewaySpec) SetLogging added in v1.33.5

SetLogging sets the Logging field's value.

func (VirtualGatewaySpec) String added in v1.33.5

func (s VirtualGatewaySpec) String() string

String returns the string representation

func (*VirtualGatewaySpec) Validate added in v1.33.5

func (s *VirtualGatewaySpec) Validate() error

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

type VirtualGatewayStatus added in v1.33.5

type VirtualGatewayStatus struct {

	// Status is a required field
	Status *string `locationName:"status" type:"string" required:"true" enum:"VirtualGatewayStatusCode"`
	// contains filtered or unexported fields
}

An object that represents the status of the mesh resource.

func (VirtualGatewayStatus) GoString added in v1.33.5

func (s VirtualGatewayStatus) GoString() string

GoString returns the string representation

func (*VirtualGatewayStatus) SetStatus added in v1.33.5

SetStatus sets the Status field's value.

func (VirtualGatewayStatus) String added in v1.33.5

func (s VirtualGatewayStatus) String() string

String returns the string representation

type VirtualGatewayTlsValidationContext added in v1.33.5

type VirtualGatewayTlsValidationContext struct {

	// An object that represents a Transport Layer Security (TLS) validation context
	// trust.
	//
	// Trust is a required field
	Trust *VirtualGatewayTlsValidationContextTrust `locationName:"trust" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a Transport Layer Security (TLS) validation context.

func (VirtualGatewayTlsValidationContext) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayTlsValidationContext) SetTrust added in v1.33.5

SetTrust sets the Trust field's value.

func (VirtualGatewayTlsValidationContext) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayTlsValidationContext) Validate added in v1.33.5

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

type VirtualGatewayTlsValidationContextAcmTrust added in v1.33.5

type VirtualGatewayTlsValidationContextAcmTrust struct {

	// CertificateAuthorityArns is a required field
	CertificateAuthorityArns []*string `locationName:"certificateAuthorityArns" min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a TLS validation context trust for an AWS Certicate Manager (ACM) certificate.

func (VirtualGatewayTlsValidationContextAcmTrust) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayTlsValidationContextAcmTrust) SetCertificateAuthorityArns added in v1.33.5

SetCertificateAuthorityArns sets the CertificateAuthorityArns field's value.

func (VirtualGatewayTlsValidationContextAcmTrust) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayTlsValidationContextAcmTrust) Validate added in v1.33.5

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

type VirtualGatewayTlsValidationContextFileTrust added in v1.33.5

type VirtualGatewayTlsValidationContextFileTrust struct {

	// CertificateChain is a required field
	CertificateChain *string `locationName:"certificateChain" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

func (VirtualGatewayTlsValidationContextFileTrust) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayTlsValidationContextFileTrust) SetCertificateChain added in v1.33.5

SetCertificateChain sets the CertificateChain field's value.

func (VirtualGatewayTlsValidationContextFileTrust) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayTlsValidationContextFileTrust) Validate added in v1.33.5

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

type VirtualGatewayTlsValidationContextTrust added in v1.33.5

type VirtualGatewayTlsValidationContextTrust struct {

	// An object that represents a TLS validation context trust for an AWS Certicate
	// Manager (ACM) certificate.
	Acm *VirtualGatewayTlsValidationContextAcmTrust `locationName:"acm" type:"structure"`

	// An object that represents a Transport Layer Security (TLS) validation context
	// trust for a local file.
	File *VirtualGatewayTlsValidationContextFileTrust `locationName:"file" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents a Transport Layer Security (TLS) validation context trust.

func (VirtualGatewayTlsValidationContextTrust) GoString added in v1.33.5

GoString returns the string representation

func (*VirtualGatewayTlsValidationContextTrust) SetAcm added in v1.33.5

SetAcm sets the Acm field's value.

func (*VirtualGatewayTlsValidationContextTrust) SetFile added in v1.33.5

SetFile sets the File field's value.

func (VirtualGatewayTlsValidationContextTrust) String added in v1.33.5

String returns the string representation

func (*VirtualGatewayTlsValidationContextTrust) Validate added in v1.33.5

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

type VirtualNodeData

type VirtualNodeData struct {

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents metadata for a resource.
	//
	// Metadata is a required field
	Metadata *ResourceMetadata `locationName:"metadata" type:"structure" required:"true"`

	// An object that represents the specification of a virtual node.
	//
	// Spec is a required field
	Spec *VirtualNodeSpec `locationName:"spec" type:"structure" required:"true"`

	// An object that represents the current status of the virtual node.
	//
	// Status is a required field
	Status *VirtualNodeStatus `locationName:"status" type:"structure" required:"true"`

	// VirtualNodeName is a required field
	VirtualNodeName *string `locationName:"virtualNodeName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual node returned by a describe operation.

func (VirtualNodeData) GoString

func (s VirtualNodeData) GoString() string

GoString returns the string representation

func (*VirtualNodeData) SetMeshName

func (s *VirtualNodeData) SetMeshName(v string) *VirtualNodeData

SetMeshName sets the MeshName field's value.

func (*VirtualNodeData) SetMetadata

func (s *VirtualNodeData) SetMetadata(v *ResourceMetadata) *VirtualNodeData

SetMetadata sets the Metadata field's value.

func (*VirtualNodeData) SetSpec

SetSpec sets the Spec field's value.

func (*VirtualNodeData) SetStatus

SetStatus sets the Status field's value.

func (*VirtualNodeData) SetVirtualNodeName

func (s *VirtualNodeData) SetVirtualNodeName(v string) *VirtualNodeData

SetVirtualNodeName sets the VirtualNodeName field's value.

func (VirtualNodeData) String

func (s VirtualNodeData) String() string

String returns the string representation

type VirtualNodeRef

type VirtualNodeRef struct {

	// Arn is a required field
	Arn *string `locationName:"arn" type:"string" required:"true"`

	// CreatedAt is a required field
	CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`

	// LastUpdatedAt is a required field
	LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp" required:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// MeshOwner is a required field
	MeshOwner *string `locationName:"meshOwner" min:"12" type:"string" required:"true"`

	// ResourceOwner is a required field
	ResourceOwner *string `locationName:"resourceOwner" min:"12" type:"string" required:"true"`

	// Version is a required field
	Version *int64 `locationName:"version" type:"long" required:"true"`

	// VirtualNodeName is a required field
	VirtualNodeName *string `locationName:"virtualNodeName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual node returned by a list operation.

func (VirtualNodeRef) GoString

func (s VirtualNodeRef) GoString() string

GoString returns the string representation

func (*VirtualNodeRef) SetArn

func (s *VirtualNodeRef) SetArn(v string) *VirtualNodeRef

SetArn sets the Arn field's value.

func (*VirtualNodeRef) SetCreatedAt added in v1.31.2

func (s *VirtualNodeRef) SetCreatedAt(v time.Time) *VirtualNodeRef

SetCreatedAt sets the CreatedAt field's value.

func (*VirtualNodeRef) SetLastUpdatedAt added in v1.31.2

func (s *VirtualNodeRef) SetLastUpdatedAt(v time.Time) *VirtualNodeRef

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*VirtualNodeRef) SetMeshName

func (s *VirtualNodeRef) SetMeshName(v string) *VirtualNodeRef

SetMeshName sets the MeshName field's value.

func (*VirtualNodeRef) SetMeshOwner added in v1.29.19

func (s *VirtualNodeRef) SetMeshOwner(v string) *VirtualNodeRef

SetMeshOwner sets the MeshOwner field's value.

func (*VirtualNodeRef) SetResourceOwner added in v1.29.19

func (s *VirtualNodeRef) SetResourceOwner(v string) *VirtualNodeRef

SetResourceOwner sets the ResourceOwner field's value.

func (*VirtualNodeRef) SetVersion added in v1.31.2

func (s *VirtualNodeRef) SetVersion(v int64) *VirtualNodeRef

SetVersion sets the Version field's value.

func (*VirtualNodeRef) SetVirtualNodeName

func (s *VirtualNodeRef) SetVirtualNodeName(v string) *VirtualNodeRef

SetVirtualNodeName sets the VirtualNodeName field's value.

func (VirtualNodeRef) String

func (s VirtualNodeRef) String() string

String returns the string representation

type VirtualNodeServiceProvider added in v1.17.13

type VirtualNodeServiceProvider struct {

	// VirtualNodeName is a required field
	VirtualNodeName *string `locationName:"virtualNodeName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual node service provider.

func (VirtualNodeServiceProvider) GoString added in v1.17.13

func (s VirtualNodeServiceProvider) GoString() string

GoString returns the string representation

func (*VirtualNodeServiceProvider) SetVirtualNodeName added in v1.17.13

SetVirtualNodeName sets the VirtualNodeName field's value.

func (VirtualNodeServiceProvider) String added in v1.17.13

String returns the string representation

func (*VirtualNodeServiceProvider) Validate added in v1.17.13

func (s *VirtualNodeServiceProvider) Validate() error

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

type VirtualNodeSpec

type VirtualNodeSpec struct {

	// An object that represents the default properties for a backend.
	BackendDefaults *BackendDefaults `locationName:"backendDefaults" type:"structure"`

	Backends []*Backend `locationName:"backends" type:"list"`

	Listeners []*Listener `locationName:"listeners" type:"list"`

	// An object that represents the logging information for a virtual node.
	Logging *Logging `locationName:"logging" type:"structure"`

	// An object that represents the service discovery information for a virtual
	// node.
	ServiceDiscovery *ServiceDiscovery `locationName:"serviceDiscovery" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the specification of a virtual node.

func (VirtualNodeSpec) GoString

func (s VirtualNodeSpec) GoString() string

GoString returns the string representation

func (*VirtualNodeSpec) SetBackendDefaults added in v1.29.13

func (s *VirtualNodeSpec) SetBackendDefaults(v *BackendDefaults) *VirtualNodeSpec

SetBackendDefaults sets the BackendDefaults field's value.

func (*VirtualNodeSpec) SetBackends

func (s *VirtualNodeSpec) SetBackends(v []*Backend) *VirtualNodeSpec

SetBackends sets the Backends field's value.

func (*VirtualNodeSpec) SetListeners

func (s *VirtualNodeSpec) SetListeners(v []*Listener) *VirtualNodeSpec

SetListeners sets the Listeners field's value.

func (*VirtualNodeSpec) SetLogging added in v1.19.3

func (s *VirtualNodeSpec) SetLogging(v *Logging) *VirtualNodeSpec

SetLogging sets the Logging field's value.

func (*VirtualNodeSpec) SetServiceDiscovery

func (s *VirtualNodeSpec) SetServiceDiscovery(v *ServiceDiscovery) *VirtualNodeSpec

SetServiceDiscovery sets the ServiceDiscovery field's value.

func (VirtualNodeSpec) String

func (s VirtualNodeSpec) String() string

String returns the string representation

func (*VirtualNodeSpec) Validate

func (s *VirtualNodeSpec) Validate() error

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

type VirtualNodeStatus

type VirtualNodeStatus struct {

	// Status is a required field
	Status *string `locationName:"status" type:"string" required:"true" enum:"VirtualNodeStatusCode"`
	// contains filtered or unexported fields
}

An object that represents the current status of the virtual node.

func (VirtualNodeStatus) GoString

func (s VirtualNodeStatus) GoString() string

GoString returns the string representation

func (*VirtualNodeStatus) SetStatus

func (s *VirtualNodeStatus) SetStatus(v string) *VirtualNodeStatus

SetStatus sets the Status field's value.

func (VirtualNodeStatus) String

func (s VirtualNodeStatus) String() string

String returns the string representation

type VirtualRouterData

type VirtualRouterData struct {

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents metadata for a resource.
	//
	// Metadata is a required field
	Metadata *ResourceMetadata `locationName:"metadata" type:"structure" required:"true"`

	// An object that represents the specification of a virtual router.
	//
	// Spec is a required field
	Spec *VirtualRouterSpec `locationName:"spec" type:"structure" required:"true"`

	// An object that represents the status of a virtual router.
	//
	// Status is a required field
	Status *VirtualRouterStatus `locationName:"status" type:"structure" required:"true"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual router returned by a describe operation.

func (VirtualRouterData) GoString

func (s VirtualRouterData) GoString() string

GoString returns the string representation

func (*VirtualRouterData) SetMeshName

func (s *VirtualRouterData) SetMeshName(v string) *VirtualRouterData

SetMeshName sets the MeshName field's value.

func (*VirtualRouterData) SetMetadata

SetMetadata sets the Metadata field's value.

func (*VirtualRouterData) SetSpec

SetSpec sets the Spec field's value.

func (*VirtualRouterData) SetStatus

SetStatus sets the Status field's value.

func (*VirtualRouterData) SetVirtualRouterName

func (s *VirtualRouterData) SetVirtualRouterName(v string) *VirtualRouterData

SetVirtualRouterName sets the VirtualRouterName field's value.

func (VirtualRouterData) String

func (s VirtualRouterData) String() string

String returns the string representation

type VirtualRouterListener added in v1.17.13

type VirtualRouterListener struct {

	// An object that represents a port mapping.
	//
	// PortMapping is a required field
	PortMapping *PortMapping `locationName:"portMapping" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual router listener.

func (VirtualRouterListener) GoString added in v1.17.13

func (s VirtualRouterListener) GoString() string

GoString returns the string representation

func (*VirtualRouterListener) SetPortMapping added in v1.17.13

SetPortMapping sets the PortMapping field's value.

func (VirtualRouterListener) String added in v1.17.13

func (s VirtualRouterListener) String() string

String returns the string representation

func (*VirtualRouterListener) Validate added in v1.17.13

func (s *VirtualRouterListener) Validate() error

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

type VirtualRouterRef

type VirtualRouterRef struct {

	// Arn is a required field
	Arn *string `locationName:"arn" type:"string" required:"true"`

	// CreatedAt is a required field
	CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`

	// LastUpdatedAt is a required field
	LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp" required:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// MeshOwner is a required field
	MeshOwner *string `locationName:"meshOwner" min:"12" type:"string" required:"true"`

	// ResourceOwner is a required field
	ResourceOwner *string `locationName:"resourceOwner" min:"12" type:"string" required:"true"`

	// Version is a required field
	Version *int64 `locationName:"version" type:"long" required:"true"`

	// VirtualRouterName is a required field
	VirtualRouterName *string `locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual router returned by a list operation.

func (VirtualRouterRef) GoString

func (s VirtualRouterRef) GoString() string

GoString returns the string representation

func (*VirtualRouterRef) SetArn

SetArn sets the Arn field's value.

func (*VirtualRouterRef) SetCreatedAt added in v1.31.2

func (s *VirtualRouterRef) SetCreatedAt(v time.Time) *VirtualRouterRef

SetCreatedAt sets the CreatedAt field's value.

func (*VirtualRouterRef) SetLastUpdatedAt added in v1.31.2

func (s *VirtualRouterRef) SetLastUpdatedAt(v time.Time) *VirtualRouterRef

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*VirtualRouterRef) SetMeshName

func (s *VirtualRouterRef) SetMeshName(v string) *VirtualRouterRef

SetMeshName sets the MeshName field's value.

func (*VirtualRouterRef) SetMeshOwner added in v1.29.19

func (s *VirtualRouterRef) SetMeshOwner(v string) *VirtualRouterRef

SetMeshOwner sets the MeshOwner field's value.

func (*VirtualRouterRef) SetResourceOwner added in v1.29.19

func (s *VirtualRouterRef) SetResourceOwner(v string) *VirtualRouterRef

SetResourceOwner sets the ResourceOwner field's value.

func (*VirtualRouterRef) SetVersion added in v1.31.2

func (s *VirtualRouterRef) SetVersion(v int64) *VirtualRouterRef

SetVersion sets the Version field's value.

func (*VirtualRouterRef) SetVirtualRouterName

func (s *VirtualRouterRef) SetVirtualRouterName(v string) *VirtualRouterRef

SetVirtualRouterName sets the VirtualRouterName field's value.

func (VirtualRouterRef) String

func (s VirtualRouterRef) String() string

String returns the string representation

type VirtualRouterServiceProvider added in v1.17.13

type VirtualRouterServiceProvider struct {

	// VirtualRouterName is a required field
	VirtualRouterName *string `locationName:"virtualRouterName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual node service provider.

func (VirtualRouterServiceProvider) GoString added in v1.17.13

func (s VirtualRouterServiceProvider) GoString() string

GoString returns the string representation

func (*VirtualRouterServiceProvider) SetVirtualRouterName added in v1.17.13

SetVirtualRouterName sets the VirtualRouterName field's value.

func (VirtualRouterServiceProvider) String added in v1.17.13

String returns the string representation

func (*VirtualRouterServiceProvider) Validate added in v1.17.13

func (s *VirtualRouterServiceProvider) Validate() error

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

type VirtualRouterSpec

type VirtualRouterSpec struct {
	Listeners []*VirtualRouterListener `locationName:"listeners" min:"1" type:"list"`
	// contains filtered or unexported fields
}

An object that represents the specification of a virtual router.

func (VirtualRouterSpec) GoString

func (s VirtualRouterSpec) GoString() string

GoString returns the string representation

func (*VirtualRouterSpec) SetListeners added in v1.17.13

SetListeners sets the Listeners field's value.

func (VirtualRouterSpec) String

func (s VirtualRouterSpec) String() string

String returns the string representation

func (*VirtualRouterSpec) Validate added in v1.17.13

func (s *VirtualRouterSpec) Validate() error

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

type VirtualRouterStatus

type VirtualRouterStatus struct {

	// Status is a required field
	Status *string `locationName:"status" type:"string" required:"true" enum:"VirtualRouterStatusCode"`
	// contains filtered or unexported fields
}

An object that represents the status of a virtual router.

func (VirtualRouterStatus) GoString

func (s VirtualRouterStatus) GoString() string

GoString returns the string representation

func (*VirtualRouterStatus) SetStatus

SetStatus sets the Status field's value.

func (VirtualRouterStatus) String

func (s VirtualRouterStatus) String() string

String returns the string representation

type VirtualServiceBackend added in v1.17.13

type VirtualServiceBackend struct {

	// An object that represents a client policy.
	ClientPolicy *ClientPolicy `locationName:"clientPolicy" type:"structure"`

	// VirtualServiceName is a required field
	VirtualServiceName *string `locationName:"virtualServiceName" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual service backend for a virtual node.

func (VirtualServiceBackend) GoString added in v1.17.13

func (s VirtualServiceBackend) GoString() string

GoString returns the string representation

func (*VirtualServiceBackend) SetClientPolicy added in v1.29.13

SetClientPolicy sets the ClientPolicy field's value.

func (*VirtualServiceBackend) SetVirtualServiceName added in v1.17.13

func (s *VirtualServiceBackend) SetVirtualServiceName(v string) *VirtualServiceBackend

SetVirtualServiceName sets the VirtualServiceName field's value.

func (VirtualServiceBackend) String added in v1.17.13

func (s VirtualServiceBackend) String() string

String returns the string representation

func (*VirtualServiceBackend) Validate added in v1.17.13

func (s *VirtualServiceBackend) Validate() error

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

type VirtualServiceData added in v1.17.13

type VirtualServiceData struct {

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// An object that represents metadata for a resource.
	//
	// Metadata is a required field
	Metadata *ResourceMetadata `locationName:"metadata" type:"structure" required:"true"`

	// An object that represents the specification of a virtual service.
	//
	// Spec is a required field
	Spec *VirtualServiceSpec `locationName:"spec" type:"structure" required:"true"`

	// An object that represents the status of a virtual service.
	//
	// Status is a required field
	Status *VirtualServiceStatus `locationName:"status" type:"structure" required:"true"`

	// VirtualServiceName is a required field
	VirtualServiceName *string `locationName:"virtualServiceName" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual service returned by a describe operation.

func (VirtualServiceData) GoString added in v1.17.13

func (s VirtualServiceData) GoString() string

GoString returns the string representation

func (*VirtualServiceData) SetMeshName added in v1.17.13

func (s *VirtualServiceData) SetMeshName(v string) *VirtualServiceData

SetMeshName sets the MeshName field's value.

func (*VirtualServiceData) SetMetadata added in v1.17.13

SetMetadata sets the Metadata field's value.

func (*VirtualServiceData) SetSpec added in v1.17.13

SetSpec sets the Spec field's value.

func (*VirtualServiceData) SetStatus added in v1.17.13

SetStatus sets the Status field's value.

func (*VirtualServiceData) SetVirtualServiceName added in v1.17.13

func (s *VirtualServiceData) SetVirtualServiceName(v string) *VirtualServiceData

SetVirtualServiceName sets the VirtualServiceName field's value.

func (VirtualServiceData) String added in v1.17.13

func (s VirtualServiceData) String() string

String returns the string representation

type VirtualServiceProvider added in v1.17.13

type VirtualServiceProvider struct {

	// An object that represents a virtual node service provider.
	VirtualNode *VirtualNodeServiceProvider `locationName:"virtualNode" type:"structure"`

	// An object that represents a virtual node service provider.
	VirtualRouter *VirtualRouterServiceProvider `locationName:"virtualRouter" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the provider for a virtual service.

func (VirtualServiceProvider) GoString added in v1.17.13

func (s VirtualServiceProvider) GoString() string

GoString returns the string representation

func (*VirtualServiceProvider) SetVirtualNode added in v1.17.13

SetVirtualNode sets the VirtualNode field's value.

func (*VirtualServiceProvider) SetVirtualRouter added in v1.17.13

SetVirtualRouter sets the VirtualRouter field's value.

func (VirtualServiceProvider) String added in v1.17.13

func (s VirtualServiceProvider) String() string

String returns the string representation

func (*VirtualServiceProvider) Validate added in v1.17.13

func (s *VirtualServiceProvider) Validate() error

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

type VirtualServiceRef added in v1.17.13

type VirtualServiceRef struct {

	// Arn is a required field
	Arn *string `locationName:"arn" type:"string" required:"true"`

	// CreatedAt is a required field
	CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" required:"true"`

	// LastUpdatedAt is a required field
	LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp" required:"true"`

	// MeshName is a required field
	MeshName *string `locationName:"meshName" min:"1" type:"string" required:"true"`

	// MeshOwner is a required field
	MeshOwner *string `locationName:"meshOwner" min:"12" type:"string" required:"true"`

	// ResourceOwner is a required field
	ResourceOwner *string `locationName:"resourceOwner" min:"12" type:"string" required:"true"`

	// Version is a required field
	Version *int64 `locationName:"version" type:"long" required:"true"`

	// VirtualServiceName is a required field
	VirtualServiceName *string `locationName:"virtualServiceName" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a virtual service returned by a list operation.

func (VirtualServiceRef) GoString added in v1.17.13

func (s VirtualServiceRef) GoString() string

GoString returns the string representation

func (*VirtualServiceRef) SetArn added in v1.17.13

SetArn sets the Arn field's value.

func (*VirtualServiceRef) SetCreatedAt added in v1.31.2

func (s *VirtualServiceRef) SetCreatedAt(v time.Time) *VirtualServiceRef

SetCreatedAt sets the CreatedAt field's value.

func (*VirtualServiceRef) SetLastUpdatedAt added in v1.31.2

func (s *VirtualServiceRef) SetLastUpdatedAt(v time.Time) *VirtualServiceRef

SetLastUpdatedAt sets the LastUpdatedAt field's value.

func (*VirtualServiceRef) SetMeshName added in v1.17.13

func (s *VirtualServiceRef) SetMeshName(v string) *VirtualServiceRef

SetMeshName sets the MeshName field's value.

func (*VirtualServiceRef) SetMeshOwner added in v1.29.19

func (s *VirtualServiceRef) SetMeshOwner(v string) *VirtualServiceRef

SetMeshOwner sets the MeshOwner field's value.

func (*VirtualServiceRef) SetResourceOwner added in v1.29.19

func (s *VirtualServiceRef) SetResourceOwner(v string) *VirtualServiceRef

SetResourceOwner sets the ResourceOwner field's value.

func (*VirtualServiceRef) SetVersion added in v1.31.2

func (s *VirtualServiceRef) SetVersion(v int64) *VirtualServiceRef

SetVersion sets the Version field's value.

func (*VirtualServiceRef) SetVirtualServiceName added in v1.17.13

func (s *VirtualServiceRef) SetVirtualServiceName(v string) *VirtualServiceRef

SetVirtualServiceName sets the VirtualServiceName field's value.

func (VirtualServiceRef) String added in v1.17.13

func (s VirtualServiceRef) String() string

String returns the string representation

type VirtualServiceSpec added in v1.17.13

type VirtualServiceSpec struct {

	// An object that represents the provider for a virtual service.
	Provider *VirtualServiceProvider `locationName:"provider" type:"structure"`
	// contains filtered or unexported fields
}

An object that represents the specification of a virtual service.

func (VirtualServiceSpec) GoString added in v1.17.13

func (s VirtualServiceSpec) GoString() string

GoString returns the string representation

func (*VirtualServiceSpec) SetProvider added in v1.17.13

SetProvider sets the Provider field's value.

func (VirtualServiceSpec) String added in v1.17.13

func (s VirtualServiceSpec) String() string

String returns the string representation

func (*VirtualServiceSpec) Validate added in v1.17.13

func (s *VirtualServiceSpec) Validate() error

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

type VirtualServiceStatus added in v1.17.13

type VirtualServiceStatus struct {

	// Status is a required field
	Status *string `locationName:"status" type:"string" required:"true" enum:"VirtualServiceStatusCode"`
	// contains filtered or unexported fields
}

An object that represents the status of a virtual service.

func (VirtualServiceStatus) GoString added in v1.17.13

func (s VirtualServiceStatus) GoString() string

GoString returns the string representation

func (*VirtualServiceStatus) SetStatus added in v1.17.13

SetStatus sets the Status field's value.

func (VirtualServiceStatus) String added in v1.17.13

func (s VirtualServiceStatus) String() string

String returns the string representation

type WeightedTarget

type WeightedTarget struct {

	// VirtualNode is a required field
	VirtualNode *string `locationName:"virtualNode" min:"1" type:"string" required:"true"`

	// Weight is a required field
	Weight *int64 `locationName:"weight" type:"integer" required:"true"`
	// contains filtered or unexported fields
}

An object that represents a target and its relative weight. Traffic is distributed across targets according to their relative weight. For example, a weighted target with a relative weight of 50 receives five times as much traffic as one with a relative weight of 10. The total weight for all targets combined must be less than or equal to 100.

func (WeightedTarget) GoString

func (s WeightedTarget) GoString() string

GoString returns the string representation

func (*WeightedTarget) SetVirtualNode

func (s *WeightedTarget) SetVirtualNode(v string) *WeightedTarget

SetVirtualNode sets the VirtualNode field's value.

func (*WeightedTarget) SetWeight

func (s *WeightedTarget) SetWeight(v int64) *WeightedTarget

SetWeight sets the Weight field's value.

func (WeightedTarget) String

func (s WeightedTarget) String() string

String returns the string representation

func (*WeightedTarget) Validate

func (s *WeightedTarget) Validate() error

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

Directories

Path Synopsis
Package appmeshiface provides an interface to enable mocking the AWS App Mesh service client for testing your code.
Package appmeshiface provides an interface to enable mocking the AWS App Mesh service client for testing your code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL