File: types.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.17.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 384,244 kB
  • sloc: java: 13,538; makefile: 400; sh: 137
file content (66 lines) | stat: -rw-r--r-- 1,721 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

import (
	smithydocument "github.com/aws/smithy-go/document"
)

// A routing control, which is a simple on/off switch that you can use to route
// traffic to cells. When a routing control state is On, traffic flows to a cell.
// When the state is Off, traffic does not flow.
type RoutingControl struct {

	// The Amazon Resource Name (ARN) of the control panel where the routing control is
	// located.
	ControlPanelArn *string

	// The name of the control panel where the routing control is located.
	ControlPanelName *string

	// The Amazon Resource Name (ARN) of the routing control.
	RoutingControlArn *string

	// The name of the routing control.
	RoutingControlName *string

	// The current state of the routing control. When a routing control state is On,
	// traffic flows to a cell. When the state is Off, traffic does not flow.
	RoutingControlState RoutingControlState

	noSmithyDocumentSerde
}

// A routing control state entry.
type UpdateRoutingControlStateEntry struct {

	// The Amazon Resource Name (ARN) for a routing control state entry.
	//
	// This member is required.
	RoutingControlArn *string

	// The routing control state in a set of routing control state entries.
	//
	// This member is required.
	RoutingControlState RoutingControlState

	noSmithyDocumentSerde
}

// There was a validation error on the request.
type ValidationExceptionField struct {

	// Information about the validation exception.
	//
	// This member is required.
	Message *string

	// The field that had the validation exception.
	//
	// This member is required.
	Name *string

	noSmithyDocumentSerde
}

type noSmithyDocumentSerde = smithydocument.NoSerde