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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
// A structure for the ICE server connection data.
type IceServer struct {
// A password to login to the ICE server.
Password *string
// The period of time, in seconds, during which the username and password are
// valid.
Ttl *int32
// An array of URIs, in the form specified in the
// I-D.petithuguenin-behave-turn-uris (https://tools.ietf.org/html/draft-petithuguenin-behave-turn-uris-03)
// spec. These URIs provide the different addresses and/or protocols that can be
// used to reach the TURN server.
Uris []string
// A username to login to the ICE server.
Username *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|