1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package types
4
5import (
6	smithydocument "github.com/aws/smithy-go/document"
7)
8
9// A routing control state.
10type UpdateRoutingControlStateEntry struct {
11
12	// The Amazon Resource Number (ARN) for the routing control state entry.
13	//
14	// This member is required.
15	RoutingControlArn *string
16
17	// The routing control state in a set of routing control state entries.
18	//
19	// This member is required.
20	RoutingControlState RoutingControlState
21
22	noSmithyDocumentSerde
23}
24
25// There was a validation error on the request.
26type ValidationExceptionField struct {
27
28	// Information about the validation exception.
29	//
30	// This member is required.
31	Message *string
32
33	// The field that had the validation exception.
34	//
35	// This member is required.
36	Name *string
37
38	noSmithyDocumentSerde
39}
40
41type noSmithyDocumentSerde = smithydocument.NoSerde
42