本文整理汇总了Golang中github.com/aws/aws-sdk-go/service/waf.New函数的典型用法代码示例。如果您正苦于以下问题:Golang New函数的具体用法?Golang New怎么用?Golang New使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了New函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ExampleWAF_UpdateIPSet
func ExampleWAF_UpdateIPSet() {
svc := waf.New(session.New())
params := &waf.UpdateIPSetInput{
ChangeToken: aws.String("ChangeToken"), // Required
IPSetId: aws.String("ResourceId"), // Required
Updates: []*waf.IPSetUpdate{ // Required
{ // Required
Action: aws.String("ChangeAction"), // Required
IPSetDescriptor: &waf.IPSetDescriptor{ // Required
Type: aws.String("IPSetDescriptorType"), // Required
Value: aws.String("IPSetDescriptorValue"), // Required
},
},
// More values...
},
}
resp, err := svc.UpdateIPSet(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例2: ExampleWAF_UpdateByteMatchSet
func ExampleWAF_UpdateByteMatchSet() {
svc := waf.New(nil)
params := &waf.UpdateByteMatchSetInput{
ByteMatchSetId: aws.String("ResourceId"), // Required
ChangeToken: aws.String("ChangeToken"), // Required
Updates: []*waf.ByteMatchSetUpdate{ // Required
{ // Required
Action: aws.String("ChangeAction"), // Required
ByteMatchTuple: &waf.ByteMatchTuple{ // Required
FieldToMatch: &waf.FieldToMatch{ // Required
Type: aws.String("MatchFieldType"), // Required
Data: aws.String("MatchFieldData"),
},
PositionalConstraint: aws.String("PositionalConstraint"), // Required
TargetString: []byte("PAYLOAD"), // Required
TextTransformation: aws.String("TextTransformation"), // Required
},
},
// More values...
},
}
resp, err := svc.UpdateByteMatchSet(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例3: ExampleWAF_UpdateRule
func ExampleWAF_UpdateRule() {
svc := waf.New(session.New())
params := &waf.UpdateRuleInput{
ChangeToken: aws.String("ChangeToken"), // Required
RuleId: aws.String("ResourceId"), // Required
Updates: []*waf.RuleUpdate{ // Required
{ // Required
Action: aws.String("ChangeAction"), // Required
Predicate: &waf.Predicate{ // Required
DataId: aws.String("ResourceId"), // Required
Negated: aws.Bool(true), // Required
Type: aws.String("PredicateType"), // Required
},
},
// More values...
},
}
resp, err := svc.UpdateRule(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例4: ExampleWAF_CreateSizeConstraintSet
func ExampleWAF_CreateSizeConstraintSet() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := waf.New(sess)
params := &waf.CreateSizeConstraintSetInput{
ChangeToken: aws.String("ChangeToken"), // Required
Name: aws.String("ResourceName"), // Required
}
resp, err := svc.CreateSizeConstraintSet(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例5: ExampleWAF_UpdateWebACL
func ExampleWAF_UpdateWebACL() {
svc := waf.New(session.New())
params := &waf.UpdateWebACLInput{
ChangeToken: aws.String("ChangeToken"), // Required
WebACLId: aws.String("ResourceId"), // Required
DefaultAction: &waf.WafAction{
Type: aws.String("WafActionType"), // Required
},
Updates: []*waf.WebACLUpdate{
{ // Required
Action: aws.String("ChangeAction"), // Required
ActivatedRule: &waf.ActivatedRule{ // Required
Action: &waf.WafAction{ // Required
Type: aws.String("WafActionType"), // Required
},
Priority: aws.Int64(1), // Required
RuleId: aws.String("ResourceId"), // Required
},
},
// More values...
},
}
resp, err := svc.UpdateWebACL(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例6: ExampleWAF_ListXssMatchSets
func ExampleWAF_ListXssMatchSets() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := waf.New(sess)
params := &waf.ListXssMatchSetsInput{
Limit: aws.Int64(1), // Required
NextMarker: aws.String("NextMarker"),
}
resp, err := svc.ListXssMatchSets(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例7: ExampleWAF_GetSampledRequests
func ExampleWAF_GetSampledRequests() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := waf.New(sess)
params := &waf.GetSampledRequestsInput{
MaxItems: aws.Int64(1), // Required
RuleId: aws.String("ResourceId"), // Required
TimeWindow: &waf.TimeWindow{ // Required
EndTime: aws.Time(time.Now()), // Required
StartTime: aws.Time(time.Now()), // Required
},
WebAclId: aws.String("ResourceId"), // Required
}
resp, err := svc.GetSampledRequests(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例8: ExampleWAF_CreateWebACL
func ExampleWAF_CreateWebACL() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := waf.New(sess)
params := &waf.CreateWebACLInput{
ChangeToken: aws.String("ChangeToken"), // Required
DefaultAction: &waf.WafAction{ // Required
Type: aws.String("WafActionType"), // Required
},
MetricName: aws.String("MetricName"), // Required
Name: aws.String("ResourceName"), // Required
}
resp, err := svc.CreateWebACL(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例9: ExampleWAF_UpdateXssMatchSet
func ExampleWAF_UpdateXssMatchSet() {
svc := waf.New(session.New())
params := &waf.UpdateXssMatchSetInput{
ChangeToken: aws.String("ChangeToken"), // Required
Updates: []*waf.XssMatchSetUpdate{ // Required
{ // Required
Action: aws.String("ChangeAction"), // Required
XssMatchTuple: &waf.XssMatchTuple{ // Required
FieldToMatch: &waf.FieldToMatch{ // Required
Type: aws.String("MatchFieldType"), // Required
Data: aws.String("MatchFieldData"),
},
TextTransformation: aws.String("TextTransformation"), // Required
},
},
// More values...
},
XssMatchSetId: aws.String("ResourceId"), // Required
}
resp, err := svc.UpdateXssMatchSet(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例10: ExampleWAF_GetChangeToken
func ExampleWAF_GetChangeToken() {
svc := waf.New(session.New())
var params *waf.GetChangeTokenInput
resp, err := svc.GetChangeToken(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例11: ExampleWAF_GetXssMatchSet
func ExampleWAF_GetXssMatchSet() {
svc := waf.New(session.New())
params := &waf.GetXssMatchSetInput{
XssMatchSetId: aws.String("ResourceId"), // Required
}
resp, err := svc.GetXssMatchSet(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例12: ExampleWAF_GetChangeTokenStatus
func ExampleWAF_GetChangeTokenStatus() {
svc := waf.New(session.New())
params := &waf.GetChangeTokenStatusInput{
ChangeToken: aws.String("ChangeToken"), // Required
}
resp, err := svc.GetChangeTokenStatus(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例13: ExampleWAF_ListWebACLs
func ExampleWAF_ListWebACLs() {
svc := waf.New(session.New())
params := &waf.ListWebACLsInput{
Limit: aws.Int64(1), // Required
NextMarker: aws.String("NextMarker"),
}
resp, err := svc.ListWebACLs(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例14: ExampleWAF_CreateSqlInjectionMatchSet
func ExampleWAF_CreateSqlInjectionMatchSet() {
svc := waf.New(session.New())
params := &waf.CreateSqlInjectionMatchSetInput{
ChangeToken: aws.String("ChangeToken"), // Required
Name: aws.String("ResourceName"), // Required
}
resp, err := svc.CreateSqlInjectionMatchSet(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例15: ExampleWAF_DeleteWebACL
func ExampleWAF_DeleteWebACL() {
svc := waf.New(session.New())
params := &waf.DeleteWebACLInput{
ChangeToken: aws.String("ChangeToken"), // Required
WebACLId: aws.String("ResourceId"), // Required
}
resp, err := svc.DeleteWebACL(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}