// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. // Package directconnect provides a client for AWS Direct Connect. package directconnect import ( "time" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/aws/request" ) const opAllocateConnectionOnInterconnect = "AllocateConnectionOnInterconnect" // AllocateConnectionOnInterconnectRequest generates a "aws/request.Request" representing the // client's request for the AllocateConnectionOnInterconnect operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the AllocateConnectionOnInterconnect method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the AllocateConnectionOnInterconnectRequest method. // req, resp := client.AllocateConnectionOnInterconnectRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) AllocateConnectionOnInterconnectRequest(input *AllocateConnectionOnInterconnectInput) (req *request.Request, output *Connection) { op := &request.Operation{ Name: opAllocateConnectionOnInterconnect, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &AllocateConnectionOnInterconnectInput{} } req = c.newRequest(op, input, output) output = &Connection{} req.Data = output return } // Creates a hosted connection on an interconnect. // // Allocates a VLAN number and a specified amount of bandwidth for use by a // hosted connection on the given interconnect. // // This is intended for use by AWS Direct Connect partners only. func (c *DirectConnect) AllocateConnectionOnInterconnect(input *AllocateConnectionOnInterconnectInput) (*Connection, error) { req, out := c.AllocateConnectionOnInterconnectRequest(input) err := req.Send() return out, err } const opAllocatePrivateVirtualInterface = "AllocatePrivateVirtualInterface" // AllocatePrivateVirtualInterfaceRequest generates a "aws/request.Request" representing the // client's request for the AllocatePrivateVirtualInterface operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the AllocatePrivateVirtualInterface method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the AllocatePrivateVirtualInterfaceRequest method. // req, resp := client.AllocatePrivateVirtualInterfaceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) AllocatePrivateVirtualInterfaceRequest(input *AllocatePrivateVirtualInterfaceInput) (req *request.Request, output *VirtualInterface) { op := &request.Operation{ Name: opAllocatePrivateVirtualInterface, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &AllocatePrivateVirtualInterfaceInput{} } req = c.newRequest(op, input, output) output = &VirtualInterface{} req.Data = output return } // Provisions a private virtual interface to be owned by a different customer. // // The owner of a connection calls this function to provision a private virtual // interface which will be owned by another AWS customer. // // Virtual interfaces created using this function must be confirmed by the // virtual interface owner by calling ConfirmPrivateVirtualInterface. Until // this step has been completed, the virtual interface will be in 'Confirming' // state, and will not be available for handling traffic. func (c *DirectConnect) AllocatePrivateVirtualInterface(input *AllocatePrivateVirtualInterfaceInput) (*VirtualInterface, error) { req, out := c.AllocatePrivateVirtualInterfaceRequest(input) err := req.Send() return out, err } const opAllocatePublicVirtualInterface = "AllocatePublicVirtualInterface" // AllocatePublicVirtualInterfaceRequest generates a "aws/request.Request" representing the // client's request for the AllocatePublicVirtualInterface operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the AllocatePublicVirtualInterface method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the AllocatePublicVirtualInterfaceRequest method. // req, resp := client.AllocatePublicVirtualInterfaceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) AllocatePublicVirtualInterfaceRequest(input *AllocatePublicVirtualInterfaceInput) (req *request.Request, output *VirtualInterface) { op := &request.Operation{ Name: opAllocatePublicVirtualInterface, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &AllocatePublicVirtualInterfaceInput{} } req = c.newRequest(op, input, output) output = &VirtualInterface{} req.Data = output return } // Provisions a public virtual interface to be owned by a different customer. // // The owner of a connection calls this function to provision a public virtual // interface which will be owned by another AWS customer. // // Virtual interfaces created using this function must be confirmed by the // virtual interface owner by calling ConfirmPublicVirtualInterface. Until this // step has been completed, the virtual interface will be in 'Confirming' state, // and will not be available for handling traffic. func (c *DirectConnect) AllocatePublicVirtualInterface(input *AllocatePublicVirtualInterfaceInput) (*VirtualInterface, error) { req, out := c.AllocatePublicVirtualInterfaceRequest(input) err := req.Send() return out, err } const opConfirmConnection = "ConfirmConnection" // ConfirmConnectionRequest generates a "aws/request.Request" representing the // client's request for the ConfirmConnection operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the ConfirmConnection method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the ConfirmConnectionRequest method. // req, resp := client.ConfirmConnectionRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) ConfirmConnectionRequest(input *ConfirmConnectionInput) (req *request.Request, output *ConfirmConnectionOutput) { op := &request.Operation{ Name: opConfirmConnection, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &ConfirmConnectionInput{} } req = c.newRequest(op, input, output) output = &ConfirmConnectionOutput{} req.Data = output return } // Confirm the creation of a hosted connection on an interconnect. // // Upon creation, the hosted connection is initially in the 'Ordering' state, // and will remain in this state until the owner calls ConfirmConnection to // confirm creation of the hosted connection. func (c *DirectConnect) ConfirmConnection(input *ConfirmConnectionInput) (*ConfirmConnectionOutput, error) { req, out := c.ConfirmConnectionRequest(input) err := req.Send() return out, err } const opConfirmPrivateVirtualInterface = "ConfirmPrivateVirtualInterface" // ConfirmPrivateVirtualInterfaceRequest generates a "aws/request.Request" representing the // client's request for the ConfirmPrivateVirtualInterface operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the ConfirmPrivateVirtualInterface method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the ConfirmPrivateVirtualInterfaceRequest method. // req, resp := client.ConfirmPrivateVirtualInterfaceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) ConfirmPrivateVirtualInterfaceRequest(input *ConfirmPrivateVirtualInterfaceInput) (req *request.Request, output *ConfirmPrivateVirtualInterfaceOutput) { op := &request.Operation{ Name: opConfirmPrivateVirtualInterface, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &ConfirmPrivateVirtualInterfaceInput{} } req = c.newRequest(op, input, output) output = &ConfirmPrivateVirtualInterfaceOutput{} req.Data = output return } // Accept ownership of a private virtual interface created by another customer. // // After the virtual interface owner calls this function, the virtual interface // will be created and attached to the given virtual private gateway, and will // be available for handling traffic. func (c *DirectConnect) ConfirmPrivateVirtualInterface(input *ConfirmPrivateVirtualInterfaceInput) (*ConfirmPrivateVirtualInterfaceOutput, error) { req, out := c.ConfirmPrivateVirtualInterfaceRequest(input) err := req.Send() return out, err } const opConfirmPublicVirtualInterface = "ConfirmPublicVirtualInterface" // ConfirmPublicVirtualInterfaceRequest generates a "aws/request.Request" representing the // client's request for the ConfirmPublicVirtualInterface operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the ConfirmPublicVirtualInterface method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the ConfirmPublicVirtualInterfaceRequest method. // req, resp := client.ConfirmPublicVirtualInterfaceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) ConfirmPublicVirtualInterfaceRequest(input *ConfirmPublicVirtualInterfaceInput) (req *request.Request, output *ConfirmPublicVirtualInterfaceOutput) { op := &request.Operation{ Name: opConfirmPublicVirtualInterface, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &ConfirmPublicVirtualInterfaceInput{} } req = c.newRequest(op, input, output) output = &ConfirmPublicVirtualInterfaceOutput{} req.Data = output return } // Accept ownership of a public virtual interface created by another customer. // // After the virtual interface owner calls this function, the specified virtual // interface will be created and made available for handling traffic. func (c *DirectConnect) ConfirmPublicVirtualInterface(input *ConfirmPublicVirtualInterfaceInput) (*ConfirmPublicVirtualInterfaceOutput, error) { req, out := c.ConfirmPublicVirtualInterfaceRequest(input) err := req.Send() return out, err } const opCreateConnection = "CreateConnection" // CreateConnectionRequest generates a "aws/request.Request" representing the // client's request for the CreateConnection operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the CreateConnection method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the CreateConnectionRequest method. // req, resp := client.CreateConnectionRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) CreateConnectionRequest(input *CreateConnectionInput) (req *request.Request, output *Connection) { op := &request.Operation{ Name: opCreateConnection, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateConnectionInput{} } req = c.newRequest(op, input, output) output = &Connection{} req.Data = output return } // Creates a new connection between the customer network and a specific AWS // Direct Connect location. // // A connection links your internal network to an AWS Direct Connect location // over a standard 1 gigabit or 10 gigabit Ethernet fiber-optic cable. One end // of the cable is connected to your router, the other to an AWS Direct Connect // router. An AWS Direct Connect location provides access to Amazon Web Services // in the region it is associated with. You can establish connections with AWS // Direct Connect locations in multiple regions, but a connection in one region // does not provide connectivity to other regions. func (c *DirectConnect) CreateConnection(input *CreateConnectionInput) (*Connection, error) { req, out := c.CreateConnectionRequest(input) err := req.Send() return out, err } const opCreateInterconnect = "CreateInterconnect" // CreateInterconnectRequest generates a "aws/request.Request" representing the // client's request for the CreateInterconnect operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the CreateInterconnect method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the CreateInterconnectRequest method. // req, resp := client.CreateInterconnectRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) CreateInterconnectRequest(input *CreateInterconnectInput) (req *request.Request, output *Interconnect) { op := &request.Operation{ Name: opCreateInterconnect, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateInterconnectInput{} } req = c.newRequest(op, input, output) output = &Interconnect{} req.Data = output return } // Creates a new interconnect between a AWS Direct Connect partner's network // and a specific AWS Direct Connect location. // // An interconnect is a connection which is capable of hosting other connections. // The AWS Direct Connect partner can use an interconnect to provide sub-1Gbps // AWS Direct Connect service to tier 2 customers who do not have their own // connections. Like a standard connection, an interconnect links the AWS Direct // Connect partner's network to an AWS Direct Connect location over a standard // 1 Gbps or 10 Gbps Ethernet fiber-optic cable. One end is connected to the // partner's router, the other to an AWS Direct Connect router. // // For each end customer, the AWS Direct Connect partner provisions a connection // on their interconnect by calling AllocateConnectionOnInterconnect. The end // customer can then connect to AWS resources by creating a virtual interface // on their connection, using the VLAN assigned to them by the AWS Direct Connect // partner. // // This is intended for use by AWS Direct Connect partners only. func (c *DirectConnect) CreateInterconnect(input *CreateInterconnectInput) (*Interconnect, error) { req, out := c.CreateInterconnectRequest(input) err := req.Send() return out, err } const opCreatePrivateVirtualInterface = "CreatePrivateVirtualInterface" // CreatePrivateVirtualInterfaceRequest generates a "aws/request.Request" representing the // client's request for the CreatePrivateVirtualInterface operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the CreatePrivateVirtualInterface method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the CreatePrivateVirtualInterfaceRequest method. // req, resp := client.CreatePrivateVirtualInterfaceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) CreatePrivateVirtualInterfaceRequest(input *CreatePrivateVirtualInterfaceInput) (req *request.Request, output *VirtualInterface) { op := &request.Operation{ Name: opCreatePrivateVirtualInterface, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreatePrivateVirtualInterfaceInput{} } req = c.newRequest(op, input, output) output = &VirtualInterface{} req.Data = output return } // Creates a new private virtual interface. A virtual interface is the VLAN // that transports AWS Direct Connect traffic. A private virtual interface supports // sending traffic to a single virtual private cloud (VPC). func (c *DirectConnect) CreatePrivateVirtualInterface(input *CreatePrivateVirtualInterfaceInput) (*VirtualInterface, error) { req, out := c.CreatePrivateVirtualInterfaceRequest(input) err := req.Send() return out, err } const opCreatePublicVirtualInterface = "CreatePublicVirtualInterface" // CreatePublicVirtualInterfaceRequest generates a "aws/request.Request" representing the // client's request for the CreatePublicVirtualInterface operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the CreatePublicVirtualInterface method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the CreatePublicVirtualInterfaceRequest method. // req, resp := client.CreatePublicVirtualInterfaceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) CreatePublicVirtualInterfaceRequest(input *CreatePublicVirtualInterfaceInput) (req *request.Request, output *VirtualInterface) { op := &request.Operation{ Name: opCreatePublicVirtualInterface, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreatePublicVirtualInterfaceInput{} } req = c.newRequest(op, input, output) output = &VirtualInterface{} req.Data = output return } // Creates a new public virtual interface. A virtual interface is the VLAN that // transports AWS Direct Connect traffic. A public virtual interface supports // sending traffic to public services of AWS such as Amazon Simple Storage Service // (Amazon S3). func (c *DirectConnect) CreatePublicVirtualInterface(input *CreatePublicVirtualInterfaceInput) (*VirtualInterface, error) { req, out := c.CreatePublicVirtualInterfaceRequest(input) err := req.Send() return out, err } const opDeleteConnection = "DeleteConnection" // DeleteConnectionRequest generates a "aws/request.Request" representing the // client's request for the DeleteConnection operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DeleteConnection method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DeleteConnectionRequest method. // req, resp := client.DeleteConnectionRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DeleteConnectionRequest(input *DeleteConnectionInput) (req *request.Request, output *Connection) { op := &request.Operation{ Name: opDeleteConnection, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteConnectionInput{} } req = c.newRequest(op, input, output) output = &Connection{} req.Data = output return } // Deletes the connection. // // Deleting a connection only stops the AWS Direct Connect port hour and data // transfer charges. You need to cancel separately with the providers any services // or charges for cross-connects or network circuits that connect you to the // AWS Direct Connect location. func (c *DirectConnect) DeleteConnection(input *DeleteConnectionInput) (*Connection, error) { req, out := c.DeleteConnectionRequest(input) err := req.Send() return out, err } const opDeleteInterconnect = "DeleteInterconnect" // DeleteInterconnectRequest generates a "aws/request.Request" representing the // client's request for the DeleteInterconnect operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DeleteInterconnect method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DeleteInterconnectRequest method. // req, resp := client.DeleteInterconnectRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DeleteInterconnectRequest(input *DeleteInterconnectInput) (req *request.Request, output *DeleteInterconnectOutput) { op := &request.Operation{ Name: opDeleteInterconnect, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteInterconnectInput{} } req = c.newRequest(op, input, output) output = &DeleteInterconnectOutput{} req.Data = output return } // Deletes the specified interconnect. // // This is intended for use by AWS Direct Connect partners only. func (c *DirectConnect) DeleteInterconnect(input *DeleteInterconnectInput) (*DeleteInterconnectOutput, error) { req, out := c.DeleteInterconnectRequest(input) err := req.Send() return out, err } const opDeleteVirtualInterface = "DeleteVirtualInterface" // DeleteVirtualInterfaceRequest generates a "aws/request.Request" representing the // client's request for the DeleteVirtualInterface operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DeleteVirtualInterface method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DeleteVirtualInterfaceRequest method. // req, resp := client.DeleteVirtualInterfaceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DeleteVirtualInterfaceRequest(input *DeleteVirtualInterfaceInput) (req *request.Request, output *DeleteVirtualInterfaceOutput) { op := &request.Operation{ Name: opDeleteVirtualInterface, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteVirtualInterfaceInput{} } req = c.newRequest(op, input, output) output = &DeleteVirtualInterfaceOutput{} req.Data = output return } // Deletes a virtual interface. func (c *DirectConnect) DeleteVirtualInterface(input *DeleteVirtualInterfaceInput) (*DeleteVirtualInterfaceOutput, error) { req, out := c.DeleteVirtualInterfaceRequest(input) err := req.Send() return out, err } const opDescribeConnectionLoa = "DescribeConnectionLoa" // DescribeConnectionLoaRequest generates a "aws/request.Request" representing the // client's request for the DescribeConnectionLoa operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DescribeConnectionLoa method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DescribeConnectionLoaRequest method. // req, resp := client.DescribeConnectionLoaRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DescribeConnectionLoaRequest(input *DescribeConnectionLoaInput) (req *request.Request, output *DescribeConnectionLoaOutput) { op := &request.Operation{ Name: opDescribeConnectionLoa, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeConnectionLoaInput{} } req = c.newRequest(op, input, output) output = &DescribeConnectionLoaOutput{} req.Data = output return } // Returns the LOA-CFA for a Connection. // // The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is // a document that your APN partner or service provider uses when establishing // your cross connect to AWS at the colocation facility. For more information, // see Requesting Cross Connects at AWS Direct Connect Locations (http://docs.aws.amazon.com/directconnect/latest/UserGuide/Colocation.html) // in the AWS Direct Connect user guide. func (c *DirectConnect) DescribeConnectionLoa(input *DescribeConnectionLoaInput) (*DescribeConnectionLoaOutput, error) { req, out := c.DescribeConnectionLoaRequest(input) err := req.Send() return out, err } const opDescribeConnections = "DescribeConnections" // DescribeConnectionsRequest generates a "aws/request.Request" representing the // client's request for the DescribeConnections operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DescribeConnections method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DescribeConnectionsRequest method. // req, resp := client.DescribeConnectionsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DescribeConnectionsRequest(input *DescribeConnectionsInput) (req *request.Request, output *Connections) { op := &request.Operation{ Name: opDescribeConnections, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeConnectionsInput{} } req = c.newRequest(op, input, output) output = &Connections{} req.Data = output return } // Displays all connections in this region. // // If a connection ID is provided, the call returns only that particular connection. func (c *DirectConnect) DescribeConnections(input *DescribeConnectionsInput) (*Connections, error) { req, out := c.DescribeConnectionsRequest(input) err := req.Send() return out, err } const opDescribeConnectionsOnInterconnect = "DescribeConnectionsOnInterconnect" // DescribeConnectionsOnInterconnectRequest generates a "aws/request.Request" representing the // client's request for the DescribeConnectionsOnInterconnect operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DescribeConnectionsOnInterconnect method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DescribeConnectionsOnInterconnectRequest method. // req, resp := client.DescribeConnectionsOnInterconnectRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DescribeConnectionsOnInterconnectRequest(input *DescribeConnectionsOnInterconnectInput) (req *request.Request, output *Connections) { op := &request.Operation{ Name: opDescribeConnectionsOnInterconnect, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeConnectionsOnInterconnectInput{} } req = c.newRequest(op, input, output) output = &Connections{} req.Data = output return } // Return a list of connections that have been provisioned on the given interconnect. // // This is intended for use by AWS Direct Connect partners only. func (c *DirectConnect) DescribeConnectionsOnInterconnect(input *DescribeConnectionsOnInterconnectInput) (*Connections, error) { req, out := c.DescribeConnectionsOnInterconnectRequest(input) err := req.Send() return out, err } const opDescribeInterconnectLoa = "DescribeInterconnectLoa" // DescribeInterconnectLoaRequest generates a "aws/request.Request" representing the // client's request for the DescribeInterconnectLoa operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DescribeInterconnectLoa method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DescribeInterconnectLoaRequest method. // req, resp := client.DescribeInterconnectLoaRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DescribeInterconnectLoaRequest(input *DescribeInterconnectLoaInput) (req *request.Request, output *DescribeInterconnectLoaOutput) { op := &request.Operation{ Name: opDescribeInterconnectLoa, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeInterconnectLoaInput{} } req = c.newRequest(op, input, output) output = &DescribeInterconnectLoaOutput{} req.Data = output return } // Returns the LOA-CFA for an Interconnect. // // The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is // a document that is used when establishing your cross connect to AWS at the // colocation facility. For more information, see Requesting Cross Connects // at AWS Direct Connect Locations (http://docs.aws.amazon.com/directconnect/latest/UserGuide/Colocation.html) // in the AWS Direct Connect user guide. func (c *DirectConnect) DescribeInterconnectLoa(input *DescribeInterconnectLoaInput) (*DescribeInterconnectLoaOutput, error) { req, out := c.DescribeInterconnectLoaRequest(input) err := req.Send() return out, err } const opDescribeInterconnects = "DescribeInterconnects" // DescribeInterconnectsRequest generates a "aws/request.Request" representing the // client's request for the DescribeInterconnects operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DescribeInterconnects method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DescribeInterconnectsRequest method. // req, resp := client.DescribeInterconnectsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DescribeInterconnectsRequest(input *DescribeInterconnectsInput) (req *request.Request, output *DescribeInterconnectsOutput) { op := &request.Operation{ Name: opDescribeInterconnects, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeInterconnectsInput{} } req = c.newRequest(op, input, output) output = &DescribeInterconnectsOutput{} req.Data = output return } // Returns a list of interconnects owned by the AWS account. // // If an interconnect ID is provided, it will only return this particular interconnect. func (c *DirectConnect) DescribeInterconnects(input *DescribeInterconnectsInput) (*DescribeInterconnectsOutput, error) { req, out := c.DescribeInterconnectsRequest(input) err := req.Send() return out, err } const opDescribeLocations = "DescribeLocations" // DescribeLocationsRequest generates a "aws/request.Request" representing the // client's request for the DescribeLocations operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DescribeLocations method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DescribeLocationsRequest method. // req, resp := client.DescribeLocationsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DescribeLocationsRequest(input *DescribeLocationsInput) (req *request.Request, output *DescribeLocationsOutput) { op := &request.Operation{ Name: opDescribeLocations, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeLocationsInput{} } req = c.newRequest(op, input, output) output = &DescribeLocationsOutput{} req.Data = output return } // Returns the list of AWS Direct Connect locations in the current AWS region. // These are the locations that may be selected when calling CreateConnection // or CreateInterconnect. func (c *DirectConnect) DescribeLocations(input *DescribeLocationsInput) (*DescribeLocationsOutput, error) { req, out := c.DescribeLocationsRequest(input) err := req.Send() return out, err } const opDescribeVirtualGateways = "DescribeVirtualGateways" // DescribeVirtualGatewaysRequest generates a "aws/request.Request" representing the // client's request for the DescribeVirtualGateways operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DescribeVirtualGateways method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DescribeVirtualGatewaysRequest method. // req, resp := client.DescribeVirtualGatewaysRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DescribeVirtualGatewaysRequest(input *DescribeVirtualGatewaysInput) (req *request.Request, output *DescribeVirtualGatewaysOutput) { op := &request.Operation{ Name: opDescribeVirtualGateways, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeVirtualGatewaysInput{} } req = c.newRequest(op, input, output) output = &DescribeVirtualGatewaysOutput{} req.Data = output return } // Returns a list of virtual private gateways owned by the AWS account. // // You can create one or more AWS Direct Connect private virtual interfaces // linking to a virtual private gateway. A virtual private gateway can be managed // via Amazon Virtual Private Cloud (VPC) console or the EC2 CreateVpnGateway // (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html) // action. func (c *DirectConnect) DescribeVirtualGateways(input *DescribeVirtualGatewaysInput) (*DescribeVirtualGatewaysOutput, error) { req, out := c.DescribeVirtualGatewaysRequest(input) err := req.Send() return out, err } const opDescribeVirtualInterfaces = "DescribeVirtualInterfaces" // DescribeVirtualInterfacesRequest generates a "aws/request.Request" representing the // client's request for the DescribeVirtualInterfaces operation. The "output" return // value can be used to capture response data after the request's "Send" method // is called. // // Creating a request object using this method should be used when you want to inject // custom logic into the request's lifecycle using a custom handler, or if you want to // access properties on the request object before or after sending the request. If // you just want the service response, call the DescribeVirtualInterfaces method directly // instead. // // Note: You must call the "Send" method on the returned request object in order // to execute the request. // // // Example sending a request using the DescribeVirtualInterfacesRequest method. // req, resp := client.DescribeVirtualInterfacesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // func (c *DirectConnect) DescribeVirtualInterfacesRequest(input *DescribeVirtualInterfacesInput) (req *request.Request, output *DescribeVirtualInterfacesOutput) { op := &request.Operation{ Name: opDescribeVirtualInterfaces, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeVirtualInterfacesInput{} } req = c.newRequest(op, input, output) output = &DescribeVirtualInterfacesOutput{} req.Data = output return } // Displays all virtual interfaces for an AWS account. Virtual interfaces deleted // fewer than 15 minutes before DescribeVirtualInterfaces is called are also // returned. If a connection ID is included then only virtual interfaces associated // with this connection will be returned. If a virtual interface ID is included // then only a single virtual interface will be returned. // // A virtual interface (VLAN) transmits the traffic between the AWS Direct // Connect location and the customer. // // If a connection ID is provided, only virtual interfaces provisioned on the // specified connection will be returned. If a virtual interface ID is provided, // only this particular virtual interface will be returned. func (c *DirectConnect) DescribeVirtualInterfaces(input *DescribeVirtualInterfacesInput) (*DescribeVirtualInterfacesOutput, error) { req, out := c.DescribeVirtualInterfacesRequest(input) err := req.Send() return out, err } // Container for the parameters to the AllocateConnectionOnInterconnect operation. type AllocateConnectionOnInterconnectInput struct { _ struct{} `type:"structure"` // Bandwidth of the connection. // // Example: "500Mbps" // // Default: None // // Values: 50M, 100M, 200M, 300M, 400M, or 500M Bandwidth *string `locationName:"bandwidth" type:"string" required:"true"` // Name of the provisioned connection. // // Example: "500M Connection to AWS" // // Default: None ConnectionName *string `locationName:"connectionName" type:"string" required:"true"` // ID of the interconnect on which the connection will be provisioned. // // Example: dxcon-456abc78 // // Default: None InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"` // Numeric account Id of the customer for whom the connection will be provisioned. // // Example: 123443215678 // // Default: None OwnerAccount *string `locationName:"ownerAccount" type:"string" required:"true"` // The dedicated VLAN provisioned to the connection. // // Example: 101 // // Default: None Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` } // String returns the string representation func (s AllocateConnectionOnInterconnectInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s AllocateConnectionOnInterconnectInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *AllocateConnectionOnInterconnectInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "AllocateConnectionOnInterconnectInput"} if s.Bandwidth == nil { invalidParams.Add(request.NewErrParamRequired("Bandwidth")) } if s.ConnectionName == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionName")) } if s.InterconnectId == nil { invalidParams.Add(request.NewErrParamRequired("InterconnectId")) } if s.OwnerAccount == nil { invalidParams.Add(request.NewErrParamRequired("OwnerAccount")) } if s.Vlan == nil { invalidParams.Add(request.NewErrParamRequired("Vlan")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the AllocatePrivateVirtualInterface operation. type AllocatePrivateVirtualInterfaceInput struct { _ struct{} `type:"structure"` // The connection ID on which the private virtual interface is provisioned. // // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` // Detailed information for the private virtual interface to be provisioned. // // Default: None NewPrivateVirtualInterfaceAllocation *NewPrivateVirtualInterfaceAllocation `locationName:"newPrivateVirtualInterfaceAllocation" type:"structure" required:"true"` // The AWS account that will own the new private virtual interface. // // Default: None OwnerAccount *string `locationName:"ownerAccount" type:"string" required:"true"` } // String returns the string representation func (s AllocatePrivateVirtualInterfaceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s AllocatePrivateVirtualInterfaceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *AllocatePrivateVirtualInterfaceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "AllocatePrivateVirtualInterfaceInput"} if s.ConnectionId == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionId")) } if s.NewPrivateVirtualInterfaceAllocation == nil { invalidParams.Add(request.NewErrParamRequired("NewPrivateVirtualInterfaceAllocation")) } if s.OwnerAccount == nil { invalidParams.Add(request.NewErrParamRequired("OwnerAccount")) } if s.NewPrivateVirtualInterfaceAllocation != nil { if err := s.NewPrivateVirtualInterfaceAllocation.Validate(); err != nil { invalidParams.AddNested("NewPrivateVirtualInterfaceAllocation", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the AllocatePublicVirtualInterface operation. type AllocatePublicVirtualInterfaceInput struct { _ struct{} `type:"structure"` // The connection ID on which the public virtual interface is provisioned. // // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` // Detailed information for the public virtual interface to be provisioned. // // Default: None NewPublicVirtualInterfaceAllocation *NewPublicVirtualInterfaceAllocation `locationName:"newPublicVirtualInterfaceAllocation" type:"structure" required:"true"` // The AWS account that will own the new public virtual interface. // // Default: None OwnerAccount *string `locationName:"ownerAccount" type:"string" required:"true"` } // String returns the string representation func (s AllocatePublicVirtualInterfaceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s AllocatePublicVirtualInterfaceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *AllocatePublicVirtualInterfaceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "AllocatePublicVirtualInterfaceInput"} if s.ConnectionId == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionId")) } if s.NewPublicVirtualInterfaceAllocation == nil { invalidParams.Add(request.NewErrParamRequired("NewPublicVirtualInterfaceAllocation")) } if s.OwnerAccount == nil { invalidParams.Add(request.NewErrParamRequired("OwnerAccount")) } if s.NewPublicVirtualInterfaceAllocation != nil { if err := s.NewPublicVirtualInterfaceAllocation.Validate(); err != nil { invalidParams.AddNested("NewPublicVirtualInterfaceAllocation", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the ConfirmConnection operation. type ConfirmConnectionInput struct { _ struct{} `type:"structure"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` } // String returns the string representation func (s ConfirmConnectionInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ConfirmConnectionInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ConfirmConnectionInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ConfirmConnectionInput"} if s.ConnectionId == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // The response received when ConfirmConnection is called. type ConfirmConnectionOutput struct { _ struct{} `type:"structure"` // State of the connection. // // Ordering: The initial state of a hosted connection provisioned on an // interconnect. The connection stays in the ordering state until the owner // of the hosted connection confirms or declines the connection order. // // Requested: The initial state of a standard connection. The connection // stays in the requested state until the Letter of Authorization (LOA) is sent // to the customer. // // Pending: The connection has been approved, and is being initialized. // // Available: The network link is up, and the connection is ready for use. // // Down: The network link is down. // // Deleting: The connection is in the process of being deleted. // // Deleted: The connection has been deleted. // // Rejected: A hosted connection in the 'Ordering' state will enter the // 'Rejected' state if it is deleted by the end customer. ConnectionState *string `locationName:"connectionState" type:"string" enum:"ConnectionState"` } // String returns the string representation func (s ConfirmConnectionOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ConfirmConnectionOutput) GoString() string { return s.String() } // Container for the parameters to the ConfirmPrivateVirtualInterface operation. type ConfirmPrivateVirtualInterfaceInput struct { _ struct{} `type:"structure"` // ID of the virtual private gateway that will be attached to the virtual interface. // // A virtual private gateway can be managed via the Amazon Virtual Private // Cloud (VPC) console or the EC2 CreateVpnGateway (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html) // action. // // Default: None VirtualGatewayId *string `locationName:"virtualGatewayId" type:"string" required:"true"` // ID of the virtual interface. // // Example: dxvif-123dfg56 // // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"` } // String returns the string representation func (s ConfirmPrivateVirtualInterfaceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ConfirmPrivateVirtualInterfaceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ConfirmPrivateVirtualInterfaceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ConfirmPrivateVirtualInterfaceInput"} if s.VirtualGatewayId == nil { invalidParams.Add(request.NewErrParamRequired("VirtualGatewayId")) } if s.VirtualInterfaceId == nil { invalidParams.Add(request.NewErrParamRequired("VirtualInterfaceId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // The response received when ConfirmPrivateVirtualInterface is called. type ConfirmPrivateVirtualInterfaceOutput struct { _ struct{} `type:"structure"` // State of the virtual interface. // // Confirming: The creation of the virtual interface is pending confirmation // from the virtual interface owner. If the owner of the virtual interface is // different from the owner of the connection on which it is provisioned, then // the virtual interface will remain in this state until it is confirmed by // the virtual interface owner. // // Verifying: This state only applies to public virtual interfaces. Each // public virtual interface needs validation before the virtual interface can // be created. // // Pending: A virtual interface is in this state from the time that it is // created until the virtual interface is ready to forward traffic. // // Available: A virtual interface that is able to forward traffic. // // Down: A virtual interface that is BGP down. // // Deleting: A virtual interface is in this state immediately after calling // DeleteVirtualInterface until it can no longer forward traffic. // // Deleted: A virtual interface that cannot forward traffic. // // Rejected: The virtual interface owner has declined creation of the virtual // interface. If a virtual interface in the 'Confirming' state is deleted by // the virtual interface owner, the virtual interface will enter the 'Rejected' // state. VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"` } // String returns the string representation func (s ConfirmPrivateVirtualInterfaceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ConfirmPrivateVirtualInterfaceOutput) GoString() string { return s.String() } // Container for the parameters to the ConfirmPublicVirtualInterface operation. type ConfirmPublicVirtualInterfaceInput struct { _ struct{} `type:"structure"` // ID of the virtual interface. // // Example: dxvif-123dfg56 // // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"` } // String returns the string representation func (s ConfirmPublicVirtualInterfaceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ConfirmPublicVirtualInterfaceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ConfirmPublicVirtualInterfaceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ConfirmPublicVirtualInterfaceInput"} if s.VirtualInterfaceId == nil { invalidParams.Add(request.NewErrParamRequired("VirtualInterfaceId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // The response received when ConfirmPublicVirtualInterface is called. type ConfirmPublicVirtualInterfaceOutput struct { _ struct{} `type:"structure"` // State of the virtual interface. // // Confirming: The creation of the virtual interface is pending confirmation // from the virtual interface owner. If the owner of the virtual interface is // different from the owner of the connection on which it is provisioned, then // the virtual interface will remain in this state until it is confirmed by // the virtual interface owner. // // Verifying: This state only applies to public virtual interfaces. Each // public virtual interface needs validation before the virtual interface can // be created. // // Pending: A virtual interface is in this state from the time that it is // created until the virtual interface is ready to forward traffic. // // Available: A virtual interface that is able to forward traffic. // // Down: A virtual interface that is BGP down. // // Deleting: A virtual interface is in this state immediately after calling // DeleteVirtualInterface until it can no longer forward traffic. // // Deleted: A virtual interface that cannot forward traffic. // // Rejected: The virtual interface owner has declined creation of the virtual // interface. If a virtual interface in the 'Confirming' state is deleted by // the virtual interface owner, the virtual interface will enter the 'Rejected' // state. VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"` } // String returns the string representation func (s ConfirmPublicVirtualInterfaceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ConfirmPublicVirtualInterfaceOutput) GoString() string { return s.String() } // A connection represents the physical network connection between the AWS Direct // Connect location and the customer. type Connection struct { _ struct{} `type:"structure"` // Bandwidth of the connection. // // Example: 1Gbps (for regular connections), or 500Mbps (for hosted connections) // // Default: None Bandwidth *string `locationName:"bandwidth" type:"string"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string"` // The name of the connection. // // Example: "My Connection to AWS" // // Default: None ConnectionName *string `locationName:"connectionName" type:"string"` // State of the connection. // // Ordering: The initial state of a hosted connection provisioned on an // interconnect. The connection stays in the ordering state until the owner // of the hosted connection confirms or declines the connection order. // // Requested: The initial state of a standard connection. The connection // stays in the requested state until the Letter of Authorization (LOA) is sent // to the customer. // // Pending: The connection has been approved, and is being initialized. // // Available: The network link is up, and the connection is ready for use. // // Down: The network link is down. // // Deleting: The connection is in the process of being deleted. // // Deleted: The connection has been deleted. // // Rejected: A hosted connection in the 'Ordering' state will enter the // 'Rejected' state if it is deleted by the end customer. ConnectionState *string `locationName:"connectionState" type:"string" enum:"ConnectionState"` // The time of the most recent call to DescribeConnectionLoa for this Connection. LoaIssueTime *time.Time `locationName:"loaIssueTime" type:"timestamp" timestampFormat:"unix"` // Where the connection is located. // // Example: EqSV5 // // Default: None Location *string `locationName:"location" type:"string"` // The AWS account that will own the new connection. OwnerAccount *string `locationName:"ownerAccount" type:"string"` // The name of the AWS Direct Connect service provider associated with the connection. PartnerName *string `locationName:"partnerName" type:"string"` // The AWS region where the connection is located. // // Example: us-east-1 // // Default: None Region *string `locationName:"region" type:"string"` // The VLAN ID. // // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer"` } // String returns the string representation func (s Connection) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s Connection) GoString() string { return s.String() } // A structure containing a list of connections. type Connections struct { _ struct{} `type:"structure"` // A list of connections. Connections []*Connection `locationName:"connections" type:"list"` } // String returns the string representation func (s Connections) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s Connections) GoString() string { return s.String() } // Container for the parameters to the CreateConnection operation. type CreateConnectionInput struct { _ struct{} `type:"structure"` // Bandwidth of the connection. // // Example: 1Gbps // // Default: None Bandwidth *string `locationName:"bandwidth" type:"string" required:"true"` // The name of the connection. // // Example: "My Connection to AWS" // // Default: None ConnectionName *string `locationName:"connectionName" type:"string" required:"true"` // Where the connection is located. // // Example: EqSV5 // // Default: None Location *string `locationName:"location" type:"string" required:"true"` } // String returns the string representation func (s CreateConnectionInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s CreateConnectionInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateConnectionInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateConnectionInput"} if s.Bandwidth == nil { invalidParams.Add(request.NewErrParamRequired("Bandwidth")) } if s.ConnectionName == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionName")) } if s.Location == nil { invalidParams.Add(request.NewErrParamRequired("Location")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the CreateInterconnect operation. type CreateInterconnectInput struct { _ struct{} `type:"structure"` // The port bandwidth // // Example: 1Gbps // // Default: None // // Available values: 1Gbps,10Gbps Bandwidth *string `locationName:"bandwidth" type:"string" required:"true"` // The name of the interconnect. // // Example: "1G Interconnect to AWS" // // Default: None InterconnectName *string `locationName:"interconnectName" type:"string" required:"true"` // Where the interconnect is located // // Example: EqSV5 // // Default: None Location *string `locationName:"location" type:"string" required:"true"` } // String returns the string representation func (s CreateInterconnectInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s CreateInterconnectInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateInterconnectInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateInterconnectInput"} if s.Bandwidth == nil { invalidParams.Add(request.NewErrParamRequired("Bandwidth")) } if s.InterconnectName == nil { invalidParams.Add(request.NewErrParamRequired("InterconnectName")) } if s.Location == nil { invalidParams.Add(request.NewErrParamRequired("Location")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the CreatePrivateVirtualInterface operation. type CreatePrivateVirtualInterfaceInput struct { _ struct{} `type:"structure"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` // Detailed information for the private virtual interface to be created. // // Default: None NewPrivateVirtualInterface *NewPrivateVirtualInterface `locationName:"newPrivateVirtualInterface" type:"structure" required:"true"` } // String returns the string representation func (s CreatePrivateVirtualInterfaceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s CreatePrivateVirtualInterfaceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreatePrivateVirtualInterfaceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreatePrivateVirtualInterfaceInput"} if s.ConnectionId == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionId")) } if s.NewPrivateVirtualInterface == nil { invalidParams.Add(request.NewErrParamRequired("NewPrivateVirtualInterface")) } if s.NewPrivateVirtualInterface != nil { if err := s.NewPrivateVirtualInterface.Validate(); err != nil { invalidParams.AddNested("NewPrivateVirtualInterface", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the CreatePublicVirtualInterface operation. type CreatePublicVirtualInterfaceInput struct { _ struct{} `type:"structure"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` // Detailed information for the public virtual interface to be created. // // Default: None NewPublicVirtualInterface *NewPublicVirtualInterface `locationName:"newPublicVirtualInterface" type:"structure" required:"true"` } // String returns the string representation func (s CreatePublicVirtualInterfaceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s CreatePublicVirtualInterfaceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreatePublicVirtualInterfaceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreatePublicVirtualInterfaceInput"} if s.ConnectionId == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionId")) } if s.NewPublicVirtualInterface == nil { invalidParams.Add(request.NewErrParamRequired("NewPublicVirtualInterface")) } if s.NewPublicVirtualInterface != nil { if err := s.NewPublicVirtualInterface.Validate(); err != nil { invalidParams.AddNested("NewPublicVirtualInterface", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the DeleteConnection operation. type DeleteConnectionInput struct { _ struct{} `type:"structure"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` } // String returns the string representation func (s DeleteConnectionInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DeleteConnectionInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteConnectionInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteConnectionInput"} if s.ConnectionId == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the DeleteInterconnect operation. type DeleteInterconnectInput struct { _ struct{} `type:"structure"` // The ID of the interconnect. // // Example: dxcon-abc123 InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"` } // String returns the string representation func (s DeleteInterconnectInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DeleteInterconnectInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteInterconnectInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteInterconnectInput"} if s.InterconnectId == nil { invalidParams.Add(request.NewErrParamRequired("InterconnectId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // The response received when DeleteInterconnect is called. type DeleteInterconnectOutput struct { _ struct{} `type:"structure"` // State of the interconnect. // // Requested: The initial state of an interconnect. The interconnect stays // in the requested state until the Letter of Authorization (LOA) is sent to // the customer. // // Pending>: The interconnect has been approved, and is being initialized. // // Available: The network link is up, and the interconnect is ready for // use. // // Down: The network link is down. // // Deleting: The interconnect is in the process of being deleted. // // Deleted: The interconnect has been deleted. InterconnectState *string `locationName:"interconnectState" type:"string" enum:"InterconnectState"` } // String returns the string representation func (s DeleteInterconnectOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DeleteInterconnectOutput) GoString() string { return s.String() } // Container for the parameters to the DeleteVirtualInterface operation. type DeleteVirtualInterfaceInput struct { _ struct{} `type:"structure"` // ID of the virtual interface. // // Example: dxvif-123dfg56 // // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"` } // String returns the string representation func (s DeleteVirtualInterfaceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DeleteVirtualInterfaceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteVirtualInterfaceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteVirtualInterfaceInput"} if s.VirtualInterfaceId == nil { invalidParams.Add(request.NewErrParamRequired("VirtualInterfaceId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // The response received when DeleteVirtualInterface is called. type DeleteVirtualInterfaceOutput struct { _ struct{} `type:"structure"` // State of the virtual interface. // // Confirming: The creation of the virtual interface is pending confirmation // from the virtual interface owner. If the owner of the virtual interface is // different from the owner of the connection on which it is provisioned, then // the virtual interface will remain in this state until it is confirmed by // the virtual interface owner. // // Verifying: This state only applies to public virtual interfaces. Each // public virtual interface needs validation before the virtual interface can // be created. // // Pending: A virtual interface is in this state from the time that it is // created until the virtual interface is ready to forward traffic. // // Available: A virtual interface that is able to forward traffic. // // Down: A virtual interface that is BGP down. // // Deleting: A virtual interface is in this state immediately after calling // DeleteVirtualInterface until it can no longer forward traffic. // // Deleted: A virtual interface that cannot forward traffic. // // Rejected: The virtual interface owner has declined creation of the virtual // interface. If a virtual interface in the 'Confirming' state is deleted by // the virtual interface owner, the virtual interface will enter the 'Rejected' // state. VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"` } // String returns the string representation func (s DeleteVirtualInterfaceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DeleteVirtualInterfaceOutput) GoString() string { return s.String() } // Container for the parameters to the DescribeConnectionLoa operation. type DescribeConnectionLoaInput struct { _ struct{} `type:"structure"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` // A standard media type indicating the content type of the LOA-CFA document. // Currently, the only supported value is "application/pdf". // // Default: application/pdf LoaContentType *string `locationName:"loaContentType" type:"string" enum:"LoaContentType"` // The name of the APN partner or service provider who establishes connectivity // on your behalf. If you supply this parameter, the LOA-CFA lists the provider // name alongside your company name as the requester of the cross connect. // // Default: None ProviderName *string `locationName:"providerName" type:"string"` } // String returns the string representation func (s DescribeConnectionLoaInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeConnectionLoaInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeConnectionLoaInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeConnectionLoaInput"} if s.ConnectionId == nil { invalidParams.Add(request.NewErrParamRequired("ConnectionId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // The response received when DescribeConnectionLoa is called. type DescribeConnectionLoaOutput struct { _ struct{} `type:"structure"` // A structure containing the Letter of Authorization - Connecting Facility // Assignment (LOA-CFA) for a connection. Loa *Loa `locationName:"loa" type:"structure"` } // String returns the string representation func (s DescribeConnectionLoaOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeConnectionLoaOutput) GoString() string { return s.String() } // Container for the parameters to the DescribeConnections operation. type DescribeConnectionsInput struct { _ struct{} `type:"structure"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string"` } // String returns the string representation func (s DescribeConnectionsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeConnectionsInput) GoString() string { return s.String() } // Container for the parameters to the DescribeConnectionsOnInterconnect operation. type DescribeConnectionsOnInterconnectInput struct { _ struct{} `type:"structure"` // ID of the interconnect on which a list of connection is provisioned. // // Example: dxcon-abc123 // // Default: None InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"` } // String returns the string representation func (s DescribeConnectionsOnInterconnectInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeConnectionsOnInterconnectInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeConnectionsOnInterconnectInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeConnectionsOnInterconnectInput"} if s.InterconnectId == nil { invalidParams.Add(request.NewErrParamRequired("InterconnectId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // Container for the parameters to the DescribeInterconnectLoa operation. type DescribeInterconnectLoaInput struct { _ struct{} `type:"structure"` // The ID of the interconnect. // // Example: dxcon-abc123 InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"` // A standard media type indicating the content type of the LOA-CFA document. // Currently, the only supported value is "application/pdf". // // Default: application/pdf LoaContentType *string `locationName:"loaContentType" type:"string" enum:"LoaContentType"` // The name of the service provider who establishes connectivity on your behalf. // If you supply this parameter, the LOA-CFA lists the provider name alongside // your company name as the requester of the cross connect. // // Default: None ProviderName *string `locationName:"providerName" type:"string"` } // String returns the string representation func (s DescribeInterconnectLoaInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeInterconnectLoaInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeInterconnectLoaInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeInterconnectLoaInput"} if s.InterconnectId == nil { invalidParams.Add(request.NewErrParamRequired("InterconnectId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // The response received when DescribeInterconnectLoa is called. type DescribeInterconnectLoaOutput struct { _ struct{} `type:"structure"` // A structure containing the Letter of Authorization - Connecting Facility // Assignment (LOA-CFA) for a connection. Loa *Loa `locationName:"loa" type:"structure"` } // String returns the string representation func (s DescribeInterconnectLoaOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeInterconnectLoaOutput) GoString() string { return s.String() } // Container for the parameters to the DescribeInterconnects operation. type DescribeInterconnectsInput struct { _ struct{} `type:"structure"` // The ID of the interconnect. // // Example: dxcon-abc123 InterconnectId *string `locationName:"interconnectId" type:"string"` } // String returns the string representation func (s DescribeInterconnectsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeInterconnectsInput) GoString() string { return s.String() } // A structure containing a list of interconnects. type DescribeInterconnectsOutput struct { _ struct{} `type:"structure"` // A list of interconnects. Interconnects []*Interconnect `locationName:"interconnects" type:"list"` } // String returns the string representation func (s DescribeInterconnectsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeInterconnectsOutput) GoString() string { return s.String() } type DescribeLocationsInput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s DescribeLocationsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeLocationsInput) GoString() string { return s.String() } // A location is a network facility where AWS Direct Connect routers are available // to be connected. Generally, these are colocation hubs where many network // providers have equipment, and where cross connects can be delivered. Locations // include a name and facility code, and must be provided when creating a connection. type DescribeLocationsOutput struct { _ struct{} `type:"structure"` // A list of colocation hubs where network providers have equipment. Most regions // have multiple locations available. Locations []*Location `locationName:"locations" type:"list"` } // String returns the string representation func (s DescribeLocationsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeLocationsOutput) GoString() string { return s.String() } type DescribeVirtualGatewaysInput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s DescribeVirtualGatewaysInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeVirtualGatewaysInput) GoString() string { return s.String() } // A structure containing a list of virtual private gateways. type DescribeVirtualGatewaysOutput struct { _ struct{} `type:"structure"` // A list of virtual private gateways. VirtualGateways []*VirtualGateway `locationName:"virtualGateways" type:"list"` } // String returns the string representation func (s DescribeVirtualGatewaysOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeVirtualGatewaysOutput) GoString() string { return s.String() } // Container for the parameters to the DescribeVirtualInterfaces operation. type DescribeVirtualInterfacesInput struct { _ struct{} `type:"structure"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string"` // ID of the virtual interface. // // Example: dxvif-123dfg56 // // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string"` } // String returns the string representation func (s DescribeVirtualInterfacesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeVirtualInterfacesInput) GoString() string { return s.String() } // A structure containing a list of virtual interfaces. type DescribeVirtualInterfacesOutput struct { _ struct{} `type:"structure"` // A list of virtual interfaces. VirtualInterfaces []*VirtualInterface `locationName:"virtualInterfaces" type:"list"` } // String returns the string representation func (s DescribeVirtualInterfacesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeVirtualInterfacesOutput) GoString() string { return s.String() } // An interconnect is a connection that can host other connections. // // Like a standard AWS Direct Connect connection, an interconnect represents // the physical connection between an AWS Direct Connect partner's network and // a specific Direct Connect location. An AWS Direct Connect partner who owns // an interconnect can provision hosted connections on the interconnect for // their end customers, thereby providing the end customers with connectivity // to AWS services. // // The resources of the interconnect, including bandwidth and VLAN numbers, // are shared by all of the hosted connections on the interconnect, and the // owner of the interconnect determines how these resources are assigned. type Interconnect struct { _ struct{} `type:"structure"` // Bandwidth of the connection. // // Example: 1Gbps // // Default: None Bandwidth *string `locationName:"bandwidth" type:"string"` // The ID of the interconnect. // // Example: dxcon-abc123 InterconnectId *string `locationName:"interconnectId" type:"string"` // The name of the interconnect. // // Example: "1G Interconnect to AWS" InterconnectName *string `locationName:"interconnectName" type:"string"` // State of the interconnect. // // Requested: The initial state of an interconnect. The interconnect stays // in the requested state until the Letter of Authorization (LOA) is sent to // the customer. // // Pending>: The interconnect has been approved, and is being initialized. // // Available: The network link is up, and the interconnect is ready for // use. // // Down: The network link is down. // // Deleting: The interconnect is in the process of being deleted. // // Deleted: The interconnect has been deleted. InterconnectState *string `locationName:"interconnectState" type:"string" enum:"InterconnectState"` // The time of the most recent call to DescribeInterconnectLoa for this Interconnect. LoaIssueTime *time.Time `locationName:"loaIssueTime" type:"timestamp" timestampFormat:"unix"` // Where the connection is located. // // Example: EqSV5 // // Default: None Location *string `locationName:"location" type:"string"` // The AWS region where the connection is located. // // Example: us-east-1 // // Default: None Region *string `locationName:"region" type:"string"` } // String returns the string representation func (s Interconnect) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s Interconnect) GoString() string { return s.String() } // A structure containing the Letter of Authorization - Connecting Facility // Assignment (LOA-CFA) for a connection. type Loa struct { _ struct{} `type:"structure"` // The binary contents of the LOA-CFA document. // // LoaContent is automatically base64 encoded/decoded by the SDK. LoaContent []byte `locationName:"loaContent" type:"blob"` // A standard media type indicating the content type of the LOA-CFA document. // Currently, the only supported value is "application/pdf". // // Default: application/pdf LoaContentType *string `locationName:"loaContentType" type:"string" enum:"LoaContentType"` } // String returns the string representation func (s Loa) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s Loa) GoString() string { return s.String() } // An AWS Direct Connect location where connections and interconnects can be // requested. type Location struct { _ struct{} `type:"structure"` // The code used to indicate the AWS Direct Connect location. LocationCode *string `locationName:"locationCode" type:"string"` // The name of the AWS Direct Connect location. The name includes the colocation // partner name and the physical site of the lit building. LocationName *string `locationName:"locationName" type:"string"` } // String returns the string representation func (s Location) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s Location) GoString() string { return s.String() } // A structure containing information about a new private virtual interface. type NewPrivateVirtualInterface struct { _ struct{} `type:"structure"` // IP address assigned to the Amazon interface. // // Example: 192.168.1.1/30 AmazonAddress *string `locationName:"amazonAddress" type:"string"` // Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. // // Example: 65000 Asn *int64 `locationName:"asn" type:"integer" required:"true"` // Authentication key for BGP configuration. // // Example: asdf34example AuthKey *string `locationName:"authKey" type:"string"` // IP address assigned to the customer interface. // // Example: 192.168.1.2/30 CustomerAddress *string `locationName:"customerAddress" type:"string"` // The ID of the virtual private gateway to a VPC. This only applies to private // virtual interfaces. // // Example: vgw-123er56 VirtualGatewayId *string `locationName:"virtualGatewayId" type:"string" required:"true"` // The name of the virtual interface assigned by the customer. // // Example: "My VPC" VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string" required:"true"` // The VLAN ID. // // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` } // String returns the string representation func (s NewPrivateVirtualInterface) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s NewPrivateVirtualInterface) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *NewPrivateVirtualInterface) Validate() error { invalidParams := request.ErrInvalidParams{Context: "NewPrivateVirtualInterface"} if s.Asn == nil { invalidParams.Add(request.NewErrParamRequired("Asn")) } if s.VirtualGatewayId == nil { invalidParams.Add(request.NewErrParamRequired("VirtualGatewayId")) } if s.VirtualInterfaceName == nil { invalidParams.Add(request.NewErrParamRequired("VirtualInterfaceName")) } if s.Vlan == nil { invalidParams.Add(request.NewErrParamRequired("Vlan")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // A structure containing information about a private virtual interface that // will be provisioned on a connection. type NewPrivateVirtualInterfaceAllocation struct { _ struct{} `type:"structure"` // IP address assigned to the Amazon interface. // // Example: 192.168.1.1/30 AmazonAddress *string `locationName:"amazonAddress" type:"string"` // Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. // // Example: 65000 Asn *int64 `locationName:"asn" type:"integer" required:"true"` // Authentication key for BGP configuration. // // Example: asdf34example AuthKey *string `locationName:"authKey" type:"string"` // IP address assigned to the customer interface. // // Example: 192.168.1.2/30 CustomerAddress *string `locationName:"customerAddress" type:"string"` // The name of the virtual interface assigned by the customer. // // Example: "My VPC" VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string" required:"true"` // The VLAN ID. // // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` } // String returns the string representation func (s NewPrivateVirtualInterfaceAllocation) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s NewPrivateVirtualInterfaceAllocation) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *NewPrivateVirtualInterfaceAllocation) Validate() error { invalidParams := request.ErrInvalidParams{Context: "NewPrivateVirtualInterfaceAllocation"} if s.Asn == nil { invalidParams.Add(request.NewErrParamRequired("Asn")) } if s.VirtualInterfaceName == nil { invalidParams.Add(request.NewErrParamRequired("VirtualInterfaceName")) } if s.Vlan == nil { invalidParams.Add(request.NewErrParamRequired("Vlan")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // A structure containing information about a new public virtual interface. type NewPublicVirtualInterface struct { _ struct{} `type:"structure"` // IP address assigned to the Amazon interface. // // Example: 192.168.1.1/30 AmazonAddress *string `locationName:"amazonAddress" type:"string" required:"true"` // Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. // // Example: 65000 Asn *int64 `locationName:"asn" type:"integer" required:"true"` // Authentication key for BGP configuration. // // Example: asdf34example AuthKey *string `locationName:"authKey" type:"string"` // IP address assigned to the customer interface. // // Example: 192.168.1.2/30 CustomerAddress *string `locationName:"customerAddress" type:"string" required:"true"` // A list of routes to be advertised to the AWS network in this region (public // virtual interface). RouteFilterPrefixes []*RouteFilterPrefix `locationName:"routeFilterPrefixes" type:"list" required:"true"` // The name of the virtual interface assigned by the customer. // // Example: "My VPC" VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string" required:"true"` // The VLAN ID. // // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` } // String returns the string representation func (s NewPublicVirtualInterface) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s NewPublicVirtualInterface) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *NewPublicVirtualInterface) Validate() error { invalidParams := request.ErrInvalidParams{Context: "NewPublicVirtualInterface"} if s.AmazonAddress == nil { invalidParams.Add(request.NewErrParamRequired("AmazonAddress")) } if s.Asn == nil { invalidParams.Add(request.NewErrParamRequired("Asn")) } if s.CustomerAddress == nil { invalidParams.Add(request.NewErrParamRequired("CustomerAddress")) } if s.RouteFilterPrefixes == nil { invalidParams.Add(request.NewErrParamRequired("RouteFilterPrefixes")) } if s.VirtualInterfaceName == nil { invalidParams.Add(request.NewErrParamRequired("VirtualInterfaceName")) } if s.Vlan == nil { invalidParams.Add(request.NewErrParamRequired("Vlan")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // A structure containing information about a public virtual interface that // will be provisioned on a connection. type NewPublicVirtualInterfaceAllocation struct { _ struct{} `type:"structure"` // IP address assigned to the Amazon interface. // // Example: 192.168.1.1/30 AmazonAddress *string `locationName:"amazonAddress" type:"string" required:"true"` // Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. // // Example: 65000 Asn *int64 `locationName:"asn" type:"integer" required:"true"` // Authentication key for BGP configuration. // // Example: asdf34example AuthKey *string `locationName:"authKey" type:"string"` // IP address assigned to the customer interface. // // Example: 192.168.1.2/30 CustomerAddress *string `locationName:"customerAddress" type:"string" required:"true"` // A list of routes to be advertised to the AWS network in this region (public // virtual interface). RouteFilterPrefixes []*RouteFilterPrefix `locationName:"routeFilterPrefixes" type:"list" required:"true"` // The name of the virtual interface assigned by the customer. // // Example: "My VPC" VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string" required:"true"` // The VLAN ID. // // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` } // String returns the string representation func (s NewPublicVirtualInterfaceAllocation) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s NewPublicVirtualInterfaceAllocation) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *NewPublicVirtualInterfaceAllocation) Validate() error { invalidParams := request.ErrInvalidParams{Context: "NewPublicVirtualInterfaceAllocation"} if s.AmazonAddress == nil { invalidParams.Add(request.NewErrParamRequired("AmazonAddress")) } if s.Asn == nil { invalidParams.Add(request.NewErrParamRequired("Asn")) } if s.CustomerAddress == nil { invalidParams.Add(request.NewErrParamRequired("CustomerAddress")) } if s.RouteFilterPrefixes == nil { invalidParams.Add(request.NewErrParamRequired("RouteFilterPrefixes")) } if s.VirtualInterfaceName == nil { invalidParams.Add(request.NewErrParamRequired("VirtualInterfaceName")) } if s.Vlan == nil { invalidParams.Add(request.NewErrParamRequired("Vlan")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // A route filter prefix that the customer can advertise through Border Gateway // Protocol (BGP) over a public virtual interface. type RouteFilterPrefix struct { _ struct{} `type:"structure"` // CIDR notation for the advertised route. Multiple routes are separated by // commas. // // Example: 10.10.10.0/24,10.10.11.0/24 Cidr *string `locationName:"cidr" type:"string"` } // String returns the string representation func (s RouteFilterPrefix) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s RouteFilterPrefix) GoString() string { return s.String() } // You can create one or more AWS Direct Connect private virtual interfaces // linking to your virtual private gateway. // // Virtual private gateways can be managed using the Amazon Virtual Private // Cloud (Amazon VPC) console or the Amazon EC2 CreateVpnGateway action (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html). type VirtualGateway struct { _ struct{} `type:"structure"` // The ID of the virtual private gateway to a VPC. This only applies to private // virtual interfaces. // // Example: vgw-123er56 VirtualGatewayId *string `locationName:"virtualGatewayId" type:"string"` // State of the virtual private gateway. // // Pending: This is the initial state after calling CreateVpnGateway. // // Available: Ready for use by a private virtual interface. // // Deleting: This is the initial state after calling DeleteVpnGateway. // // Deleted: In this state, a private virtual interface is unable to send // traffic over this gateway. VirtualGatewayState *string `locationName:"virtualGatewayState" type:"string"` } // String returns the string representation func (s VirtualGateway) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s VirtualGateway) GoString() string { return s.String() } // A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect // location and the customer. type VirtualInterface struct { _ struct{} `type:"structure"` // IP address assigned to the Amazon interface. // // Example: 192.168.1.1/30 AmazonAddress *string `locationName:"amazonAddress" type:"string"` // Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. // // Example: 65000 Asn *int64 `locationName:"asn" type:"integer"` // Authentication key for BGP configuration. // // Example: asdf34example AuthKey *string `locationName:"authKey" type:"string"` // ID of the connection. // // Example: dxcon-fg5678gh // // Default: None ConnectionId *string `locationName:"connectionId" type:"string"` // IP address assigned to the customer interface. // // Example: 192.168.1.2/30 CustomerAddress *string `locationName:"customerAddress" type:"string"` // Information for generating the customer router configuration. CustomerRouterConfig *string `locationName:"customerRouterConfig" type:"string"` // Where the connection is located. // // Example: EqSV5 // // Default: None Location *string `locationName:"location" type:"string"` // The AWS account that will own the new virtual interface. OwnerAccount *string `locationName:"ownerAccount" type:"string"` // A list of routes to be advertised to the AWS network in this region (public // virtual interface). RouteFilterPrefixes []*RouteFilterPrefix `locationName:"routeFilterPrefixes" type:"list"` // The ID of the virtual private gateway to a VPC. This only applies to private // virtual interfaces. // // Example: vgw-123er56 VirtualGatewayId *string `locationName:"virtualGatewayId" type:"string"` // ID of the virtual interface. // // Example: dxvif-123dfg56 // // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string"` // The name of the virtual interface assigned by the customer. // // Example: "My VPC" VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string"` // State of the virtual interface. // // Confirming: The creation of the virtual interface is pending confirmation // from the virtual interface owner. If the owner of the virtual interface is // different from the owner of the connection on which it is provisioned, then // the virtual interface will remain in this state until it is confirmed by // the virtual interface owner. // // Verifying: This state only applies to public virtual interfaces. Each // public virtual interface needs validation before the virtual interface can // be created. // // Pending: A virtual interface is in this state from the time that it is // created until the virtual interface is ready to forward traffic. // // Available: A virtual interface that is able to forward traffic. // // Down: A virtual interface that is BGP down. // // Deleting: A virtual interface is in this state immediately after calling // DeleteVirtualInterface until it can no longer forward traffic. // // Deleted: A virtual interface that cannot forward traffic. // // Rejected: The virtual interface owner has declined creation of the virtual // interface. If a virtual interface in the 'Confirming' state is deleted by // the virtual interface owner, the virtual interface will enter the 'Rejected' // state. VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"` // The type of virtual interface. // // Example: private (Amazon VPC) or public (Amazon S3, Amazon DynamoDB, and // so on.) VirtualInterfaceType *string `locationName:"virtualInterfaceType" type:"string"` // The VLAN ID. // // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer"` } // String returns the string representation func (s VirtualInterface) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s VirtualInterface) GoString() string { return s.String() } // State of the connection. // // Ordering: The initial state of a hosted connection provisioned on an // interconnect. The connection stays in the ordering state until the owner // of the hosted connection confirms or declines the connection order. // // Requested: The initial state of a standard connection. The connection // stays in the requested state until the Letter of Authorization (LOA) is sent // to the customer. // // Pending: The connection has been approved, and is being initialized. // // Available: The network link is up, and the connection is ready for use. // // Down: The network link is down. // // Deleting: The connection is in the process of being deleted. // // Deleted: The connection has been deleted. // // Rejected: A hosted connection in the 'Ordering' state will enter the // 'Rejected' state if it is deleted by the end customer. const ( // @enum ConnectionState ConnectionStateOrdering = "ordering" // @enum ConnectionState ConnectionStateRequested = "requested" // @enum ConnectionState ConnectionStatePending = "pending" // @enum ConnectionState ConnectionStateAvailable = "available" // @enum ConnectionState ConnectionStateDown = "down" // @enum ConnectionState ConnectionStateDeleting = "deleting" // @enum ConnectionState ConnectionStateDeleted = "deleted" // @enum ConnectionState ConnectionStateRejected = "rejected" ) // State of the interconnect. // // Requested: The initial state of an interconnect. The interconnect stays // in the requested state until the Letter of Authorization (LOA) is sent to // the customer. // // Pending>: The interconnect has been approved, and is being initialized. // // Available: The network link is up, and the interconnect is ready for // use. // // Down: The network link is down. // // Deleting: The interconnect is in the process of being deleted. // // Deleted: The interconnect has been deleted. const ( // @enum InterconnectState InterconnectStateRequested = "requested" // @enum InterconnectState InterconnectStatePending = "pending" // @enum InterconnectState InterconnectStateAvailable = "available" // @enum InterconnectState InterconnectStateDown = "down" // @enum InterconnectState InterconnectStateDeleting = "deleting" // @enum InterconnectState InterconnectStateDeleted = "deleted" ) // A standard media type indicating the content type of the LOA-CFA document. // Currently, the only supported value is "application/pdf". // // Default: application/pdf const ( // @enum LoaContentType LoaContentTypeApplicationPdf = "application/pdf" ) // State of the virtual interface. // // Confirming: The creation of the virtual interface is pending confirmation // from the virtual interface owner. If the owner of the virtual interface is // different from the owner of the connection on which it is provisioned, then // the virtual interface will remain in this state until it is confirmed by // the virtual interface owner. // // Verifying: This state only applies to public virtual interfaces. Each // public virtual interface needs validation before the virtual interface can // be created. // // Pending: A virtual interface is in this state from the time that it is // created until the virtual interface is ready to forward traffic. // // Available: A virtual interface that is able to forward traffic. // // Down: A virtual interface that is BGP down. // // Deleting: A virtual interface is in this state immediately after calling // DeleteVirtualInterface until it can no longer forward traffic. // // Deleted: A virtual interface that cannot forward traffic. // // Rejected: The virtual interface owner has declined creation of the virtual // interface. If a virtual interface in the 'Confirming' state is deleted by // the virtual interface owner, the virtual interface will enter the 'Rejected' // state. const ( // @enum VirtualInterfaceState VirtualInterfaceStateConfirming = "confirming" // @enum VirtualInterfaceState VirtualInterfaceStateVerifying = "verifying" // @enum VirtualInterfaceState VirtualInterfaceStatePending = "pending" // @enum VirtualInterfaceState VirtualInterfaceStateAvailable = "available" // @enum VirtualInterfaceState VirtualInterfaceStateDown = "down" // @enum VirtualInterfaceState VirtualInterfaceStateDeleting = "deleting" // @enum VirtualInterfaceState VirtualInterfaceStateDeleted = "deleted" // @enum VirtualInterfaceState VirtualInterfaceStateRejected = "rejected" )