Struct: v4.InclusiveRules

import "../ibm-cos-sdk-go-v2/aws/signer/internal/v4"

Overview

IsValid will return true if all rules are true

Implemented Interfaces

types.AnalyticsFilter, v4.HTTPPresigner, s3.HTTPPresignerV4, types.MetricsFilter, s3.PresignPost, v4.Rule, arn.S3ObjectLambdaARN, types.SelectObjectContentEventStream

Method Summary collapse

Method Details

func (r InclusiveRules) IsValid(value string) bool



74
75
76
77
78
79
80
81
// File 'aws/signer/internal/v4/header_rules.go', line 74

func (r InclusiveRules) IsValid(value string) bool { for _, rule := range r { if !rule.IsValid(value) { return false } } return true }