-
Notifications
You must be signed in to change notification settings - Fork 17
/
CfnGateway_GatewayNetworkProperty.go
32 lines (29 loc) · 1.34 KB
/
CfnGateway_GatewayNetworkProperty.go
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
package awsmediaconnect
// The network settings for a gateway.
//
// Example:
// // The code below shows an example of how to instantiate this type.
// // The values are placeholders you should change.
// import "github.com/aws/aws-cdk-go/awscdk"
//
// gatewayNetworkProperty := &GatewayNetworkProperty{
// CidrBlock: jsii.String("cidrBlock"),
// Name: jsii.String("name"),
// }
//
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-gateway-gatewaynetwork.html
//
type CfnGateway_GatewayNetworkProperty struct {
// A unique IP address range to use for this network.
//
// These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-gateway-gatewaynetwork.html#cfn-mediaconnect-gateway-gatewaynetwork-cidrblock
//
CidrBlock *string `field:"required" json:"cidrBlock" yaml:"cidrBlock"`
// The name of the network.
//
// This name is used to reference the network and must be unique among networks in this gateway.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-gateway-gatewaynetwork.html#cfn-mediaconnect-gateway-gatewaynetwork-name
//
Name *string `field:"required" json:"name" yaml:"name"`
}