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 (32 lines) | stat: -rw-r--r-- 809 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
// 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