-
Notifications
You must be signed in to change notification settings - Fork 638
/
api_op_UpdateEmergencyContactSettings.go
119 lines (98 loc) · 3.75 KB
/
api_op_UpdateEmergencyContactSettings.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
110
111
112
113
114
115
116
117
118
119
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package shield
import (
"context"
"fmt"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
)
type UpdateEmergencyContactSettingsInput struct {
_ struct{} `type:"structure"`
// A list of email addresses that the DRT can use to contact you during a suspected
// attack.
EmergencyContactList []EmergencyContact `type:"list"`
}
// String returns the string representation
func (s UpdateEmergencyContactSettingsInput) String() string {
return awsutil.Prettify(s)
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *UpdateEmergencyContactSettingsInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "UpdateEmergencyContactSettingsInput"}
if s.EmergencyContactList != nil {
for i, v := range s.EmergencyContactList {
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "EmergencyContactList", i), err.(aws.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
type UpdateEmergencyContactSettingsOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s UpdateEmergencyContactSettingsOutput) String() string {
return awsutil.Prettify(s)
}
const opUpdateEmergencyContactSettings = "UpdateEmergencyContactSettings"
// UpdateEmergencyContactSettingsRequest returns a request value for making API operation for
// AWS Shield.
//
// Updates the details of the list of email addresses that the DRT can use to
// contact you during a suspected attack.
//
// // Example sending a request using UpdateEmergencyContactSettingsRequest.
// req := client.UpdateEmergencyContactSettingsRequest(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/UpdateEmergencyContactSettings
func (c *Client) UpdateEmergencyContactSettingsRequest(input *UpdateEmergencyContactSettingsInput) UpdateEmergencyContactSettingsRequest {
op := &aws.Operation{
Name: opUpdateEmergencyContactSettings,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateEmergencyContactSettingsInput{}
}
req := c.newRequest(op, input, &UpdateEmergencyContactSettingsOutput{})
return UpdateEmergencyContactSettingsRequest{Request: req, Input: input, Copy: c.UpdateEmergencyContactSettingsRequest}
}
// UpdateEmergencyContactSettingsRequest is the request type for the
// UpdateEmergencyContactSettings API operation.
type UpdateEmergencyContactSettingsRequest struct {
*aws.Request
Input *UpdateEmergencyContactSettingsInput
Copy func(*UpdateEmergencyContactSettingsInput) UpdateEmergencyContactSettingsRequest
}
// Send marshals and sends the UpdateEmergencyContactSettings API request.
func (r UpdateEmergencyContactSettingsRequest) Send(ctx context.Context) (*UpdateEmergencyContactSettingsResponse, error) {
r.Request.SetContext(ctx)
err := r.Request.Send()
if err != nil {
return nil, err
}
resp := &UpdateEmergencyContactSettingsResponse{
UpdateEmergencyContactSettingsOutput: r.Request.Data.(*UpdateEmergencyContactSettingsOutput),
response: &aws.Response{Request: r.Request},
}
return resp, nil
}
// UpdateEmergencyContactSettingsResponse is the response type for the
// UpdateEmergencyContactSettings API operation.
type UpdateEmergencyContactSettingsResponse struct {
*UpdateEmergencyContactSettingsOutput
response *aws.Response
}
// SDKResponseMetdata returns the response metadata for the
// UpdateEmergencyContactSettings request.
func (r *UpdateEmergencyContactSettingsResponse) SDKResponseMetdata() *aws.Response {
return r.response
}