-
Notifications
You must be signed in to change notification settings - Fork 638
/
api_op_CreateSubscription.go
109 lines (91 loc) · 3.38 KB
/
api_op_CreateSubscription.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package shield
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
)
type CreateSubscriptionInput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s CreateSubscriptionInput) String() string {
return awsutil.Prettify(s)
}
type CreateSubscriptionOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s CreateSubscriptionOutput) String() string {
return awsutil.Prettify(s)
}
const opCreateSubscription = "CreateSubscription"
// CreateSubscriptionRequest returns a request value for making API operation for
// AWS Shield.
//
// Activates AWS Shield Advanced for an account.
//
// As part of this request you can specify EmergencySettings that automaticaly
// grant the DDoS response team (DRT) needed permissions to assist you during
// a suspected DDoS attack. For more information see Authorize the DDoS Response
// Team to Create Rules and Web ACLs on Your Behalf (https://docs.aws.amazon.com/waf/latest/developerguide/authorize-DRT.html).
//
// To use the services of the DRT, you must be subscribed to the Business Support
// plan (https://aws.amazon.com/premiumsupport/business-support/) or the Enterprise
// Support plan (https://aws.amazon.com/premiumsupport/enterprise-support/).
//
// When you initally create a subscription, your subscription is set to be automatically
// renewed at the end of the existing subscription period. You can change this
// by submitting an UpdateSubscription request.
//
// // Example sending a request using CreateSubscriptionRequest.
// req := client.CreateSubscriptionRequest(params)
// resp, err := req.Send(context.TODO())
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/shield-2016-06-02/CreateSubscription
func (c *Client) CreateSubscriptionRequest(input *CreateSubscriptionInput) CreateSubscriptionRequest {
op := &aws.Operation{
Name: opCreateSubscription,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateSubscriptionInput{}
}
req := c.newRequest(op, input, &CreateSubscriptionOutput{})
return CreateSubscriptionRequest{Request: req, Input: input, Copy: c.CreateSubscriptionRequest}
}
// CreateSubscriptionRequest is the request type for the
// CreateSubscription API operation.
type CreateSubscriptionRequest struct {
*aws.Request
Input *CreateSubscriptionInput
Copy func(*CreateSubscriptionInput) CreateSubscriptionRequest
}
// Send marshals and sends the CreateSubscription API request.
func (r CreateSubscriptionRequest) Send(ctx context.Context) (*CreateSubscriptionResponse, error) {
r.Request.SetContext(ctx)
err := r.Request.Send()
if err != nil {
return nil, err
}
resp := &CreateSubscriptionResponse{
CreateSubscriptionOutput: r.Request.Data.(*CreateSubscriptionOutput),
response: &aws.Response{Request: r.Request},
}
return resp, nil
}
// CreateSubscriptionResponse is the response type for the
// CreateSubscription API operation.
type CreateSubscriptionResponse struct {
*CreateSubscriptionOutput
response *aws.Response
}
// SDKResponseMetdata returns the response metadata for the
// CreateSubscription request.
func (r *CreateSubscriptionResponse) SDKResponseMetdata() *aws.Response {
return r.response
}