File: types.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.30.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 662,428 kB
  • sloc: java: 16,875; makefile: 432; sh: 175
file content (31 lines) | stat: -rw-r--r-- 844 bytes parent folder | download | duplicates (3)
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] spec. These URIs provide the
	// different addresses and/or protocols that can be used to reach the TURN server.
	//
	// [I-D.petithuguenin-behave-turn-uris]: https://tools.ietf.org/html/draft-petithuguenin-behave-turn-uris-03
	Uris []string

	// A username to login to the ICE server.
	Username *string

	noSmithyDocumentSerde
}

type noSmithyDocumentSerde = smithydocument.NoSerde