diff --git a/.changelog/1a4f8663e68646a7a2f0546bf0a7fb59.json b/.changelog/1a4f8663e68646a7a2f0546bf0a7fb59.json new file mode 100644 index 00000000000..4e93f6a4745 --- /dev/null +++ b/.changelog/1a4f8663e68646a7a2f0546bf0a7fb59.json @@ -0,0 +1,9 @@ +{ + "id": "1a4f8663-e686-46a7-a2f0-546bf0a7fb59", + "type": "bugfix", + "description": "Allow non-nil but empty headers", + "modules": [ + "internal/protocoltest/awsrestjson", + "internal/protocoltest/restxml" + ] +} \ No newline at end of file diff --git a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/AwsProtocolUtils.java b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/AwsProtocolUtils.java index e489e07f492..bda7e42ef4d 100644 --- a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/AwsProtocolUtils.java +++ b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/AwsProtocolUtils.java @@ -150,8 +150,20 @@ public static void generateHttpProtocolTests(GenerationContext context) { .service(ShapeId.from("aws.protocoltests.json10#JsonRpc10")) .operation(ShapeId.from("aws.protocoltests.json10#OperationWithNestedStructure")) .addTestName("AwsJson10ClientPopulatesNestedDefaultValuesWhenMissing") + .build(), + + // TODO these tests are currently failing due to tests not being updated, see #2825 + HttpProtocolUnitTestGenerator.SkipTest.builder() + .service(ShapeId.from("aws.protocoltests.restjson#RestJson")) + .operation(ShapeId.from("aws.protocoltests.restjson#NullAndEmptyHeadersClient")) + .addTestName("RestJsonNullAndEmptyHeaders") + .build(), + HttpProtocolUnitTestGenerator.SkipTest.builder() + .service(ShapeId.from("aws.protocoltests.restxml#RestXml")) + .operation(ShapeId.from("aws.protocoltests.restxml#NullAndEmptyHeadersClient")) + .addTestName("NullAndEmptyHeaders") .build() - )); + )); Set outputSkipTests = new TreeSet<>(SetUtils.of( // CBOR default value deserialization (SHOULD) diff --git a/internal/protocoltest/awsrestjson/api_op_NullAndEmptyHeadersClient_test.go b/internal/protocoltest/awsrestjson/api_op_NullAndEmptyHeadersClient_test.go index a1d6389772e..a70134de621 100644 --- a/internal/protocoltest/awsrestjson/api_op_NullAndEmptyHeadersClient_test.go +++ b/internal/protocoltest/awsrestjson/api_op_NullAndEmptyHeadersClient_test.go @@ -54,6 +54,10 @@ func TestClient_NullAndEmptyHeadersClient_awsRestjson1Serialize(t *testing.T) { } for name, c := range cases { t.Run(name, func(t *testing.T) { + if name == "RestJsonNullAndEmptyHeaders" { + t.Skip("disabled test aws.protocoltests.restjson#RestJson aws.protocoltests.restjson#NullAndEmptyHeadersClient") + } + actualReq := &http.Request{} serverURL := "http://localhost:8888/" if c.Host != nil { diff --git a/internal/protocoltest/awsrestjson/serializers.go b/internal/protocoltest/awsrestjson/serializers.go index 0930c4e5f5a..b4179fc8270 100644 --- a/internal/protocoltest/awsrestjson/serializers.go +++ b/internal/protocoltest/awsrestjson/serializers.go @@ -1314,7 +1314,7 @@ func awsRestjson1_serializeOpHttpBindingsHttpPayloadTraitsInput(v *HttpPayloadTr return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -1393,7 +1393,7 @@ func awsRestjson1_serializeOpHttpBindingsHttpPayloadTraitsWithMediaTypeInput(v * return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -1616,7 +1616,7 @@ func awsRestjson1_serializeOpHttpBindingsHttpPrefixHeadersInput(v *HttpPrefixHea return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -2426,6 +2426,9 @@ func awsRestjson1_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *Input if v.HeaderBooleanList != nil { locationName := "X-Booleanlist" + if len(v.HeaderBooleanList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderBooleanList { { encoder.AddHeader(locationName).Boolean(v.HeaderBooleanList[i]) @@ -2450,6 +2453,9 @@ func awsRestjson1_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *Input if v.HeaderEnumList != nil { locationName := "X-Enumlist" + if len(v.HeaderEnumList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderEnumList { if len(v.HeaderEnumList[i]) > 0 { escaped := string(v.HeaderEnumList[i]) @@ -2484,6 +2490,9 @@ func awsRestjson1_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *Input if v.HeaderIntegerEnumList != nil { locationName := "X-Integerenumlist" + if len(v.HeaderIntegerEnumList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderIntegerEnumList { { encoder.AddHeader(locationName).Integer(v.HeaderIntegerEnumList[i]) @@ -2493,6 +2502,9 @@ func awsRestjson1_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *Input if v.HeaderIntegerList != nil { locationName := "X-Integerlist" + if len(v.HeaderIntegerList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderIntegerList { { encoder.AddHeader(locationName).Integer(v.HeaderIntegerList[i]) @@ -2510,13 +2522,16 @@ func awsRestjson1_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *Input encoder.SetHeader(locationName).Short(*v.HeaderShort) } - if v.HeaderString != nil && len(*v.HeaderString) > 0 { + if v.HeaderString != nil { locationName := "X-String" encoder.SetHeader(locationName).String(*v.HeaderString) } if v.HeaderStringList != nil { locationName := "X-Stringlist" + if len(v.HeaderStringList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderStringList { if len(v.HeaderStringList[i]) > 0 { escaped := v.HeaderStringList[i] @@ -2531,6 +2546,9 @@ func awsRestjson1_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *Input if v.HeaderStringSet != nil { locationName := "X-Stringset" + if len(v.HeaderStringSet) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderStringSet { if len(v.HeaderStringSet[i]) > 0 { escaped := v.HeaderStringSet[i] @@ -2545,6 +2563,9 @@ func awsRestjson1_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *Input if v.HeaderTimestampList != nil { locationName := "X-Timestamplist" + if len(v.HeaderTimestampList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderTimestampList { { encoder.AddHeader(locationName).String(smithytime.FormatHTTPDate(v.HeaderTimestampList[i])) @@ -4914,7 +4935,7 @@ func awsRestjson1_serializeOpHttpBindingsMalformedStringInput(v *MalformedString return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Blob != nil && len(*v.Blob) > 0 { + if v.Blob != nil { locationName := "Amz-Media-Typed-Header" encodedVal := base64.StdEncoding.EncodeToString([]byte(*v.Blob)) encodedPtr := ptr.String(encodedVal) @@ -5921,7 +5942,7 @@ func awsRestjson1_serializeOpHttpBindingsMediaTypeHeaderInput(v *MediaTypeHeader return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Json != nil && len(*v.Json) > 0 { + if v.Json != nil { locationName := "X-Json" encodedVal := base64.StdEncoding.EncodeToString([]byte(*v.Json)) encodedPtr := ptr.String(encodedVal) @@ -6106,18 +6127,21 @@ func awsRestjson1_serializeOpHttpBindingsNullAndEmptyHeadersClientInput(v *NullA return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.A != nil && len(*v.A) > 0 { + if v.A != nil { locationName := "X-A" encoder.SetHeader(locationName).String(*v.A) } - if v.B != nil && len(*v.B) > 0 { + if v.B != nil { locationName := "X-B" encoder.SetHeader(locationName).String(*v.B) } if v.C != nil { locationName := "X-C" + if len(v.C) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.C { if len(v.C[i]) > 0 { escaped := v.C[i] @@ -6192,18 +6216,21 @@ func awsRestjson1_serializeOpHttpBindingsNullAndEmptyHeadersServerInput(v *NullA return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.A != nil && len(*v.A) > 0 { + if v.A != nil { locationName := "X-A" encoder.SetHeader(locationName).String(*v.A) } - if v.B != nil && len(*v.B) > 0 { + if v.B != nil { locationName := "X-B" encoder.SetHeader(locationName).String(*v.B) } if v.C != nil { locationName := "X-C" + if len(v.C) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.C { if len(v.C[i]) > 0 { escaped := v.C[i] @@ -6812,7 +6839,7 @@ func awsRestjson1_serializeOpHttpBindingsPutWithContentEncodingInput(v *PutWithC return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Encoding != nil && len(*v.Encoding) > 0 { + if v.Encoding != nil { locationName := "Content-Encoding" encoder.SetHeader(locationName).String(*v.Encoding) } @@ -7203,7 +7230,7 @@ func awsRestjson1_serializeOpHttpBindingsSimpleScalarPropertiesInput(v *SimpleSc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -7554,7 +7581,7 @@ func awsRestjson1_serializeOpHttpBindingsStreamingTraitsInput(v *StreamingTraits return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -7633,7 +7660,7 @@ func awsRestjson1_serializeOpHttpBindingsStreamingTraitsRequireLengthInput(v *St return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -7712,7 +7739,7 @@ func awsRestjson1_serializeOpHttpBindingsStreamingTraitsWithMediaTypeInput(v *St return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -7790,7 +7817,7 @@ func awsRestjson1_serializeOpHttpBindingsTestBodyStructureInput(v *TestBodyStruc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.TestId != nil && len(*v.TestId) > 0 { + if v.TestId != nil { locationName := "X-Amz-Test-Id" encoder.SetHeader(locationName).String(*v.TestId) } @@ -7929,7 +7956,7 @@ func awsRestjson1_serializeOpHttpBindingsTestNoPayloadInput(v *TestNoPayloadInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.TestId != nil && len(*v.TestId) > 0 { + if v.TestId != nil { locationName := "X-Amz-Test-Id" encoder.SetHeader(locationName).String(*v.TestId) } @@ -8008,7 +8035,7 @@ func awsRestjson1_serializeOpHttpBindingsTestPayloadBlobInput(v *TestPayloadBlob return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } @@ -8099,7 +8126,7 @@ func awsRestjson1_serializeOpHttpBindingsTestPayloadStructureInput(v *TestPayloa return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.TestId != nil && len(*v.TestId) > 0 { + if v.TestId != nil { locationName := "X-Amz-Test-Id" encoder.SetHeader(locationName).String(*v.TestId) } diff --git a/internal/protocoltest/restxml/api_op_NullAndEmptyHeadersClient_test.go b/internal/protocoltest/restxml/api_op_NullAndEmptyHeadersClient_test.go index d979e5f526f..8516a1e0d2d 100644 --- a/internal/protocoltest/restxml/api_op_NullAndEmptyHeadersClient_test.go +++ b/internal/protocoltest/restxml/api_op_NullAndEmptyHeadersClient_test.go @@ -54,6 +54,10 @@ func TestClient_NullAndEmptyHeadersClient_awsRestxmlSerialize(t *testing.T) { } for name, c := range cases { t.Run(name, func(t *testing.T) { + if name == "NullAndEmptyHeaders" { + t.Skip("disabled test aws.protocoltests.restxml#RestXml aws.protocoltests.restxml#NullAndEmptyHeadersClient") + } + actualReq := &http.Request{} serverURL := "http://localhost:8888/" if c.Host != nil { diff --git a/internal/protocoltest/restxml/serializers.go b/internal/protocoltest/restxml/serializers.go index b6df26bbea5..768726d7bdd 100644 --- a/internal/protocoltest/restxml/serializers.go +++ b/internal/protocoltest/restxml/serializers.go @@ -748,7 +748,7 @@ func awsRestxml_serializeOpHttpBindingsEndpointWithHostLabelHeaderOperationInput return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1348,7 +1348,7 @@ func awsRestxml_serializeOpHttpBindingsHttpPayloadTraitsInput(v *HttpPayloadTrai return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -1427,7 +1427,7 @@ func awsRestxml_serializeOpHttpBindingsHttpPayloadTraitsWithMediaTypeInput(v *Ht return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -1982,7 +1982,7 @@ func awsRestxml_serializeOpHttpBindingsHttpPrefixHeadersInput(v *HttpPrefixHeade return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } @@ -2663,6 +2663,9 @@ func awsRestxml_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *InputAn if v.HeaderBooleanList != nil { locationName := "X-Booleanlist" + if len(v.HeaderBooleanList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderBooleanList { { encoder.AddHeader(locationName).Boolean(v.HeaderBooleanList[i]) @@ -2687,6 +2690,9 @@ func awsRestxml_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *InputAn if v.HeaderEnumList != nil { locationName := "X-Enumlist" + if len(v.HeaderEnumList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderEnumList { if len(v.HeaderEnumList[i]) > 0 { escaped := string(v.HeaderEnumList[i]) @@ -2716,6 +2722,9 @@ func awsRestxml_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *InputAn if v.HeaderIntegerList != nil { locationName := "X-Integerlist" + if len(v.HeaderIntegerList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderIntegerList { { encoder.AddHeader(locationName).Integer(v.HeaderIntegerList[i]) @@ -2733,13 +2742,16 @@ func awsRestxml_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *InputAn encoder.SetHeader(locationName).Short(*v.HeaderShort) } - if v.HeaderString != nil && len(*v.HeaderString) > 0 { + if v.HeaderString != nil { locationName := "X-String" encoder.SetHeader(locationName).String(*v.HeaderString) } if v.HeaderStringList != nil { locationName := "X-Stringlist" + if len(v.HeaderStringList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderStringList { if len(v.HeaderStringList[i]) > 0 { escaped := v.HeaderStringList[i] @@ -2754,6 +2766,9 @@ func awsRestxml_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *InputAn if v.HeaderStringSet != nil { locationName := "X-Stringset" + if len(v.HeaderStringSet) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderStringSet { if len(v.HeaderStringSet[i]) > 0 { escaped := v.HeaderStringSet[i] @@ -2768,6 +2783,9 @@ func awsRestxml_serializeOpHttpBindingsInputAndOutputWithHeadersInput(v *InputAn if v.HeaderTimestampList != nil { locationName := "X-Timestamplist" + if len(v.HeaderTimestampList) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.HeaderTimestampList { { encoder.AddHeader(locationName).String(smithytime.FormatHTTPDate(v.HeaderTimestampList[i])) @@ -3064,18 +3082,21 @@ func awsRestxml_serializeOpHttpBindingsNullAndEmptyHeadersClientInput(v *NullAnd return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.A != nil && len(*v.A) > 0 { + if v.A != nil { locationName := "X-A" encoder.SetHeader(locationName).String(*v.A) } - if v.B != nil && len(*v.B) > 0 { + if v.B != nil { locationName := "X-B" encoder.SetHeader(locationName).String(*v.B) } if v.C != nil { locationName := "X-C" + if len(v.C) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.C { if len(v.C[i]) > 0 { escaped := v.C[i] @@ -3150,18 +3171,21 @@ func awsRestxml_serializeOpHttpBindingsNullAndEmptyHeadersServerInput(v *NullAnd return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.A != nil && len(*v.A) > 0 { + if v.A != nil { locationName := "X-A" encoder.SetHeader(locationName).String(*v.A) } - if v.B != nil && len(*v.B) > 0 { + if v.B != nil { locationName := "X-B" encoder.SetHeader(locationName).String(*v.B) } if v.C != nil { locationName := "X-C" + if len(v.C) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.C { if len(v.C[i]) > 0 { escaped := v.C[i] @@ -3323,7 +3347,7 @@ func awsRestxml_serializeOpHttpBindingsPutWithContentEncodingInput(v *PutWithCon return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Encoding != nil && len(*v.Encoding) > 0 { + if v.Encoding != nil { locationName := "Content-Encoding" encoder.SetHeader(locationName).String(*v.Encoding) } @@ -3734,7 +3758,7 @@ func awsRestxml_serializeOpHttpBindingsSimpleScalarPropertiesInput(v *SimpleScal return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } diff --git a/internal/protocoltest/restxmlwithnamespace/serializers.go b/internal/protocoltest/restxmlwithnamespace/serializers.go index e563fe04587..4e6946cacee 100644 --- a/internal/protocoltest/restxmlwithnamespace/serializers.go +++ b/internal/protocoltest/restxmlwithnamespace/serializers.go @@ -93,7 +93,7 @@ func awsRestxml_serializeOpHttpBindingsSimpleScalarPropertiesInput(v *SimpleScal return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Foo != nil && len(*v.Foo) > 0 { + if v.Foo != nil { locationName := "X-Foo" encoder.SetHeader(locationName).String(*v.Foo) } diff --git a/service/apigateway/serializers.go b/service/apigateway/serializers.go index c240796418f..ecdcf4252af 100644 --- a/service/apigateway/serializers.go +++ b/service/apigateway/serializers.go @@ -5073,7 +5073,7 @@ func awsRestjson1_serializeOpHttpBindingsGetExportInput(v *GetExportInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accepts != nil && len(*v.Accepts) > 0 { + if v.Accepts != nil { locationName := "Accept" encoder.SetHeader(locationName).String(*v.Accepts) } diff --git a/service/appconfig/serializers.go b/service/appconfig/serializers.go index c067af6d082..dd7b4e13639 100644 --- a/service/appconfig/serializers.go +++ b/service/appconfig/serializers.go @@ -796,12 +796,12 @@ func awsRestjson1_serializeOpHttpBindingsCreateHostedConfigurationVersionInput(v } } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.Description != nil && len(*v.Description) > 0 { + if v.Description != nil { locationName := "Description" encoder.SetHeader(locationName).String(*v.Description) } @@ -811,7 +811,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateHostedConfigurationVersionInput(v encoder.SetHeader(locationName).Integer(*v.LatestVersionNumber) } - if v.VersionLabel != nil && len(*v.VersionLabel) > 0 { + if v.VersionLabel != nil { locationName := "Versionlabel" encoder.SetHeader(locationName).String(*v.VersionLabel) } diff --git a/service/bedrockruntime/serializers.go b/service/bedrockruntime/serializers.go index 752f3478edb..dfa30bf907a 100644 --- a/service/bedrockruntime/serializers.go +++ b/service/bedrockruntime/serializers.go @@ -475,22 +475,22 @@ func awsRestjson1_serializeOpHttpBindingsInvokeModelInput(v *InvokeModelInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accept != nil && len(*v.Accept) > 0 { + if v.Accept != nil { locationName := "Accept" encoder.SetHeader(locationName).String(*v.Accept) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.GuardrailIdentifier != nil && len(*v.GuardrailIdentifier) > 0 { + if v.GuardrailIdentifier != nil { locationName := "X-Amzn-Bedrock-Guardrailidentifier" encoder.SetHeader(locationName).String(*v.GuardrailIdentifier) } - if v.GuardrailVersion != nil && len(*v.GuardrailVersion) > 0 { + if v.GuardrailVersion != nil { locationName := "X-Amzn-Bedrock-Guardrailversion" encoder.SetHeader(locationName).String(*v.GuardrailVersion) } @@ -583,22 +583,22 @@ func awsRestjson1_serializeOpHttpBindingsInvokeModelWithResponseStreamInput(v *I return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accept != nil && len(*v.Accept) > 0 { + if v.Accept != nil { locationName := "X-Amzn-Bedrock-Accept" encoder.SetHeader(locationName).String(*v.Accept) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.GuardrailIdentifier != nil && len(*v.GuardrailIdentifier) > 0 { + if v.GuardrailIdentifier != nil { locationName := "X-Amzn-Bedrock-Guardrailidentifier" encoder.SetHeader(locationName).String(*v.GuardrailIdentifier) } - if v.GuardrailVersion != nil && len(*v.GuardrailVersion) > 0 { + if v.GuardrailVersion != nil { locationName := "X-Amzn-Bedrock-Guardrailversion" encoder.SetHeader(locationName).String(*v.GuardrailVersion) } diff --git a/service/billingconductor/serializers.go b/service/billingconductor/serializers.go index a51c450a689..0eb381ca9ba 100644 --- a/service/billingconductor/serializers.go +++ b/service/billingconductor/serializers.go @@ -452,7 +452,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateBillingGroupInput(v *CreateBillin return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -573,7 +573,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateCustomLineItemInput(v *CreateCust return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -699,7 +699,7 @@ func awsRestjson1_serializeOpHttpBindingsCreatePricingPlanInput(v *CreatePricing return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -808,7 +808,7 @@ func awsRestjson1_serializeOpHttpBindingsCreatePricingRuleInput(v *CreatePricing return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } diff --git a/service/chime/serializers.go b/service/chime/serializers.go index fdd9b189ff1..40527e26d4c 100644 --- a/service/chime/serializers.go +++ b/service/chime/serializers.go @@ -592,7 +592,7 @@ func awsRestjson1_serializeOpHttpBindingsBatchCreateChannelMembershipInput(v *Ba } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1829,7 +1829,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelInput(v *CreateChannelInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1960,7 +1960,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelBanInput(v *CreateChannelB } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2059,7 +2059,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelMembershipInput(v *CreateC } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2163,7 +2163,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelModeratorInput(v *CreateCh } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4144,7 +4144,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelInput(v *DeleteChannelInpu } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4220,7 +4220,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelBanInput(v *DeleteChannelB } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4305,7 +4305,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelMembershipInput(v *DeleteC } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4390,7 +4390,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelMessageInput(v *DeleteChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4484,7 +4484,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelModeratorInput(v *DeleteCh } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -6059,7 +6059,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelInput(v *DescribeChannel } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -6135,7 +6135,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelBanInput(v *DescribeChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -6220,7 +6220,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelMembershipInput(v *Descr } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -6309,7 +6309,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelMembershipForAppInstance } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -6389,7 +6389,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelModeratedByAppInstanceUs } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -6474,7 +6474,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelModeratorInput(v *Descri } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -7362,7 +7362,7 @@ func awsRestjson1_serializeOpHttpBindingsGetChannelMessageInput(v *GetChannelMes } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -9868,7 +9868,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelBansInput(v *ListChannelBans } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -9952,7 +9952,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelMembershipsInput(v *ListChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -10035,7 +10035,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelMembershipsForAppInstanceUse encoder.SetQuery("app-instance-user-arn").String(*v.AppInstanceUserArn) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -10119,7 +10119,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelMessagesInput(v *ListChannel } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -10215,7 +10215,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelModeratorsInput(v *ListChann } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -10294,7 +10294,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelsInput(v *ListChannelsInput, encoder.SetQuery("app-instance-arn").String(*v.AppInstanceArn) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -10377,7 +10377,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelsModeratedByAppInstanceUserI encoder.SetQuery("app-instance-user-arn").String(*v.AppInstanceUserArn) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -12915,7 +12915,7 @@ func awsRestjson1_serializeOpHttpBindingsRedactChannelMessageInput(v *RedactChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -13514,7 +13514,7 @@ func awsRestjson1_serializeOpHttpBindingsSendChannelMessageInput(v *SendChannelM } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -14874,7 +14874,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateChannelInput(v *UpdateChannelInpu } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -14983,7 +14983,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateChannelMessageInput(v *UpdateChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -15085,7 +15085,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateChannelReadMarkerInput(v *UpdateC } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } diff --git a/service/chimesdkmessaging/serializers.go b/service/chimesdkmessaging/serializers.go index a9c8d5cc590..c9536cfeb29 100644 --- a/service/chimesdkmessaging/serializers.go +++ b/service/chimesdkmessaging/serializers.go @@ -95,7 +95,7 @@ func awsRestjson1_serializeOpHttpBindingsAssociateChannelFlowInput(v *AssociateC } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -194,7 +194,7 @@ func awsRestjson1_serializeOpHttpBindingsBatchCreateChannelMembershipInput(v *Ba } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -402,7 +402,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelInput(v *CreateChannelInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -566,7 +566,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelBanInput(v *CreateChannelB } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -770,7 +770,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelMembershipInput(v *CreateC } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -879,7 +879,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelModeratorInput(v *CreateCh } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -967,7 +967,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelInput(v *DeleteChannelInpu } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1043,7 +1043,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelBanInput(v *DeleteChannelB } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1199,7 +1199,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelMembershipInput(v *DeleteC } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1288,7 +1288,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelMessageInput(v *DeleteChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1386,7 +1386,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteChannelModeratorInput(v *DeleteCh } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1533,7 +1533,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelInput(v *DescribeChannel } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1609,7 +1609,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelBanInput(v *DescribeChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1765,7 +1765,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelMembershipInput(v *Descr } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1858,7 +1858,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelMembershipForAppInstance } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -1938,7 +1938,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelModeratedByAppInstanceUs } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2023,7 +2023,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeChannelModeratorInput(v *Descri } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2108,7 +2108,7 @@ func awsRestjson1_serializeOpHttpBindingsDisassociateChannelFlowInput(v *Disasso } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2184,7 +2184,7 @@ func awsRestjson1_serializeOpHttpBindingsGetChannelMembershipPreferencesInput(v } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2269,7 +2269,7 @@ func awsRestjson1_serializeOpHttpBindingsGetChannelMessageInput(v *GetChannelMes } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2358,7 +2358,7 @@ func awsRestjson1_serializeOpHttpBindingsGetChannelMessageStatusInput(v *GetChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2576,7 +2576,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelBansInput(v *ListChannelBans } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2734,7 +2734,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelMembershipsInput(v *ListChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2821,7 +2821,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelMembershipsForAppInstanceUse encoder.SetQuery("app-instance-user-arn").String(*v.AppInstanceUserArn) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -2905,7 +2905,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelMessagesInput(v *ListChannel } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -3005,7 +3005,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelModeratorsInput(v *ListChann } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -3084,7 +3084,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelsInput(v *ListChannelsInput, encoder.SetQuery("app-instance-arn").String(*v.AppInstanceArn) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -3241,7 +3241,7 @@ func awsRestjson1_serializeOpHttpBindingsListChannelsModeratedByAppInstanceUserI encoder.SetQuery("app-instance-user-arn").String(*v.AppInstanceUserArn) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -3325,7 +3325,7 @@ func awsRestjson1_serializeOpHttpBindingsListSubChannelsInput(v *ListSubChannels } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -3486,7 +3486,7 @@ func awsRestjson1_serializeOpHttpBindingsPutChannelExpirationSettingsInput(v *Pu } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -3587,7 +3587,7 @@ func awsRestjson1_serializeOpHttpBindingsPutChannelMembershipPreferencesInput(v } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -3793,7 +3793,7 @@ func awsRestjson1_serializeOpHttpBindingsRedactChannelMessageInput(v *RedactChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -3892,7 +3892,7 @@ func awsRestjson1_serializeOpHttpBindingsSearchChannelsInput(v *SearchChannelsIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4001,7 +4001,7 @@ func awsRestjson1_serializeOpHttpBindingsSendChannelMessageInput(v *SendChannelM } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4327,7 +4327,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateChannelInput(v *UpdateChannelInpu } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4537,7 +4537,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateChannelMessageInput(v *UpdateChan } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } @@ -4649,7 +4649,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateChannelReadMarkerInput(v *UpdateC } } - if v.ChimeBearer != nil && len(*v.ChimeBearer) > 0 { + if v.ChimeBearer != nil { locationName := "X-Amz-Chime-Bearer" encoder.SetHeader(locationName).String(*v.ChimeBearer) } diff --git a/service/clouddirectory/serializers.go b/service/clouddirectory/serializers.go index 5f71644fa8a..424c0c851e0 100644 --- a/service/clouddirectory/serializers.go +++ b/service/clouddirectory/serializers.go @@ -86,7 +86,7 @@ func awsRestjson1_serializeOpHttpBindingsAddFacetToObjectInput(v *AddFacetToObje return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -192,7 +192,7 @@ func awsRestjson1_serializeOpHttpBindingsApplySchemaInput(v *ApplySchemaInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -282,7 +282,7 @@ func awsRestjson1_serializeOpHttpBindingsAttachObjectInput(v *AttachObjectInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -386,7 +386,7 @@ func awsRestjson1_serializeOpHttpBindingsAttachPolicyInput(v *AttachPolicyInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -485,7 +485,7 @@ func awsRestjson1_serializeOpHttpBindingsAttachToIndexInput(v *AttachToIndexInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -584,7 +584,7 @@ func awsRestjson1_serializeOpHttpBindingsAttachTypedLinkInput(v *AttachTypedLink return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -702,7 +702,7 @@ func awsRestjson1_serializeOpHttpBindingsBatchReadInput(v *BatchReadInput, encod encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -794,7 +794,7 @@ func awsRestjson1_serializeOpHttpBindingsBatchWriteInput(v *BatchWriteInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -886,7 +886,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateDirectoryInput(v *CreateDirectory return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -976,7 +976,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateFacetInput(v *CreateFacetInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -1083,7 +1083,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateIndexInput(v *CreateIndexInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -1192,7 +1192,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateObjectInput(v *CreateObjectInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -1384,7 +1384,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateTypedLinkFacetInput(v *CreateType return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -1465,7 +1465,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteDirectoryInput(v *DeleteDirectory return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -1543,7 +1543,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteFacetInput(v *DeleteFacetInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -1633,7 +1633,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteObjectInput(v *DeleteObjectInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -1714,7 +1714,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteSchemaInput(v *DeleteSchemaInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -1792,7 +1792,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteTypedLinkFacetInput(v *DeleteType return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -1882,7 +1882,7 @@ func awsRestjson1_serializeOpHttpBindingsDetachFromIndexInput(v *DetachFromIndex return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -1981,7 +1981,7 @@ func awsRestjson1_serializeOpHttpBindingsDetachObjectInput(v *DetachObjectInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2078,7 +2078,7 @@ func awsRestjson1_serializeOpHttpBindingsDetachPolicyInput(v *DetachPolicyInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2177,7 +2177,7 @@ func awsRestjson1_serializeOpHttpBindingsDetachTypedLinkInput(v *DetachTypedLink return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2258,7 +2258,7 @@ func awsRestjson1_serializeOpHttpBindingsDisableDirectoryInput(v *DisableDirecto return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2325,7 +2325,7 @@ func awsRestjson1_serializeOpHttpBindingsEnableDirectoryInput(v *EnableDirectory return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2473,7 +2473,7 @@ func awsRestjson1_serializeOpHttpBindingsGetDirectoryInput(v *GetDirectoryInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2551,7 +2551,7 @@ func awsRestjson1_serializeOpHttpBindingsGetFacetInput(v *GetFacetInput, encoder return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -2641,7 +2641,7 @@ func awsRestjson1_serializeOpHttpBindingsGetLinkAttributesInput(v *GetLinkAttrib return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2750,7 +2750,7 @@ func awsRestjson1_serializeOpHttpBindingsGetObjectAttributesInput(v *GetObjectAt encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2861,7 +2861,7 @@ func awsRestjson1_serializeOpHttpBindingsGetObjectInformationInput(v *GetObjectI encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -2942,7 +2942,7 @@ func awsRestjson1_serializeOpHttpBindingsGetSchemaAsJsonInput(v *GetSchemaAsJson return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -3020,7 +3020,7 @@ func awsRestjson1_serializeOpHttpBindingsGetTypedLinkFacetInformationInput(v *Ge return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -3211,7 +3211,7 @@ func awsRestjson1_serializeOpHttpBindingsListAttachedIndicesInput(v *ListAttache encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -3490,7 +3490,7 @@ func awsRestjson1_serializeOpHttpBindingsListFacetAttributesInput(v *ListFacetAt return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -3590,7 +3590,7 @@ func awsRestjson1_serializeOpHttpBindingsListFacetNamesInput(v *ListFacetNamesIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -3685,7 +3685,7 @@ func awsRestjson1_serializeOpHttpBindingsListIncomingTypedLinksInput(v *ListInco return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -3811,7 +3811,7 @@ func awsRestjson1_serializeOpHttpBindingsListIndexInput(v *ListIndexInput, encod encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -4016,7 +4016,7 @@ func awsRestjson1_serializeOpHttpBindingsListObjectAttributesInput(v *ListObject encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -4130,7 +4130,7 @@ func awsRestjson1_serializeOpHttpBindingsListObjectChildrenInput(v *ListObjectCh encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -4232,7 +4232,7 @@ func awsRestjson1_serializeOpHttpBindingsListObjectParentPathsInput(v *ListObjec return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -4339,7 +4339,7 @@ func awsRestjson1_serializeOpHttpBindingsListObjectParentsInput(v *ListObjectPar encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -4451,7 +4451,7 @@ func awsRestjson1_serializeOpHttpBindingsListObjectPoliciesInput(v *ListObjectPo encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -4553,7 +4553,7 @@ func awsRestjson1_serializeOpHttpBindingsListOutgoingTypedLinksInput(v *ListOutg return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -4679,7 +4679,7 @@ func awsRestjson1_serializeOpHttpBindingsListPolicyAttachmentsInput(v *ListPolic encoder.SetHeader(locationName).String(string(v.ConsistencyLevel)) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -4963,7 +4963,7 @@ func awsRestjson1_serializeOpHttpBindingsListTypedLinkFacetAttributesInput(v *Li return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -5063,7 +5063,7 @@ func awsRestjson1_serializeOpHttpBindingsListTypedLinkFacetNamesInput(v *ListTyp return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -5158,7 +5158,7 @@ func awsRestjson1_serializeOpHttpBindingsLookupPolicyInput(v *LookupPolicyInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -5260,7 +5260,7 @@ func awsRestjson1_serializeOpHttpBindingsPublishSchemaInput(v *PublishSchemaInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DevelopmentSchemaArn != nil && len(*v.DevelopmentSchemaArn) > 0 { + if v.DevelopmentSchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DevelopmentSchemaArn) } @@ -5360,7 +5360,7 @@ func awsRestjson1_serializeOpHttpBindingsPutSchemaFromJsonInput(v *PutSchemaFrom return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -5450,7 +5450,7 @@ func awsRestjson1_serializeOpHttpBindingsRemoveFacetFromObjectInput(v *RemoveFac return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -5725,7 +5725,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateFacetInput(v *UpdateFacetInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -5827,7 +5827,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateLinkAttributesInput(v *UpdateLink return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -5926,7 +5926,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateObjectAttributesInput(v *UpdateOb return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.DirectoryArn != nil && len(*v.DirectoryArn) > 0 { + if v.DirectoryArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.DirectoryArn) } @@ -6025,7 +6025,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateSchemaInput(v *UpdateSchemaInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } @@ -6115,7 +6115,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateTypedLinkFacetInput(v *UpdateType return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.SchemaArn != nil && len(*v.SchemaArn) > 0 { + if v.SchemaArn != nil { locationName := "X-Amz-Data-Partition" encoder.SetHeader(locationName).String(*v.SchemaArn) } diff --git a/service/cloudfront/serializers.go b/service/cloudfront/serializers.go index 50421d413b6..f16b819b017 100644 --- a/service/cloudfront/serializers.go +++ b/service/cloudfront/serializers.go @@ -168,7 +168,7 @@ func awsRestxml_serializeOpHttpBindingsCopyDistributionInput(v *CopyDistribution return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -1984,7 +1984,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteCachePolicyInput(v *DeleteCachePoli } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2060,7 +2060,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteCloudFrontOriginAccessIdentityInput } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2136,7 +2136,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteContinuousDeploymentPolicyInput(v * } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2212,7 +2212,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteDistributionInput(v *DeleteDistribu } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2288,7 +2288,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteFieldLevelEncryptionConfigInput(v * } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2364,7 +2364,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteFieldLevelEncryptionProfileInput(v } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2431,7 +2431,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteFunctionInput(v *DeleteFunctionInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2516,7 +2516,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteKeyGroupInput(v *DeleteKeyGroupInpu } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2583,7 +2583,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteKeyValueStoreInput(v *DeleteKeyValu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2739,7 +2739,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteOriginAccessControlInput(v *DeleteO } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2815,7 +2815,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteOriginRequestPolicyInput(v *DeleteO } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -2891,7 +2891,7 @@ func awsRestxml_serializeOpHttpBindingsDeletePublicKeyInput(v *DeletePublicKeyIn } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -3070,7 +3070,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteResponseHeadersPolicyInput(v *Delet } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -3146,7 +3146,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteStreamingDistributionInput(v *Delet } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -7205,7 +7205,7 @@ func awsRestxml_serializeOpHttpBindingsPublishFunctionInput(v *PublishFunctionIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -7389,7 +7389,7 @@ func awsRestxml_serializeOpHttpBindingsTestFunctionInput(v *TestFunctionInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -7615,7 +7615,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateCachePolicyInput(v *UpdateCachePoli } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -7715,7 +7715,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateCloudFrontOriginAccessIdentityInput } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -7815,7 +7815,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateContinuousDeploymentPolicyInput(v * } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -7915,7 +7915,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateDistributionInput(v *UpdateDistribu } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -7991,7 +7991,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateDistributionWithStagingConfigInput( } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -8095,7 +8095,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateFieldLevelEncryptionConfigInput(v * } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -8195,7 +8195,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateFieldLevelEncryptionProfileInput(v } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -8280,7 +8280,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateFunctionInput(v *UpdateFunctionInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -8418,7 +8418,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateKeyGroupInput(v *UpdateKeyGroupInpu } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -8503,7 +8503,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateKeyValueStoreInput(v *UpdateKeyValu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -8628,7 +8628,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateOriginAccessControlInput(v *UpdateO } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -8728,7 +8728,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateOriginRequestPolicyInput(v *UpdateO } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -8828,7 +8828,7 @@ func awsRestxml_serializeOpHttpBindingsUpdatePublicKeyInput(v *UpdatePublicKeyIn } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -9068,7 +9068,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateResponseHeadersPolicyInput(v *Updat } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -9168,7 +9168,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateStreamingDistributionInput(v *Updat } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } diff --git a/service/cloudfrontkeyvaluestore/serializers.go b/service/cloudfrontkeyvaluestore/serializers.go index ac943ad8d6c..5c66ea8e3f5 100644 --- a/service/cloudfrontkeyvaluestore/serializers.go +++ b/service/cloudfrontkeyvaluestore/serializers.go @@ -74,7 +74,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteKeyInput(v *DeleteKeyInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -400,7 +400,7 @@ func awsRestjson1_serializeOpHttpBindingsPutKeyInput(v *PutKeyInput, encoder *ht return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -508,7 +508,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateKeysInput(v *UpdateKeysInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } diff --git a/service/codeartifact/serializers.go b/service/codeartifact/serializers.go index f166326149c..f9fd7946212 100644 --- a/service/codeartifact/serializers.go +++ b/service/codeartifact/serializers.go @@ -3402,7 +3402,7 @@ func awsRestjson1_serializeOpHttpBindingsPublishPackageVersionInput(v *PublishPa encoder.SetQuery("asset").String(*v.AssetName) } - if v.AssetSHA256 != nil && len(*v.AssetSHA256) > 0 { + if v.AssetSHA256 != nil { locationName := "X-Amz-Content-Sha256" encoder.SetHeader(locationName).String(*v.AssetSHA256) } diff --git a/service/codeguruprofiler/serializers.go b/service/codeguruprofiler/serializers.go index 1ce5e8ca06b..2fa28fbad3e 100644 --- a/service/codeguruprofiler/serializers.go +++ b/service/codeguruprofiler/serializers.go @@ -850,7 +850,7 @@ func awsRestjson1_serializeOpHttpBindingsGetProfileInput(v *GetProfileInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accept != nil && len(*v.Accept) > 0 { + if v.Accept != nil { locationName := "Accept" encoder.SetHeader(locationName).String(*v.Accept) } @@ -1368,7 +1368,7 @@ func awsRestjson1_serializeOpHttpBindingsPostAgentProfileInput(v *PostAgentProfi return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } diff --git a/service/cognitosync/serializers.go b/service/cognitosync/serializers.go index 450761da4dd..f4da9f74286 100644 --- a/service/cognitosync/serializers.go +++ b/service/cognitosync/serializers.go @@ -1465,7 +1465,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateRecordsInput(v *UpdateRecordsInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientContext != nil && len(*v.ClientContext) > 0 { + if v.ClientContext != nil { locationName := "X-Amz-Client-Context" encoder.SetHeader(locationName).String(*v.ClientContext) } diff --git a/service/connectparticipant/serializers.go b/service/connectparticipant/serializers.go index b5035fbe392..3d73a3a65ec 100644 --- a/service/connectparticipant/serializers.go +++ b/service/connectparticipant/serializers.go @@ -85,7 +85,7 @@ func awsRestjson1_serializeOpHttpBindingsCompleteAttachmentUploadInput(v *Comple return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ConnectionToken != nil && len(*v.ConnectionToken) > 0 { + if v.ConnectionToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ConnectionToken) } @@ -182,7 +182,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateParticipantConnectionInput(v *Cre return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ParticipantToken != nil && len(*v.ParticipantToken) > 0 { + if v.ParticipantToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ParticipantToken) } @@ -268,7 +268,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeViewInput(v *DescribeViewInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ConnectionToken != nil && len(*v.ConnectionToken) > 0 { + if v.ConnectionToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ConnectionToken) } @@ -355,7 +355,7 @@ func awsRestjson1_serializeOpHttpBindingsDisconnectParticipantInput(v *Disconnec return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ConnectionToken != nil && len(*v.ConnectionToken) > 0 { + if v.ConnectionToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ConnectionToken) } @@ -445,7 +445,7 @@ func awsRestjson1_serializeOpHttpBindingsGetAttachmentInput(v *GetAttachmentInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ConnectionToken != nil && len(*v.ConnectionToken) > 0 { + if v.ConnectionToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ConnectionToken) } @@ -535,7 +535,7 @@ func awsRestjson1_serializeOpHttpBindingsGetTranscriptInput(v *GetTranscriptInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ConnectionToken != nil && len(*v.ConnectionToken) > 0 { + if v.ConnectionToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ConnectionToken) } @@ -652,7 +652,7 @@ func awsRestjson1_serializeOpHttpBindingsSendEventInput(v *SendEventInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ConnectionToken != nil && len(*v.ConnectionToken) > 0 { + if v.ConnectionToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ConnectionToken) } @@ -752,7 +752,7 @@ func awsRestjson1_serializeOpHttpBindingsSendMessageInput(v *SendMessageInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ConnectionToken != nil && len(*v.ConnectionToken) > 0 { + if v.ConnectionToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ConnectionToken) } @@ -852,7 +852,7 @@ func awsRestjson1_serializeOpHttpBindingsStartAttachmentUploadInput(v *StartAtta return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ConnectionToken != nil && len(*v.ConnectionToken) > 0 { + if v.ConnectionToken != nil { locationName := "X-Amz-Bearer" encoder.SetHeader(locationName).String(*v.ConnectionToken) } diff --git a/service/dataexchange/serializers.go b/service/dataexchange/serializers.go index 8994ef32299..721717355cc 100644 --- a/service/dataexchange/serializers.go +++ b/service/dataexchange/serializers.go @@ -1797,22 +1797,22 @@ func awsRestjson1_serializeOpHttpBindingsSendApiAssetInput(v *SendApiAssetInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AssetId != nil && len(*v.AssetId) > 0 { + if v.AssetId != nil { locationName := "X-Amzn-Dataexchange-Asset-Id" encoder.SetHeader(locationName).String(*v.AssetId) } - if v.DataSetId != nil && len(*v.DataSetId) > 0 { + if v.DataSetId != nil { locationName := "X-Amzn-Dataexchange-Data-Set-Id" encoder.SetHeader(locationName).String(*v.DataSetId) } - if v.Method != nil && len(*v.Method) > 0 { + if v.Method != nil { locationName := "X-Amzn-Dataexchange-Http-Method" encoder.SetHeader(locationName).String(*v.Method) } - if v.Path != nil && len(*v.Path) > 0 { + if v.Path != nil { locationName := "X-Amzn-Dataexchange-Path" encoder.SetHeader(locationName).String(*v.Path) } @@ -1833,7 +1833,7 @@ func awsRestjson1_serializeOpHttpBindingsSendApiAssetInput(v *SendApiAssetInput, } } - if v.RevisionId != nil && len(*v.RevisionId) > 0 { + if v.RevisionId != nil { locationName := "X-Amzn-Dataexchange-Revision-Id" encoder.SetHeader(locationName).String(*v.RevisionId) } diff --git a/service/deadline/serializers.go b/service/deadline/serializers.go index a9d43e1123a..ef1b99a4d36 100644 --- a/service/deadline/serializers.go +++ b/service/deadline/serializers.go @@ -1225,7 +1225,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateBudgetInput(v *CreateBudgetInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1368,7 +1368,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateFarmInput(v *CreateFarmInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1475,7 +1475,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateFleetInput(v *CreateFleetInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1608,7 +1608,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateJobInput(v *CreateJobInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1765,7 +1765,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateLicenseEndpointInput(v *CreateLic return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1876,7 +1876,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateMonitorInput(v *CreateMonitorInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1981,7 +1981,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateQueueInput(v *CreateQueueInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -2130,7 +2130,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateQueueEnvironmentInput(v *CreateQu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -2347,7 +2347,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateStorageProfileInput(v *CreateStor return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -2458,7 +2458,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateWorkerInput(v *CreateWorkerInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -2708,7 +2708,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteFleetInput(v *DeleteFleetInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -8533,7 +8533,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateBudgetInput(v *UpdateBudgetInput, } } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -8780,7 +8780,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateFleetInput(v *UpdateFleetInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -8915,7 +8915,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateJobInput(v *UpdateJobInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -9156,7 +9156,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateQueueInput(v *UpdateQueueInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -9321,7 +9321,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateQueueEnvironmentInput(v *UpdateQu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -9560,7 +9560,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateSessionInput(v *UpdateSessionInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -9686,7 +9686,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateStepInput(v *UpdateStepInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -9812,7 +9812,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateStorageProfileInput(v *UpdateStor return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -9939,7 +9939,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateTaskInput(v *UpdateTaskInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } diff --git a/service/ebs/serializers.go b/service/ebs/serializers.go index f314efe4eec..313acac6fc5 100644 --- a/service/ebs/serializers.go +++ b/service/ebs/serializers.go @@ -79,7 +79,7 @@ func awsRestjson1_serializeOpHttpBindingsCompleteSnapshotInput(v *CompleteSnapsh encoder.SetHeader(locationName).Integer(*v.ChangedBlocksCount) } - if v.Checksum != nil && len(*v.Checksum) > 0 { + if v.Checksum != nil { locationName := "X-Amz-Checksum" encoder.SetHeader(locationName).String(*v.Checksum) } @@ -440,7 +440,7 @@ func awsRestjson1_serializeOpHttpBindingsPutSnapshotBlockInput(v *PutSnapshotBlo } } - if v.Checksum != nil && len(*v.Checksum) > 0 { + if v.Checksum != nil { locationName := "X-Amz-Checksum" encoder.SetHeader(locationName).String(*v.Checksum) } diff --git a/service/entityresolution/serializers.go b/service/entityresolution/serializers.go index 1c90d8bd1d1..474e2fc881c 100644 --- a/service/entityresolution/serializers.go +++ b/service/entityresolution/serializers.go @@ -200,13 +200,16 @@ func awsRestjson1_serializeOpHttpBindingsBatchDeleteUniqueIdInput(v *BatchDelete return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InputSource != nil && len(*v.InputSource) > 0 { + if v.InputSource != nil { locationName := "Inputsource" encoder.SetHeader(locationName).String(*v.InputSource) } if v.UniqueIds != nil { locationName := "Uniqueids" + if len(v.UniqueIds) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.UniqueIds { if len(v.UniqueIds[i]) > 0 { escaped := v.UniqueIds[i] diff --git a/service/glacier/serializers.go b/service/glacier/serializers.go index 6ea2c621f1c..78f1cd1c93d 100644 --- a/service/glacier/serializers.go +++ b/service/glacier/serializers.go @@ -357,12 +357,12 @@ func awsRestjson1_serializeOpHttpBindingsCompleteMultipartUploadInput(v *Complet } } - if v.ArchiveSize != nil && len(*v.ArchiveSize) > 0 { + if v.ArchiveSize != nil { locationName := "X-Amz-Archive-Size" encoder.SetHeader(locationName).String(*v.ArchiveSize) } - if v.Checksum != nil && len(*v.Checksum) > 0 { + if v.Checksum != nil { locationName := "X-Amz-Sha256-Tree-Hash" encoder.SetHeader(locationName).String(*v.Checksum) } @@ -1203,7 +1203,7 @@ func awsRestjson1_serializeOpHttpBindingsGetJobOutputInput(v *GetJobOutputInput, } } - if v.Range != nil && len(*v.Range) > 0 { + if v.Range != nil { locationName := "Range" encoder.SetHeader(locationName).String(*v.Range) } @@ -1632,12 +1632,12 @@ func awsRestjson1_serializeOpHttpBindingsInitiateMultipartUploadInput(v *Initiat } } - if v.ArchiveDescription != nil && len(*v.ArchiveDescription) > 0 { + if v.ArchiveDescription != nil { locationName := "X-Amz-Archive-Description" encoder.SetHeader(locationName).String(*v.ArchiveDescription) } - if v.PartSize != nil && len(*v.PartSize) > 0 { + if v.PartSize != nil { locationName := "X-Amz-Part-Size" encoder.SetHeader(locationName).String(*v.PartSize) } @@ -2829,12 +2829,12 @@ func awsRestjson1_serializeOpHttpBindingsUploadArchiveInput(v *UploadArchiveInpu } } - if v.ArchiveDescription != nil && len(*v.ArchiveDescription) > 0 { + if v.ArchiveDescription != nil { locationName := "X-Amz-Archive-Description" encoder.SetHeader(locationName).String(*v.ArchiveDescription) } - if v.Checksum != nil && len(*v.Checksum) > 0 { + if v.Checksum != nil { locationName := "X-Amz-Sha256-Tree-Hash" encoder.SetHeader(locationName).String(*v.Checksum) } @@ -2931,12 +2931,12 @@ func awsRestjson1_serializeOpHttpBindingsUploadMultipartPartInput(v *UploadMulti } } - if v.Checksum != nil && len(*v.Checksum) > 0 { + if v.Checksum != nil { locationName := "X-Amz-Sha256-Tree-Hash" encoder.SetHeader(locationName).String(*v.Checksum) } - if v.Range != nil && len(*v.Range) > 0 { + if v.Range != nil { locationName := "Content-Range" encoder.SetHeader(locationName).String(*v.Range) } diff --git a/service/grafana/serializers.go b/service/grafana/serializers.go index 07a1227487d..65e8043d567 100644 --- a/service/grafana/serializers.go +++ b/service/grafana/serializers.go @@ -74,7 +74,7 @@ func awsRestjson1_serializeOpHttpBindingsAssociateLicenseInput(v *AssociateLicen return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.GrafanaToken != nil && len(*v.GrafanaToken) > 0 { + if v.GrafanaToken != nil { locationName := "Grafana-Token" encoder.SetHeader(locationName).String(*v.GrafanaToken) } diff --git a/service/greengrass/serializers.go b/service/greengrass/serializers.go index fce979ddffc..ca984f5bf1e 100644 --- a/service/greengrass/serializers.go +++ b/service/greengrass/serializers.go @@ -260,7 +260,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateConnectorDefinitionInput(v *Creat return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -364,7 +364,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateConnectorDefinitionVersionInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -465,7 +465,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateCoreDefinitionInput(v *CreateCore return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -569,7 +569,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateCoreDefinitionVersionInput(v *Cre return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -670,7 +670,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateDeploymentInput(v *CreateDeployme return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -779,7 +779,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateDeviceDefinitionInput(v *CreateDe return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -883,7 +883,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateDeviceDefinitionVersionInput(v *C return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -984,7 +984,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateFunctionDefinitionInput(v *Create return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1088,7 +1088,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateFunctionDefinitionVersionInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1196,7 +1196,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateGroupInput(v *CreateGroupInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1289,7 +1289,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateGroupCertificateAuthorityInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1376,7 +1376,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateGroupVersionInput(v *CreateGroupV return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1505,7 +1505,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateLoggerDefinitionInput(v *CreateLo return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1609,7 +1609,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateLoggerDefinitionVersionInput(v *C return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1710,7 +1710,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateResourceDefinitionInput(v *Create return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1814,7 +1814,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateResourceDefinitionVersionInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -1915,7 +1915,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateSoftwareUpdateJobInput(v *CreateS return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -2032,7 +2032,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateSubscriptionDefinitionInput(v *Cr return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -2136,7 +2136,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateSubscriptionDefinitionVersionInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -6297,7 +6297,7 @@ func awsRestjson1_serializeOpHttpBindingsResetDeploymentsInput(v *ResetDeploymen return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } @@ -6396,7 +6396,7 @@ func awsRestjson1_serializeOpHttpBindingsStartBulkDeploymentInput(v *StartBulkDe return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AmznClientToken != nil && len(*v.AmznClientToken) > 0 { + if v.AmznClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.AmznClientToken) } diff --git a/service/iot/serializers.go b/service/iot/serializers.go index b67edfc5f12..c37eb2ce0ba 100644 --- a/service/iot/serializers.go +++ b/service/iot/serializers.go @@ -665,7 +665,7 @@ func awsRestjson1_serializeOpHttpBindingsAttachPrincipalPolicyInput(v *AttachPri } } - if v.Principal != nil && len(*v.Principal) > 0 { + if v.Principal != nil { locationName := "X-Amzn-Iot-Principal" encoder.SetHeader(locationName).String(*v.Principal) } @@ -807,7 +807,7 @@ func awsRestjson1_serializeOpHttpBindingsAttachThingPrincipalInput(v *AttachThin return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Principal != nil && len(*v.Principal) > 0 { + if v.Principal != nil { locationName := "X-Amzn-Principal" encoder.SetHeader(locationName).String(*v.Principal) } @@ -4934,7 +4934,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateTopicRuleInput(v *CreateTopicRule } } - if v.Tags != nil && len(*v.Tags) > 0 { + if v.Tags != nil { locationName := "X-Amz-Tagging" encoder.SetHeader(locationName).String(*v.Tags) } @@ -10215,7 +10215,7 @@ func awsRestjson1_serializeOpHttpBindingsDetachPrincipalPolicyInput(v *DetachPri } } - if v.Principal != nil && len(*v.Principal) > 0 { + if v.Principal != nil { locationName := "X-Amzn-Iot-Principal" encoder.SetHeader(locationName).String(*v.Principal) } @@ -10357,7 +10357,7 @@ func awsRestjson1_serializeOpHttpBindingsDetachThingPrincipalInput(v *DetachThin return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Principal != nil && len(*v.Principal) > 0 { + if v.Principal != nil { locationName := "X-Amzn-Principal" encoder.SetHeader(locationName).String(*v.Principal) } @@ -14699,7 +14699,7 @@ func awsRestjson1_serializeOpHttpBindingsListPolicyPrincipalsInput(v *ListPolicy encoder.SetQuery("pageSize").Integer(*v.PageSize) } - if v.PolicyName != nil && len(*v.PolicyName) > 0 { + if v.PolicyName != nil { locationName := "X-Amzn-Iot-Policy" encoder.SetHeader(locationName).String(*v.PolicyName) } @@ -14849,7 +14849,7 @@ func awsRestjson1_serializeOpHttpBindingsListPrincipalPoliciesInput(v *ListPrinc encoder.SetQuery("pageSize").Integer(*v.PageSize) } - if v.Principal != nil && len(*v.Principal) > 0 { + if v.Principal != nil { locationName := "X-Amzn-Iot-Principal" encoder.SetHeader(locationName).String(*v.Principal) } @@ -14924,7 +14924,7 @@ func awsRestjson1_serializeOpHttpBindingsListPrincipalThingsInput(v *ListPrincip encoder.SetQuery("nextToken").String(*v.NextToken) } - if v.Principal != nil && len(*v.Principal) > 0 { + if v.Principal != nil { locationName := "X-Amzn-Principal" encoder.SetHeader(locationName).String(*v.Principal) } diff --git a/service/iotdataplane/serializers.go b/service/iotdataplane/serializers.go index 8c80d6e4956..2ae2d3ba698 100644 --- a/service/iotdataplane/serializers.go +++ b/service/iotdataplane/serializers.go @@ -460,7 +460,7 @@ func awsRestjson1_serializeOpHttpBindingsPublishInput(v *PublishInput, encoder * encoder.SetQuery("contentType").String(*v.ContentType) } - if v.CorrelationData != nil && len(*v.CorrelationData) > 0 { + if v.CorrelationData != nil { locationName := "X-Amz-Mqtt5-Correlation-Data" encoder.SetHeader(locationName).String(*v.CorrelationData) } @@ -495,7 +495,7 @@ func awsRestjson1_serializeOpHttpBindingsPublishInput(v *PublishInput, encoder * } } - if v.UserProperties != nil && len(*v.UserProperties) > 0 { + if v.UserProperties != nil { locationName := "X-Amz-Mqtt5-User-Properties" encodedVal := base64.StdEncoding.EncodeToString([]byte(*v.UserProperties)) encodedPtr := ptr.String(encodedVal) diff --git a/service/iotsitewise/serializers.go b/service/iotsitewise/serializers.go index 0537df9f501..ff9a40ddb6d 100644 --- a/service/iotsitewise/serializers.go +++ b/service/iotsitewise/serializers.go @@ -1210,12 +1210,12 @@ func awsRestjson1_serializeOpHttpBindingsCreateAssetModelCompositeModelInput(v * } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } @@ -2059,12 +2059,12 @@ func awsRestjson1_serializeOpHttpBindingsDeleteAssetModelInput(v *DeleteAssetMod encoder.SetQuery("clientToken").String(*v.ClientToken) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } @@ -2158,12 +2158,12 @@ func awsRestjson1_serializeOpHttpBindingsDeleteAssetModelCompositeModelInput(v * encoder.SetQuery("clientToken").String(*v.ClientToken) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } @@ -6744,12 +6744,12 @@ func awsRestjson1_serializeOpHttpBindingsUpdateAssetModelInput(v *UpdateAssetMod } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } @@ -6898,12 +6898,12 @@ func awsRestjson1_serializeOpHttpBindingsUpdateAssetModelCompositeModelInput(v * } } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } diff --git a/service/lambda/serializers.go b/service/lambda/serializers.go index defa7e2ee84..3f02bc85d62 100644 --- a/service/lambda/serializers.go +++ b/service/lambda/serializers.go @@ -3106,7 +3106,7 @@ func awsRestjson1_serializeOpHttpBindingsInvokeInput(v *InvokeInput, encoder *ht return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientContext != nil && len(*v.ClientContext) > 0 { + if v.ClientContext != nil { locationName := "X-Amz-Client-Context" encoder.SetHeader(locationName).String(*v.ClientContext) } @@ -3291,7 +3291,7 @@ func awsRestjson1_serializeOpHttpBindingsInvokeWithResponseStreamInput(v *Invoke return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientContext != nil && len(*v.ClientContext) > 0 { + if v.ClientContext != nil { locationName := "X-Amz-Client-Context" encoder.SetHeader(locationName).String(*v.ClientContext) } diff --git a/service/lexruntimeservice/serializers.go b/service/lexruntimeservice/serializers.go index b6aefebff07..535e50d6fb5 100644 --- a/service/lexruntimeservice/serializers.go +++ b/service/lexruntimeservice/serializers.go @@ -270,12 +270,12 @@ func awsRestjson1_serializeOpHttpBindingsPostContentInput(v *PostContentInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accept != nil && len(*v.Accept) > 0 { + if v.Accept != nil { locationName := "Accept" encoder.SetHeader(locationName).String(*v.Accept) } - if v.ActiveContexts != nil && len(*v.ActiveContexts) > 0 { + if v.ActiveContexts != nil { locationName := "X-Amz-Lex-Active-Contexts" encodedVal := base64.StdEncoding.EncodeToString([]byte(*v.ActiveContexts)) encodedPtr := ptr.String(encodedVal) @@ -300,19 +300,19 @@ func awsRestjson1_serializeOpHttpBindingsPostContentInput(v *PostContentInput, e } } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.RequestAttributes != nil && len(*v.RequestAttributes) > 0 { + if v.RequestAttributes != nil { locationName := "X-Amz-Lex-Request-Attributes" encodedVal := base64.StdEncoding.EncodeToString([]byte(*v.RequestAttributes)) encodedPtr := ptr.String(encodedVal) encoder.SetHeader(locationName).String(*encodedPtr) } - if v.SessionAttributes != nil && len(*v.SessionAttributes) > 0 { + if v.SessionAttributes != nil { locationName := "X-Amz-Lex-Session-Attributes" encodedVal := base64.StdEncoding.EncodeToString([]byte(*v.SessionAttributes)) encodedPtr := ptr.String(encodedVal) @@ -534,7 +534,7 @@ func awsRestjson1_serializeOpHttpBindingsPutSessionInput(v *PutSessionInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accept != nil && len(*v.Accept) > 0 { + if v.Accept != nil { locationName := "Accept" encoder.SetHeader(locationName).String(*v.Accept) } diff --git a/service/lexruntimev2/serializers.go b/service/lexruntimev2/serializers.go index 5045a8ff7f2..f1a4601b9a8 100644 --- a/service/lexruntimev2/serializers.go +++ b/service/lexruntimev2/serializers.go @@ -310,7 +310,7 @@ func awsRestjson1_serializeOpHttpBindingsPutSessionInput(v *PutSessionInput, enc } } - if v.ResponseContentType != nil && len(*v.ResponseContentType) > 0 { + if v.ResponseContentType != nil { locationName := "Responsecontenttype" encoder.SetHeader(locationName).String(*v.ResponseContentType) } @@ -588,17 +588,17 @@ func awsRestjson1_serializeOpHttpBindingsRecognizeUtteranceInput(v *RecognizeUtt } } - if v.RequestAttributes != nil && len(*v.RequestAttributes) > 0 { + if v.RequestAttributes != nil { locationName := "X-Amz-Lex-Request-Attributes" encoder.SetHeader(locationName).String(*v.RequestAttributes) } - if v.RequestContentType != nil && len(*v.RequestContentType) > 0 { + if v.RequestContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.RequestContentType) } - if v.ResponseContentType != nil && len(*v.ResponseContentType) > 0 { + if v.ResponseContentType != nil { locationName := "Response-Content-Type" encoder.SetHeader(locationName).String(*v.ResponseContentType) } @@ -612,7 +612,7 @@ func awsRestjson1_serializeOpHttpBindingsRecognizeUtteranceInput(v *RecognizeUtt } } - if v.SessionState != nil && len(*v.SessionState) > 0 { + if v.SessionState != nil { locationName := "X-Amz-Lex-Session-State" encoder.SetHeader(locationName).String(*v.SessionState) } diff --git a/service/lookoutvision/serializers.go b/service/lookoutvision/serializers.go index 22ffb362c2c..1f2d148bfd7 100644 --- a/service/lookoutvision/serializers.go +++ b/service/lookoutvision/serializers.go @@ -86,7 +86,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateDatasetInput(v *CreateDatasetInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -192,7 +192,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateModelInput(v *CreateModelInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -310,7 +310,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateProjectInput(v *CreateProjectInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -389,7 +389,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteDatasetInput(v *DeleteDatasetInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -474,7 +474,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteModelInput(v *DeleteModelInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -559,7 +559,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteProjectInput(v *DeleteProjectInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -958,7 +958,7 @@ func awsRestjson1_serializeOpHttpBindingsDetectAnomaliesInput(v *DetectAnomalies return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } @@ -1461,7 +1461,7 @@ func awsRestjson1_serializeOpHttpBindingsStartModelInput(v *StartModelInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1574,7 +1574,7 @@ func awsRestjson1_serializeOpHttpBindingsStartModelPackagingJobInput(v *StartMod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1679,7 +1679,7 @@ func awsRestjson1_serializeOpHttpBindingsStopModelInput(v *StopModelInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1948,7 +1948,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateDatasetEntriesInput(v *UpdateData return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } diff --git a/service/mediapackagev2/serializers.go b/service/mediapackagev2/serializers.go index 64c2dbe3085..483c76ada7e 100644 --- a/service/mediapackagev2/serializers.go +++ b/service/mediapackagev2/serializers.go @@ -96,7 +96,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelInput(v *CreateChannelInpu } } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -203,7 +203,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateChannelGroupInput(v *CreateChanne return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -323,7 +323,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateOriginEndpointInput(v *CreateOrig } } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amzn-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -2002,7 +2002,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateChannelInput(v *UpdateChannelInpu } } - if v.ETag != nil && len(*v.ETag) > 0 { + if v.ETag != nil { locationName := "X-Amzn-Update-If-Match" encoder.SetHeader(locationName).String(*v.ETag) } @@ -2101,7 +2101,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateChannelGroupInput(v *UpdateChanne } } - if v.ETag != nil && len(*v.ETag) > 0 { + if v.ETag != nil { locationName := "X-Amzn-Update-If-Match" encoder.SetHeader(locationName).String(*v.ETag) } @@ -2209,7 +2209,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateOriginEndpointInput(v *UpdateOrig } } - if v.ETag != nil && len(*v.ETag) > 0 { + if v.ETag != nil { locationName := "X-Amzn-Update-If-Match" encoder.SetHeader(locationName).String(*v.ETag) } diff --git a/service/mediastoredata/serializers.go b/service/mediastoredata/serializers.go index f06473f36ef..aef9e4d7739 100644 --- a/service/mediastoredata/serializers.go +++ b/service/mediastoredata/serializers.go @@ -222,7 +222,7 @@ func awsRestjson1_serializeOpHttpBindingsGetObjectInput(v *GetObjectInput, encod } } - if v.Range != nil && len(*v.Range) > 0 { + if v.Range != nil { locationName := "Range" encoder.SetHeader(locationName).String(*v.Range) } @@ -375,12 +375,12 @@ func awsRestjson1_serializeOpHttpBindingsPutObjectInput(v *PutObjectInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.CacheControl != nil && len(*v.CacheControl) > 0 { + if v.CacheControl != nil { locationName := "Cache-Control" encoder.SetHeader(locationName).String(*v.CacheControl) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } diff --git a/service/neptunedata/serializers.go b/service/neptunedata/serializers.go index 34e2b17bef0..687c8897a3f 100644 --- a/service/neptunedata/serializers.go +++ b/service/neptunedata/serializers.go @@ -1123,7 +1123,7 @@ func awsRestjson1_serializeOpHttpBindingsExecuteGremlinQueryInput(v *ExecuteGrem return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Serializer != nil && len(*v.Serializer) > 0 { + if v.Serializer != nil { locationName := "Accept" encoder.SetHeader(locationName).String(*v.Serializer) } diff --git a/service/neptunegraph/serializers.go b/service/neptunegraph/serializers.go index fc5c4f57ce0..f3857348b29 100644 --- a/service/neptunegraph/serializers.go +++ b/service/neptunegraph/serializers.go @@ -147,7 +147,7 @@ func awsRestjson1_serializeOpHttpBindingsCancelQueryInput(v *CancelQueryInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.GraphIdentifier != nil && len(*v.GraphIdentifier) > 0 { + if v.GraphIdentifier != nil { locationName := "Graphidentifier" encoder.SetHeader(locationName).String(*v.GraphIdentifier) } @@ -938,7 +938,7 @@ func awsRestjson1_serializeOpHttpBindingsExecuteQueryInput(v *ExecuteQueryInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.GraphIdentifier != nil && len(*v.GraphIdentifier) > 0 { + if v.GraphIdentifier != nil { locationName := "Graphidentifier" encoder.SetHeader(locationName).String(*v.GraphIdentifier) } @@ -1186,7 +1186,7 @@ func awsRestjson1_serializeOpHttpBindingsGetGraphSummaryInput(v *GetGraphSummary return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.GraphIdentifier != nil && len(*v.GraphIdentifier) > 0 { + if v.GraphIdentifier != nil { locationName := "Graphidentifier" encoder.SetHeader(locationName).String(*v.GraphIdentifier) } @@ -1408,7 +1408,7 @@ func awsRestjson1_serializeOpHttpBindingsGetQueryInput(v *GetQueryInput, encoder return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.GraphIdentifier != nil && len(*v.GraphIdentifier) > 0 { + if v.GraphIdentifier != nil { locationName := "Graphidentifier" encoder.SetHeader(locationName).String(*v.GraphIdentifier) } @@ -1777,7 +1777,7 @@ func awsRestjson1_serializeOpHttpBindingsListQueriesInput(v *ListQueriesInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.GraphIdentifier != nil && len(*v.GraphIdentifier) > 0 { + if v.GraphIdentifier != nil { locationName := "Graphidentifier" encoder.SetHeader(locationName).String(*v.GraphIdentifier) } diff --git a/service/nimble/serializers.go b/service/nimble/serializers.go index 74555fde53b..3213c756009 100644 --- a/service/nimble/serializers.go +++ b/service/nimble/serializers.go @@ -85,7 +85,7 @@ func awsRestjson1_serializeOpHttpBindingsAcceptEulasInput(v *AcceptEulasInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -186,7 +186,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateLaunchProfileInput(v *CreateLaunc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -325,7 +325,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateStreamingImageInput(v *CreateStre return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -441,7 +441,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateStreamingSessionInput(v *CreateSt return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -562,7 +562,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateStreamingSessionStreamInput(v *Cr return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -670,7 +670,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateStudioInput(v *CreateStudioInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -789,7 +789,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateStudioComponentInput(v *CreateStu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -937,7 +937,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteLaunchProfileInput(v *DeleteLaunc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1022,7 +1022,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteLaunchProfileMemberInput(v *Delet return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1116,7 +1116,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteStreamingImageInput(v *DeleteStre return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1201,7 +1201,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteStreamingSessionInput(v *DeleteSt return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1286,7 +1286,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteStudioInput(v *DeleteStudioInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1362,7 +1362,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteStudioComponentInput(v *DeleteStu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -1447,7 +1447,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteStudioMemberInput(v *DeleteStudio return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -3399,7 +3399,7 @@ func awsRestjson1_serializeOpHttpBindingsPutLaunchProfileMembersInput(v *PutLaun return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -3514,7 +3514,7 @@ func awsRestjson1_serializeOpHttpBindingsPutStudioMembersInput(v *PutStudioMembe return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -3620,7 +3620,7 @@ func awsRestjson1_serializeOpHttpBindingsStartStreamingSessionInput(v *StartStre return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -3717,7 +3717,7 @@ func awsRestjson1_serializeOpHttpBindingsStartStudioSSOConfigurationRepairInput( return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -3804,7 +3804,7 @@ func awsRestjson1_serializeOpHttpBindingsStopStreamingSessionInput(v *StopStream return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -4085,7 +4085,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateLaunchProfileInput(v *UpdateLaunc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -4219,7 +4219,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateLaunchProfileMemberInput(v *Updat return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -4336,7 +4336,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateStreamingImageInput(v *UpdateStre return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -4449,7 +4449,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateStudioInput(v *UpdateStudioInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } @@ -4558,7 +4558,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateStudioComponentInput(v *UpdateStu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ClientToken != nil && len(*v.ClientToken) > 0 { + if v.ClientToken != nil { locationName := "X-Amz-Client-Token" encoder.SetHeader(locationName).String(*v.ClientToken) } diff --git a/service/omics/serializers.go b/service/omics/serializers.go index 38ce1a9ea01..95cccd07556 100644 --- a/service/omics/serializers.go +++ b/service/omics/serializers.go @@ -3084,7 +3084,7 @@ func awsRestjson1_serializeOpHttpBindingsGetReferenceInput(v *GetReferenceInput, encoder.SetQuery("partNumber").Integer(*v.PartNumber) } - if v.Range != nil && len(*v.Range) > 0 { + if v.Range != nil { locationName := "Range" encoder.SetHeader(locationName).String(*v.Range) } diff --git a/service/qapps/serializers.go b/service/qapps/serializers.go index 2ee924626f0..0372d495285 100644 --- a/service/qapps/serializers.go +++ b/service/qapps/serializers.go @@ -86,7 +86,7 @@ func awsRestjson1_serializeOpHttpBindingsAssociateLibraryItemReviewInput(v *Asso return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -176,7 +176,7 @@ func awsRestjson1_serializeOpHttpBindingsAssociateQAppWithUserInput(v *Associate return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -266,7 +266,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateLibraryItemInput(v *CreateLibrary return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -368,7 +368,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateQAppInput(v *CreateQAppInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -477,7 +477,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteLibraryItemInput(v *DeleteLibrary return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -567,7 +567,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteQAppInput(v *DeleteQAppInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -657,7 +657,7 @@ func awsRestjson1_serializeOpHttpBindingsDisassociateLibraryItemReviewInput(v *D return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -747,7 +747,7 @@ func awsRestjson1_serializeOpHttpBindingsDisassociateQAppFromUserInput(v *Disass return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -830,7 +830,7 @@ func awsRestjson1_serializeOpHttpBindingsGetLibraryItemInput(v *GetLibraryItemIn encoder.SetQuery("appId").String(*v.AppId) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -905,7 +905,7 @@ func awsRestjson1_serializeOpHttpBindingsGetQAppInput(v *GetQAppInput, encoder * encoder.SetQuery("appId").String(*v.AppId) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -972,7 +972,7 @@ func awsRestjson1_serializeOpHttpBindingsGetQAppSessionInput(v *GetQAppSessionIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -1054,7 +1054,7 @@ func awsRestjson1_serializeOpHttpBindingsImportDocumentInput(v *ImportDocumentIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -1162,7 +1162,7 @@ func awsRestjson1_serializeOpHttpBindingsListLibraryItemsInput(v *ListLibraryIte encoder.SetQuery("categoryId").String(*v.CategoryId) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -1237,7 +1237,7 @@ func awsRestjson1_serializeOpHttpBindingsListQAppsInput(v *ListQAppsInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -1394,7 +1394,7 @@ func awsRestjson1_serializeOpHttpBindingsPredictQAppInput(v *PredictQAppInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -1486,7 +1486,7 @@ func awsRestjson1_serializeOpHttpBindingsStartQAppSessionInput(v *StartQAppSessi return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -1595,7 +1595,7 @@ func awsRestjson1_serializeOpHttpBindingsStopQAppSessionInput(v *StopQAppSession return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -1858,7 +1858,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateLibraryItemInput(v *UpdateLibrary return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -1960,7 +1960,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateLibraryItemMetadataInput(v *Updat return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -2055,7 +2055,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateQAppInput(v *UpdateQAppInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } @@ -2162,7 +2162,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateQAppSessionInput(v *UpdateQAppSes return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.InstanceId != nil && len(*v.InstanceId) > 0 { + if v.InstanceId != nil { locationName := "Instance-Id" encoder.SetHeader(locationName).String(*v.InstanceId) } diff --git a/service/s3/serializers.go b/service/s3/serializers.go index 88596e07140..fd8e91c4930 100644 --- a/service/s3/serializers.go +++ b/service/s3/serializers.go @@ -78,7 +78,7 @@ func awsRestxml_serializeOpHttpBindingsAbortMultipartUploadInput(v *AbortMultipa return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -187,32 +187,32 @@ func awsRestxml_serializeOpHttpBindingsCompleteMultipartUploadInput(v *CompleteM return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ChecksumCRC32 != nil && len(*v.ChecksumCRC32) > 0 { + if v.ChecksumCRC32 != nil { locationName := "X-Amz-Checksum-Crc32" encoder.SetHeader(locationName).String(*v.ChecksumCRC32) } - if v.ChecksumCRC32C != nil && len(*v.ChecksumCRC32C) > 0 { + if v.ChecksumCRC32C != nil { locationName := "X-Amz-Checksum-Crc32c" encoder.SetHeader(locationName).String(*v.ChecksumCRC32C) } - if v.ChecksumSHA1 != nil && len(*v.ChecksumSHA1) > 0 { + if v.ChecksumSHA1 != nil { locationName := "X-Amz-Checksum-Sha1" encoder.SetHeader(locationName).String(*v.ChecksumSHA1) } - if v.ChecksumSHA256 != nil && len(*v.ChecksumSHA256) > 0 { + if v.ChecksumSHA256 != nil { locationName := "X-Amz-Checksum-Sha256" encoder.SetHeader(locationName).String(*v.ChecksumSHA256) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } @@ -231,17 +231,17 @@ func awsRestxml_serializeOpHttpBindingsCompleteMultipartUploadInput(v *CompleteM encoder.SetHeader(locationName).String(string(v.RequestPayer)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } @@ -322,7 +322,7 @@ func awsRestxml_serializeOpHttpBindingsCopyObjectInput(v *CopyObjectInput, encod encoder.SetHeader(locationName).Boolean(*v.BucketKeyEnabled) } - if v.CacheControl != nil && len(*v.CacheControl) > 0 { + if v.CacheControl != nil { locationName := "Cache-Control" encoder.SetHeader(locationName).String(*v.CacheControl) } @@ -332,32 +332,32 @@ func awsRestxml_serializeOpHttpBindingsCopyObjectInput(v *CopyObjectInput, encod encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentDisposition != nil && len(*v.ContentDisposition) > 0 { + if v.ContentDisposition != nil { locationName := "Content-Disposition" encoder.SetHeader(locationName).String(*v.ContentDisposition) } - if v.ContentEncoding != nil && len(*v.ContentEncoding) > 0 { + if v.ContentEncoding != nil { locationName := "Content-Encoding" encoder.SetHeader(locationName).String(*v.ContentEncoding) } - if v.ContentLanguage != nil && len(*v.ContentLanguage) > 0 { + if v.ContentLanguage != nil { locationName := "Content-Language" encoder.SetHeader(locationName).String(*v.ContentLanguage) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.CopySource != nil && len(*v.CopySource) > 0 { + if v.CopySource != nil { locationName := "X-Amz-Copy-Source" encoder.SetHeader(locationName).String(*v.CopySource) } - if v.CopySourceIfMatch != nil && len(*v.CopySourceIfMatch) > 0 { + if v.CopySourceIfMatch != nil { locationName := "X-Amz-Copy-Source-If-Match" encoder.SetHeader(locationName).String(*v.CopySourceIfMatch) } @@ -367,7 +367,7 @@ func awsRestxml_serializeOpHttpBindingsCopyObjectInput(v *CopyObjectInput, encod encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.CopySourceIfModifiedSince)) } - if v.CopySourceIfNoneMatch != nil && len(*v.CopySourceIfNoneMatch) > 0 { + if v.CopySourceIfNoneMatch != nil { locationName := "X-Amz-Copy-Source-If-None-Match" encoder.SetHeader(locationName).String(*v.CopySourceIfNoneMatch) } @@ -377,27 +377,27 @@ func awsRestxml_serializeOpHttpBindingsCopyObjectInput(v *CopyObjectInput, encod encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.CopySourceIfUnmodifiedSince)) } - if v.CopySourceSSECustomerAlgorithm != nil && len(*v.CopySourceSSECustomerAlgorithm) > 0 { + if v.CopySourceSSECustomerAlgorithm != nil { locationName := "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.CopySourceSSECustomerAlgorithm) } - if v.CopySourceSSECustomerKey != nil && len(*v.CopySourceSSECustomerKey) > 0 { + if v.CopySourceSSECustomerKey != nil { locationName := "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.CopySourceSSECustomerKey) } - if v.CopySourceSSECustomerKeyMD5 != nil && len(*v.CopySourceSSECustomerKeyMD5) > 0 { + if v.CopySourceSSECustomerKeyMD5 != nil { locationName := "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.CopySourceSSECustomerKeyMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.ExpectedSourceBucketOwner != nil && len(*v.ExpectedSourceBucketOwner) > 0 { + if v.ExpectedSourceBucketOwner != nil { locationName := "X-Amz-Source-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedSourceBucketOwner) } @@ -407,22 +407,22 @@ func awsRestxml_serializeOpHttpBindingsCopyObjectInput(v *CopyObjectInput, encod encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.Expires)) } - if v.GrantFullControl != nil && len(*v.GrantFullControl) > 0 { + if v.GrantFullControl != nil { locationName := "X-Amz-Grant-Full-Control" encoder.SetHeader(locationName).String(*v.GrantFullControl) } - if v.GrantRead != nil && len(*v.GrantRead) > 0 { + if v.GrantRead != nil { locationName := "X-Amz-Grant-Read" encoder.SetHeader(locationName).String(*v.GrantRead) } - if v.GrantReadACP != nil && len(*v.GrantReadACP) > 0 { + if v.GrantReadACP != nil { locationName := "X-Amz-Grant-Read-Acp" encoder.SetHeader(locationName).String(*v.GrantReadACP) } - if v.GrantWriteACP != nil && len(*v.GrantWriteACP) > 0 { + if v.GrantWriteACP != nil { locationName := "X-Amz-Grant-Write-Acp" encoder.SetHeader(locationName).String(*v.GrantWriteACP) } @@ -473,27 +473,27 @@ func awsRestxml_serializeOpHttpBindingsCopyObjectInput(v *CopyObjectInput, encod encoder.SetHeader(locationName).String(string(v.ServerSideEncryption)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } - if v.SSEKMSEncryptionContext != nil && len(*v.SSEKMSEncryptionContext) > 0 { + if v.SSEKMSEncryptionContext != nil { locationName := "X-Amz-Server-Side-Encryption-Context" encoder.SetHeader(locationName).String(*v.SSEKMSEncryptionContext) } - if v.SSEKMSKeyId != nil && len(*v.SSEKMSKeyId) > 0 { + if v.SSEKMSKeyId != nil { locationName := "X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id" encoder.SetHeader(locationName).String(*v.SSEKMSKeyId) } @@ -503,7 +503,7 @@ func awsRestxml_serializeOpHttpBindingsCopyObjectInput(v *CopyObjectInput, encod encoder.SetHeader(locationName).String(string(v.StorageClass)) } - if v.Tagging != nil && len(*v.Tagging) > 0 { + if v.Tagging != nil { locationName := "X-Amz-Tagging" encoder.SetHeader(locationName).String(*v.Tagging) } @@ -513,7 +513,7 @@ func awsRestxml_serializeOpHttpBindingsCopyObjectInput(v *CopyObjectInput, encod encoder.SetHeader(locationName).String(string(v.TaggingDirective)) } - if v.WebsiteRedirectLocation != nil && len(*v.WebsiteRedirectLocation) > 0 { + if v.WebsiteRedirectLocation != nil { locationName := "X-Amz-Website-Redirect-Location" encoder.SetHeader(locationName).String(*v.WebsiteRedirectLocation) } @@ -609,27 +609,27 @@ func awsRestxml_serializeOpHttpBindingsCreateBucketInput(v *CreateBucketInput, e encoder.SetHeader(locationName).String(string(v.ACL)) } - if v.GrantFullControl != nil && len(*v.GrantFullControl) > 0 { + if v.GrantFullControl != nil { locationName := "X-Amz-Grant-Full-Control" encoder.SetHeader(locationName).String(*v.GrantFullControl) } - if v.GrantRead != nil && len(*v.GrantRead) > 0 { + if v.GrantRead != nil { locationName := "X-Amz-Grant-Read" encoder.SetHeader(locationName).String(*v.GrantRead) } - if v.GrantReadACP != nil && len(*v.GrantReadACP) > 0 { + if v.GrantReadACP != nil { locationName := "X-Amz-Grant-Read-Acp" encoder.SetHeader(locationName).String(*v.GrantReadACP) } - if v.GrantWrite != nil && len(*v.GrantWrite) > 0 { + if v.GrantWrite != nil { locationName := "X-Amz-Grant-Write" encoder.SetHeader(locationName).String(*v.GrantWrite) } - if v.GrantWriteACP != nil && len(*v.GrantWriteACP) > 0 { + if v.GrantWriteACP != nil { locationName := "X-Amz-Grant-Write-Acp" encoder.SetHeader(locationName).String(*v.GrantWriteACP) } @@ -716,7 +716,7 @@ func awsRestxml_serializeOpHttpBindingsCreateMultipartUploadInput(v *CreateMulti encoder.SetHeader(locationName).Boolean(*v.BucketKeyEnabled) } - if v.CacheControl != nil && len(*v.CacheControl) > 0 { + if v.CacheControl != nil { locationName := "Cache-Control" encoder.SetHeader(locationName).String(*v.CacheControl) } @@ -726,27 +726,27 @@ func awsRestxml_serializeOpHttpBindingsCreateMultipartUploadInput(v *CreateMulti encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentDisposition != nil && len(*v.ContentDisposition) > 0 { + if v.ContentDisposition != nil { locationName := "Content-Disposition" encoder.SetHeader(locationName).String(*v.ContentDisposition) } - if v.ContentEncoding != nil && len(*v.ContentEncoding) > 0 { + if v.ContentEncoding != nil { locationName := "Content-Encoding" encoder.SetHeader(locationName).String(*v.ContentEncoding) } - if v.ContentLanguage != nil && len(*v.ContentLanguage) > 0 { + if v.ContentLanguage != nil { locationName := "Content-Language" encoder.SetHeader(locationName).String(*v.ContentLanguage) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -756,22 +756,22 @@ func awsRestxml_serializeOpHttpBindingsCreateMultipartUploadInput(v *CreateMulti encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.Expires)) } - if v.GrantFullControl != nil && len(*v.GrantFullControl) > 0 { + if v.GrantFullControl != nil { locationName := "X-Amz-Grant-Full-Control" encoder.SetHeader(locationName).String(*v.GrantFullControl) } - if v.GrantRead != nil && len(*v.GrantRead) > 0 { + if v.GrantRead != nil { locationName := "X-Amz-Grant-Read" encoder.SetHeader(locationName).String(*v.GrantRead) } - if v.GrantReadACP != nil && len(*v.GrantReadACP) > 0 { + if v.GrantReadACP != nil { locationName := "X-Amz-Grant-Read-Acp" encoder.SetHeader(locationName).String(*v.GrantReadACP) } - if v.GrantWriteACP != nil && len(*v.GrantWriteACP) > 0 { + if v.GrantWriteACP != nil { locationName := "X-Amz-Grant-Write-Acp" encoder.SetHeader(locationName).String(*v.GrantWriteACP) } @@ -817,27 +817,27 @@ func awsRestxml_serializeOpHttpBindingsCreateMultipartUploadInput(v *CreateMulti encoder.SetHeader(locationName).String(string(v.ServerSideEncryption)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } - if v.SSEKMSEncryptionContext != nil && len(*v.SSEKMSEncryptionContext) > 0 { + if v.SSEKMSEncryptionContext != nil { locationName := "X-Amz-Server-Side-Encryption-Context" encoder.SetHeader(locationName).String(*v.SSEKMSEncryptionContext) } - if v.SSEKMSKeyId != nil && len(*v.SSEKMSKeyId) > 0 { + if v.SSEKMSKeyId != nil { locationName := "X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id" encoder.SetHeader(locationName).String(*v.SSEKMSKeyId) } @@ -847,12 +847,12 @@ func awsRestxml_serializeOpHttpBindingsCreateMultipartUploadInput(v *CreateMulti encoder.SetHeader(locationName).String(string(v.StorageClass)) } - if v.Tagging != nil && len(*v.Tagging) > 0 { + if v.Tagging != nil { locationName := "X-Amz-Tagging" encoder.SetHeader(locationName).String(*v.Tagging) } - if v.WebsiteRedirectLocation != nil && len(*v.WebsiteRedirectLocation) > 0 { + if v.WebsiteRedirectLocation != nil { locationName := "X-Amz-Website-Redirect-Location" encoder.SetHeader(locationName).String(*v.WebsiteRedirectLocation) } @@ -934,12 +934,12 @@ func awsRestxml_serializeOpHttpBindingsCreateSessionInput(v *CreateSessionInput, encoder.SetHeader(locationName).String(string(v.SessionMode)) } - if v.SSEKMSEncryptionContext != nil && len(*v.SSEKMSEncryptionContext) > 0 { + if v.SSEKMSEncryptionContext != nil { locationName := "X-Amz-Server-Side-Encryption-Context" encoder.SetHeader(locationName).String(*v.SSEKMSEncryptionContext) } - if v.SSEKMSKeyId != nil && len(*v.SSEKMSKeyId) > 0 { + if v.SSEKMSKeyId != nil { locationName := "X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id" encoder.SetHeader(locationName).String(*v.SSEKMSKeyId) } @@ -1006,7 +1006,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketInput(v *DeleteBucketInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1073,7 +1073,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketAnalyticsConfigurationInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1144,7 +1144,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketCorsInput(v *DeleteBucketCors return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1211,7 +1211,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketEncryptionInput(v *DeleteBuck return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1344,7 +1344,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketInventoryConfigurationInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1415,7 +1415,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketLifecycleInput(v *DeleteBucke return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1482,7 +1482,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketMetricsConfigurationInput(v * return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1553,7 +1553,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketOwnershipControlsInput(v *Del return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1620,7 +1620,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketPolicyInput(v *DeleteBucketPo return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1687,7 +1687,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketReplicationInput(v *DeleteBuc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1754,7 +1754,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketTaggingInput(v *DeleteBucketT return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1821,7 +1821,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketWebsiteInput(v *DeleteBucketW return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1893,7 +1893,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteObjectInput(v *DeleteObjectInput, e encoder.SetHeader(locationName).Boolean(*v.BypassGovernanceRetention) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -1907,7 +1907,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteObjectInput(v *DeleteObjectInput, e } } - if v.MFA != nil && len(*v.MFA) > 0 { + if v.MFA != nil { locationName := "X-Amz-Mfa" encoder.SetHeader(locationName).String(*v.MFA) } @@ -2017,12 +2017,12 @@ func awsRestxml_serializeOpHttpBindingsDeleteObjectsInput(v *DeleteObjectsInput, encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.MFA != nil && len(*v.MFA) > 0 { + if v.MFA != nil { locationName := "X-Amz-Mfa" encoder.SetHeader(locationName).String(*v.MFA) } @@ -2094,7 +2094,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteObjectTaggingInput(v *DeleteObjectT return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2174,7 +2174,7 @@ func awsRestxml_serializeOpHttpBindingsDeletePublicAccessBlockInput(v *DeletePub return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2241,7 +2241,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketAccelerateConfigurationInput(v * return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2313,7 +2313,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketAclInput(v *GetBucketAclInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2380,7 +2380,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketAnalyticsConfigurationInput(v *G return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2451,7 +2451,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketCorsInput(v *GetBucketCorsInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2518,7 +2518,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketEncryptionInput(v *GetBucketEncr return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2651,7 +2651,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketInventoryConfigurationInput(v *G return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2722,7 +2722,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketLifecycleConfigurationInput(v *G return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2789,7 +2789,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketLocationInput(v *GetBucketLocati return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2856,7 +2856,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketLoggingInput(v *GetBucketLogging return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2923,7 +2923,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketMetricsConfigurationInput(v *Get return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -2994,7 +2994,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketNotificationConfigurationInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3061,7 +3061,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketOwnershipControlsInput(v *GetBuc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3128,7 +3128,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketPolicyInput(v *GetBucketPolicyIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3195,7 +3195,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketPolicyStatusInput(v *GetBucketPo return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3262,7 +3262,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketReplicationInput(v *GetBucketRep return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3329,7 +3329,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketRequestPaymentInput(v *GetBucket return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3396,7 +3396,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketTaggingInput(v *GetBucketTagging return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3463,7 +3463,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketVersioningInput(v *GetBucketVers return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3530,7 +3530,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketWebsiteInput(v *GetBucketWebsite return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3602,12 +3602,12 @@ func awsRestxml_serializeOpHttpBindingsGetObjectInput(v *GetObjectInput, encoder encoder.SetHeader(locationName).String(string(v.ChecksumMode)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -3617,7 +3617,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectInput(v *GetObjectInput, encoder encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.IfModifiedSince)) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } @@ -3640,7 +3640,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectInput(v *GetObjectInput, encoder encoder.SetQuery("partNumber").Integer(*v.PartNumber) } - if v.Range != nil && len(*v.Range) > 0 { + if v.Range != nil { locationName := "Range" encoder.SetHeader(locationName).String(*v.Range) } @@ -3674,17 +3674,17 @@ func awsRestxml_serializeOpHttpBindingsGetObjectInput(v *GetObjectInput, encoder encoder.SetQuery("response-expires").String(smithytime.FormatHTTPDate(*v.ResponseExpires)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } @@ -3755,7 +3755,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectAclInput(v *GetObjectAclInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3840,7 +3840,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectAttributesInput(v *GetObjectAttr return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -3861,6 +3861,9 @@ func awsRestxml_serializeOpHttpBindingsGetObjectAttributesInput(v *GetObjectAttr if v.ObjectAttributes != nil { locationName := "X-Amz-Object-Attributes" + if len(v.ObjectAttributes) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.ObjectAttributes { if len(v.ObjectAttributes[i]) > 0 { escaped := string(v.ObjectAttributes[i]) @@ -3873,7 +3876,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectAttributesInput(v *GetObjectAttr } } - if v.PartNumberMarker != nil && len(*v.PartNumberMarker) > 0 { + if v.PartNumberMarker != nil { locationName := "X-Amz-Part-Number-Marker" encoder.SetHeader(locationName).String(*v.PartNumberMarker) } @@ -3883,17 +3886,17 @@ func awsRestxml_serializeOpHttpBindingsGetObjectAttributesInput(v *GetObjectAttr encoder.SetHeader(locationName).String(string(v.RequestPayer)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } @@ -3964,7 +3967,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectLegalHoldInput(v *GetObjectLegal return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4049,7 +4052,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectLockConfigurationInput(v *GetObj return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4116,7 +4119,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectRetentionInput(v *GetObjectReten return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4201,7 +4204,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectTaggingInput(v *GetObjectTagging return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4286,7 +4289,7 @@ func awsRestxml_serializeOpHttpBindingsGetObjectTorrentInput(v *GetObjectTorrent return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4367,7 +4370,7 @@ func awsRestxml_serializeOpHttpBindingsGetPublicAccessBlockInput(v *GetPublicAcc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4434,7 +4437,7 @@ func awsRestxml_serializeOpHttpBindingsHeadBucketInput(v *HeadBucketInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4506,12 +4509,12 @@ func awsRestxml_serializeOpHttpBindingsHeadObjectInput(v *HeadObjectInput, encod encoder.SetHeader(locationName).String(string(v.ChecksumMode)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.IfMatch != nil && len(*v.IfMatch) > 0 { + if v.IfMatch != nil { locationName := "If-Match" encoder.SetHeader(locationName).String(*v.IfMatch) } @@ -4521,7 +4524,7 @@ func awsRestxml_serializeOpHttpBindingsHeadObjectInput(v *HeadObjectInput, encod encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.IfModifiedSince)) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } @@ -4544,7 +4547,7 @@ func awsRestxml_serializeOpHttpBindingsHeadObjectInput(v *HeadObjectInput, encod encoder.SetQuery("partNumber").Integer(*v.PartNumber) } - if v.Range != nil && len(*v.Range) > 0 { + if v.Range != nil { locationName := "Range" encoder.SetHeader(locationName).String(*v.Range) } @@ -4578,17 +4581,17 @@ func awsRestxml_serializeOpHttpBindingsHeadObjectInput(v *HeadObjectInput, encod encoder.SetQuery("response-expires").String(smithytime.FormatHTTPDate(*v.ResponseExpires)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } @@ -4663,7 +4666,7 @@ func awsRestxml_serializeOpHttpBindingsListBucketAnalyticsConfigurationsInput(v encoder.SetQuery("continuation-token").String(*v.ContinuationToken) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4800,7 +4803,7 @@ func awsRestxml_serializeOpHttpBindingsListBucketInventoryConfigurationsInput(v encoder.SetQuery("continuation-token").String(*v.ContinuationToken) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -4871,7 +4874,7 @@ func awsRestxml_serializeOpHttpBindingsListBucketMetricsConfigurationsInput(v *L encoder.SetQuery("continuation-token").String(*v.ContinuationToken) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -5086,7 +5089,7 @@ func awsRestxml_serializeOpHttpBindingsListMultipartUploadsInput(v *ListMultipar encoder.SetQuery("encoding-type").String(string(v.EncodingType)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -5182,7 +5185,7 @@ func awsRestxml_serializeOpHttpBindingsListObjectsInput(v *ListObjectsInput, enc encoder.SetQuery("encoding-type").String(string(v.EncodingType)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -5197,6 +5200,9 @@ func awsRestxml_serializeOpHttpBindingsListObjectsInput(v *ListObjectsInput, enc if v.OptionalObjectAttributes != nil { locationName := "X-Amz-Optional-Object-Attributes" + if len(v.OptionalObjectAttributes) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.OptionalObjectAttributes { if len(v.OptionalObjectAttributes[i]) > 0 { escaped := string(v.OptionalObjectAttributes[i]) @@ -5292,7 +5298,7 @@ func awsRestxml_serializeOpHttpBindingsListObjectsV2Input(v *ListObjectsV2Input, encoder.SetQuery("encoding-type").String(string(v.EncodingType)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -5307,6 +5313,9 @@ func awsRestxml_serializeOpHttpBindingsListObjectsV2Input(v *ListObjectsV2Input, if v.OptionalObjectAttributes != nil { locationName := "X-Amz-Optional-Object-Attributes" + if len(v.OptionalObjectAttributes) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.OptionalObjectAttributes { if len(v.OptionalObjectAttributes[i]) > 0 { escaped := string(v.OptionalObjectAttributes[i]) @@ -5402,7 +5411,7 @@ func awsRestxml_serializeOpHttpBindingsListObjectVersionsInput(v *ListObjectVers encoder.SetQuery("encoding-type").String(string(v.EncodingType)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -5417,6 +5426,9 @@ func awsRestxml_serializeOpHttpBindingsListObjectVersionsInput(v *ListObjectVers if v.OptionalObjectAttributes != nil { locationName := "X-Amz-Optional-Object-Attributes" + if len(v.OptionalObjectAttributes) == 0 { + encoder.AddHeader(locationName).String("") + } for i := range v.OptionalObjectAttributes { if len(v.OptionalObjectAttributes[i]) > 0 { escaped := string(v.OptionalObjectAttributes[i]) @@ -5504,7 +5516,7 @@ func awsRestxml_serializeOpHttpBindingsListPartsInput(v *ListPartsInput, encoder return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -5531,17 +5543,17 @@ func awsRestxml_serializeOpHttpBindingsListPartsInput(v *ListPartsInput, encoder encoder.SetHeader(locationName).String(string(v.RequestPayer)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } @@ -5641,7 +5653,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketAccelerateConfigurationInput(v * encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -5742,37 +5754,37 @@ func awsRestxml_serializeOpHttpBindingsPutBucketAclInput(v *PutBucketAclInput, e encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.GrantFullControl != nil && len(*v.GrantFullControl) > 0 { + if v.GrantFullControl != nil { locationName := "X-Amz-Grant-Full-Control" encoder.SetHeader(locationName).String(*v.GrantFullControl) } - if v.GrantRead != nil && len(*v.GrantRead) > 0 { + if v.GrantRead != nil { locationName := "X-Amz-Grant-Read" encoder.SetHeader(locationName).String(*v.GrantRead) } - if v.GrantReadACP != nil && len(*v.GrantReadACP) > 0 { + if v.GrantReadACP != nil { locationName := "X-Amz-Grant-Read-Acp" encoder.SetHeader(locationName).String(*v.GrantReadACP) } - if v.GrantWrite != nil && len(*v.GrantWrite) > 0 { + if v.GrantWrite != nil { locationName := "X-Amz-Grant-Write" encoder.SetHeader(locationName).String(*v.GrantWrite) } - if v.GrantWriteACP != nil && len(*v.GrantWriteACP) > 0 { + if v.GrantWriteACP != nil { locationName := "X-Amz-Grant-Write-Acp" encoder.SetHeader(locationName).String(*v.GrantWriteACP) } @@ -5863,7 +5875,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketAnalyticsConfigurationInput(v *P return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -5963,12 +5975,12 @@ func awsRestxml_serializeOpHttpBindingsPutBucketCorsInput(v *PutBucketCorsInput, encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6064,12 +6076,12 @@ func awsRestxml_serializeOpHttpBindingsPutBucketEncryptionInput(v *PutBucketEncr encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6250,7 +6262,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketInventoryConfigurationInput(v *P return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6350,7 +6362,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketLifecycleConfigurationInput(v *P encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6451,12 +6463,12 @@ func awsRestxml_serializeOpHttpBindingsPutBucketLoggingInput(v *PutBucketLogging encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6547,7 +6559,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketMetricsConfigurationInput(v *Put return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6642,7 +6654,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketNotificationConfigurationInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6738,12 +6750,12 @@ func awsRestxml_serializeOpHttpBindingsPutBucketOwnershipControlsInput(v *PutBuc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6832,12 +6844,12 @@ func awsRestxml_serializeOpHttpBindingsPutBucketPolicyInput(v *PutBucketPolicyIn encoder.SetHeader(locationName).Boolean(*v.ConfirmRemoveSelfBucketAccess) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -6933,17 +6945,17 @@ func awsRestxml_serializeOpHttpBindingsPutBucketReplicationInput(v *PutBucketRep encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.Token != nil && len(*v.Token) > 0 { + if v.Token != nil { locationName := "X-Amz-Bucket-Object-Lock-Token" encoder.SetHeader(locationName).String(*v.Token) } @@ -7039,12 +7051,12 @@ func awsRestxml_serializeOpHttpBindingsPutBucketRequestPaymentInput(v *PutBucket encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -7140,12 +7152,12 @@ func awsRestxml_serializeOpHttpBindingsPutBucketTaggingInput(v *PutBucketTagging encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -7241,17 +7253,17 @@ func awsRestxml_serializeOpHttpBindingsPutBucketVersioningInput(v *PutBucketVers encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.MFA != nil && len(*v.MFA) > 0 { + if v.MFA != nil { locationName := "X-Amz-Mfa" encoder.SetHeader(locationName).String(*v.MFA) } @@ -7347,12 +7359,12 @@ func awsRestxml_serializeOpHttpBindingsPutBucketWebsiteInput(v *PutBucketWebsite encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -7441,7 +7453,7 @@ func awsRestxml_serializeOpHttpBindingsPutObjectInput(v *PutObjectInput, encoder encoder.SetHeader(locationName).Boolean(*v.BucketKeyEnabled) } - if v.CacheControl != nil && len(*v.CacheControl) > 0 { + if v.CacheControl != nil { locationName := "Cache-Control" encoder.SetHeader(locationName).String(*v.CacheControl) } @@ -7451,37 +7463,37 @@ func awsRestxml_serializeOpHttpBindingsPutObjectInput(v *PutObjectInput, encoder encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ChecksumCRC32 != nil && len(*v.ChecksumCRC32) > 0 { + if v.ChecksumCRC32 != nil { locationName := "X-Amz-Checksum-Crc32" encoder.SetHeader(locationName).String(*v.ChecksumCRC32) } - if v.ChecksumCRC32C != nil && len(*v.ChecksumCRC32C) > 0 { + if v.ChecksumCRC32C != nil { locationName := "X-Amz-Checksum-Crc32c" encoder.SetHeader(locationName).String(*v.ChecksumCRC32C) } - if v.ChecksumSHA1 != nil && len(*v.ChecksumSHA1) > 0 { + if v.ChecksumSHA1 != nil { locationName := "X-Amz-Checksum-Sha1" encoder.SetHeader(locationName).String(*v.ChecksumSHA1) } - if v.ChecksumSHA256 != nil && len(*v.ChecksumSHA256) > 0 { + if v.ChecksumSHA256 != nil { locationName := "X-Amz-Checksum-Sha256" encoder.SetHeader(locationName).String(*v.ChecksumSHA256) } - if v.ContentDisposition != nil && len(*v.ContentDisposition) > 0 { + if v.ContentDisposition != nil { locationName := "Content-Disposition" encoder.SetHeader(locationName).String(*v.ContentDisposition) } - if v.ContentEncoding != nil && len(*v.ContentEncoding) > 0 { + if v.ContentEncoding != nil { locationName := "Content-Encoding" encoder.SetHeader(locationName).String(*v.ContentEncoding) } - if v.ContentLanguage != nil && len(*v.ContentLanguage) > 0 { + if v.ContentLanguage != nil { locationName := "Content-Language" encoder.SetHeader(locationName).String(*v.ContentLanguage) } @@ -7491,17 +7503,17 @@ func awsRestxml_serializeOpHttpBindingsPutObjectInput(v *PutObjectInput, encoder encoder.SetHeader(locationName).Long(*v.ContentLength) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -7511,27 +7523,27 @@ func awsRestxml_serializeOpHttpBindingsPutObjectInput(v *PutObjectInput, encoder encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.Expires)) } - if v.GrantFullControl != nil && len(*v.GrantFullControl) > 0 { + if v.GrantFullControl != nil { locationName := "X-Amz-Grant-Full-Control" encoder.SetHeader(locationName).String(*v.GrantFullControl) } - if v.GrantRead != nil && len(*v.GrantRead) > 0 { + if v.GrantRead != nil { locationName := "X-Amz-Grant-Read" encoder.SetHeader(locationName).String(*v.GrantRead) } - if v.GrantReadACP != nil && len(*v.GrantReadACP) > 0 { + if v.GrantReadACP != nil { locationName := "X-Amz-Grant-Read-Acp" encoder.SetHeader(locationName).String(*v.GrantReadACP) } - if v.GrantWriteACP != nil && len(*v.GrantWriteACP) > 0 { + if v.GrantWriteACP != nil { locationName := "X-Amz-Grant-Write-Acp" encoder.SetHeader(locationName).String(*v.GrantWriteACP) } - if v.IfNoneMatch != nil && len(*v.IfNoneMatch) > 0 { + if v.IfNoneMatch != nil { locationName := "If-None-Match" encoder.SetHeader(locationName).String(*v.IfNoneMatch) } @@ -7577,27 +7589,27 @@ func awsRestxml_serializeOpHttpBindingsPutObjectInput(v *PutObjectInput, encoder encoder.SetHeader(locationName).String(string(v.ServerSideEncryption)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } - if v.SSEKMSEncryptionContext != nil && len(*v.SSEKMSEncryptionContext) > 0 { + if v.SSEKMSEncryptionContext != nil { locationName := "X-Amz-Server-Side-Encryption-Context" encoder.SetHeader(locationName).String(*v.SSEKMSEncryptionContext) } - if v.SSEKMSKeyId != nil && len(*v.SSEKMSKeyId) > 0 { + if v.SSEKMSKeyId != nil { locationName := "X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id" encoder.SetHeader(locationName).String(*v.SSEKMSKeyId) } @@ -7607,12 +7619,12 @@ func awsRestxml_serializeOpHttpBindingsPutObjectInput(v *PutObjectInput, encoder encoder.SetHeader(locationName).String(string(v.StorageClass)) } - if v.Tagging != nil && len(*v.Tagging) > 0 { + if v.Tagging != nil { locationName := "X-Amz-Tagging" encoder.SetHeader(locationName).String(*v.Tagging) } - if v.WebsiteRedirectLocation != nil && len(*v.WebsiteRedirectLocation) > 0 { + if v.WebsiteRedirectLocation != nil { locationName := "X-Amz-Website-Redirect-Location" encoder.SetHeader(locationName).String(*v.WebsiteRedirectLocation) } @@ -7713,37 +7725,37 @@ func awsRestxml_serializeOpHttpBindingsPutObjectAclInput(v *PutObjectAclInput, e encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.GrantFullControl != nil && len(*v.GrantFullControl) > 0 { + if v.GrantFullControl != nil { locationName := "X-Amz-Grant-Full-Control" encoder.SetHeader(locationName).String(*v.GrantFullControl) } - if v.GrantRead != nil && len(*v.GrantRead) > 0 { + if v.GrantRead != nil { locationName := "X-Amz-Grant-Read" encoder.SetHeader(locationName).String(*v.GrantRead) } - if v.GrantReadACP != nil && len(*v.GrantReadACP) > 0 { + if v.GrantReadACP != nil { locationName := "X-Amz-Grant-Read-Acp" encoder.SetHeader(locationName).String(*v.GrantReadACP) } - if v.GrantWrite != nil && len(*v.GrantWrite) > 0 { + if v.GrantWrite != nil { locationName := "X-Amz-Grant-Write" encoder.SetHeader(locationName).String(*v.GrantWrite) } - if v.GrantWriteACP != nil && len(*v.GrantWriteACP) > 0 { + if v.GrantWriteACP != nil { locationName := "X-Amz-Grant-Write-Acp" encoder.SetHeader(locationName).String(*v.GrantWriteACP) } @@ -7857,12 +7869,12 @@ func awsRestxml_serializeOpHttpBindingsPutObjectLegalHoldInput(v *PutObjectLegal encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -7976,12 +7988,12 @@ func awsRestxml_serializeOpHttpBindingsPutObjectLockConfigurationInput(v *PutObj encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -7991,7 +8003,7 @@ func awsRestxml_serializeOpHttpBindingsPutObjectLockConfigurationInput(v *PutObj encoder.SetHeader(locationName).String(string(v.RequestPayer)) } - if v.Token != nil && len(*v.Token) > 0 { + if v.Token != nil { locationName := "X-Amz-Bucket-Object-Lock-Token" encoder.SetHeader(locationName).String(*v.Token) } @@ -8092,12 +8104,12 @@ func awsRestxml_serializeOpHttpBindingsPutObjectRetentionInput(v *PutObjectReten encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -8211,12 +8223,12 @@ func awsRestxml_serializeOpHttpBindingsPutObjectTaggingInput(v *PutObjectTagging encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -8330,12 +8342,12 @@ func awsRestxml_serializeOpHttpBindingsPutPublicAccessBlockInput(v *PutPublicAcc encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -8431,7 +8443,7 @@ func awsRestxml_serializeOpHttpBindingsRestoreObjectInput(v *RestoreObjectInput, encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -8534,7 +8546,7 @@ func awsRestxml_serializeOpHttpBindingsSelectObjectContentInput(v *SelectObjectC return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -8548,17 +8560,17 @@ func awsRestxml_serializeOpHttpBindingsSelectObjectContentInput(v *SelectObjectC } } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } @@ -8721,22 +8733,22 @@ func awsRestxml_serializeOpHttpBindingsUploadPartInput(v *UploadPartInput, encod encoder.SetHeader(locationName).String(string(v.ChecksumAlgorithm)) } - if v.ChecksumCRC32 != nil && len(*v.ChecksumCRC32) > 0 { + if v.ChecksumCRC32 != nil { locationName := "X-Amz-Checksum-Crc32" encoder.SetHeader(locationName).String(*v.ChecksumCRC32) } - if v.ChecksumCRC32C != nil && len(*v.ChecksumCRC32C) > 0 { + if v.ChecksumCRC32C != nil { locationName := "X-Amz-Checksum-Crc32c" encoder.SetHeader(locationName).String(*v.ChecksumCRC32C) } - if v.ChecksumSHA1 != nil && len(*v.ChecksumSHA1) > 0 { + if v.ChecksumSHA1 != nil { locationName := "X-Amz-Checksum-Sha1" encoder.SetHeader(locationName).String(*v.ChecksumSHA1) } - if v.ChecksumSHA256 != nil && len(*v.ChecksumSHA256) > 0 { + if v.ChecksumSHA256 != nil { locationName := "X-Amz-Checksum-Sha256" encoder.SetHeader(locationName).String(*v.ChecksumSHA256) } @@ -8746,12 +8758,12 @@ func awsRestxml_serializeOpHttpBindingsUploadPartInput(v *UploadPartInput, encod encoder.SetHeader(locationName).Long(*v.ContentLength) } - if v.ContentMD5 != nil && len(*v.ContentMD5) > 0 { + if v.ContentMD5 != nil { locationName := "Content-Md5" encoder.SetHeader(locationName).String(*v.ContentMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } @@ -8774,17 +8786,17 @@ func awsRestxml_serializeOpHttpBindingsUploadPartInput(v *UploadPartInput, encod encoder.SetHeader(locationName).String(string(v.RequestPayer)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } @@ -8855,12 +8867,12 @@ func awsRestxml_serializeOpHttpBindingsUploadPartCopyInput(v *UploadPartCopyInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.CopySource != nil && len(*v.CopySource) > 0 { + if v.CopySource != nil { locationName := "X-Amz-Copy-Source" encoder.SetHeader(locationName).String(*v.CopySource) } - if v.CopySourceIfMatch != nil && len(*v.CopySourceIfMatch) > 0 { + if v.CopySourceIfMatch != nil { locationName := "X-Amz-Copy-Source-If-Match" encoder.SetHeader(locationName).String(*v.CopySourceIfMatch) } @@ -8870,7 +8882,7 @@ func awsRestxml_serializeOpHttpBindingsUploadPartCopyInput(v *UploadPartCopyInpu encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.CopySourceIfModifiedSince)) } - if v.CopySourceIfNoneMatch != nil && len(*v.CopySourceIfNoneMatch) > 0 { + if v.CopySourceIfNoneMatch != nil { locationName := "X-Amz-Copy-Source-If-None-Match" encoder.SetHeader(locationName).String(*v.CopySourceIfNoneMatch) } @@ -8880,32 +8892,32 @@ func awsRestxml_serializeOpHttpBindingsUploadPartCopyInput(v *UploadPartCopyInpu encoder.SetHeader(locationName).String(smithytime.FormatHTTPDate(*v.CopySourceIfUnmodifiedSince)) } - if v.CopySourceRange != nil && len(*v.CopySourceRange) > 0 { + if v.CopySourceRange != nil { locationName := "X-Amz-Copy-Source-Range" encoder.SetHeader(locationName).String(*v.CopySourceRange) } - if v.CopySourceSSECustomerAlgorithm != nil && len(*v.CopySourceSSECustomerAlgorithm) > 0 { + if v.CopySourceSSECustomerAlgorithm != nil { locationName := "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.CopySourceSSECustomerAlgorithm) } - if v.CopySourceSSECustomerKey != nil && len(*v.CopySourceSSECustomerKey) > 0 { + if v.CopySourceSSECustomerKey != nil { locationName := "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.CopySourceSSECustomerKey) } - if v.CopySourceSSECustomerKeyMD5 != nil && len(*v.CopySourceSSECustomerKeyMD5) > 0 { + if v.CopySourceSSECustomerKeyMD5 != nil { locationName := "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.CopySourceSSECustomerKeyMD5) } - if v.ExpectedBucketOwner != nil && len(*v.ExpectedBucketOwner) > 0 { + if v.ExpectedBucketOwner != nil { locationName := "X-Amz-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedBucketOwner) } - if v.ExpectedSourceBucketOwner != nil && len(*v.ExpectedSourceBucketOwner) > 0 { + if v.ExpectedSourceBucketOwner != nil { locationName := "X-Amz-Source-Expected-Bucket-Owner" encoder.SetHeader(locationName).String(*v.ExpectedSourceBucketOwner) } @@ -8928,17 +8940,17 @@ func awsRestxml_serializeOpHttpBindingsUploadPartCopyInput(v *UploadPartCopyInpu encoder.SetHeader(locationName).String(string(v.RequestPayer)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKey != nil && len(*v.SSECustomerKey) > 0 { + if v.SSECustomerKey != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key" encoder.SetHeader(locationName).String(*v.SSECustomerKey) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } @@ -9021,7 +9033,7 @@ func awsRestxml_serializeOpHttpBindingsWriteGetObjectResponseInput(v *WriteGetOb return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AcceptRanges != nil && len(*v.AcceptRanges) > 0 { + if v.AcceptRanges != nil { locationName := "X-Amz-Fwd-Header-Accept-Ranges" encoder.SetHeader(locationName).String(*v.AcceptRanges) } @@ -9031,42 +9043,42 @@ func awsRestxml_serializeOpHttpBindingsWriteGetObjectResponseInput(v *WriteGetOb encoder.SetHeader(locationName).Boolean(*v.BucketKeyEnabled) } - if v.CacheControl != nil && len(*v.CacheControl) > 0 { + if v.CacheControl != nil { locationName := "X-Amz-Fwd-Header-Cache-Control" encoder.SetHeader(locationName).String(*v.CacheControl) } - if v.ChecksumCRC32 != nil && len(*v.ChecksumCRC32) > 0 { + if v.ChecksumCRC32 != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Checksum-Crc32" encoder.SetHeader(locationName).String(*v.ChecksumCRC32) } - if v.ChecksumCRC32C != nil && len(*v.ChecksumCRC32C) > 0 { + if v.ChecksumCRC32C != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Checksum-Crc32c" encoder.SetHeader(locationName).String(*v.ChecksumCRC32C) } - if v.ChecksumSHA1 != nil && len(*v.ChecksumSHA1) > 0 { + if v.ChecksumSHA1 != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Checksum-Sha1" encoder.SetHeader(locationName).String(*v.ChecksumSHA1) } - if v.ChecksumSHA256 != nil && len(*v.ChecksumSHA256) > 0 { + if v.ChecksumSHA256 != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Checksum-Sha256" encoder.SetHeader(locationName).String(*v.ChecksumSHA256) } - if v.ContentDisposition != nil && len(*v.ContentDisposition) > 0 { + if v.ContentDisposition != nil { locationName := "X-Amz-Fwd-Header-Content-Disposition" encoder.SetHeader(locationName).String(*v.ContentDisposition) } - if v.ContentEncoding != nil && len(*v.ContentEncoding) > 0 { + if v.ContentEncoding != nil { locationName := "X-Amz-Fwd-Header-Content-Encoding" encoder.SetHeader(locationName).String(*v.ContentEncoding) } - if v.ContentLanguage != nil && len(*v.ContentLanguage) > 0 { + if v.ContentLanguage != nil { locationName := "X-Amz-Fwd-Header-Content-Language" encoder.SetHeader(locationName).String(*v.ContentLanguage) } @@ -9076,12 +9088,12 @@ func awsRestxml_serializeOpHttpBindingsWriteGetObjectResponseInput(v *WriteGetOb encoder.SetHeader(locationName).Long(*v.ContentLength) } - if v.ContentRange != nil && len(*v.ContentRange) > 0 { + if v.ContentRange != nil { locationName := "X-Amz-Fwd-Header-Content-Range" encoder.SetHeader(locationName).String(*v.ContentRange) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "X-Amz-Fwd-Header-Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } @@ -9091,22 +9103,22 @@ func awsRestxml_serializeOpHttpBindingsWriteGetObjectResponseInput(v *WriteGetOb encoder.SetHeader(locationName).Boolean(*v.DeleteMarker) } - if v.ErrorCode != nil && len(*v.ErrorCode) > 0 { + if v.ErrorCode != nil { locationName := "X-Amz-Fwd-Error-Code" encoder.SetHeader(locationName).String(*v.ErrorCode) } - if v.ErrorMessage != nil && len(*v.ErrorMessage) > 0 { + if v.ErrorMessage != nil { locationName := "X-Amz-Fwd-Error-Message" encoder.SetHeader(locationName).String(*v.ErrorMessage) } - if v.ETag != nil && len(*v.ETag) > 0 { + if v.ETag != nil { locationName := "X-Amz-Fwd-Header-Etag" encoder.SetHeader(locationName).String(*v.ETag) } - if v.Expiration != nil && len(*v.Expiration) > 0 { + if v.Expiration != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Expiration" encoder.SetHeader(locationName).String(*v.Expiration) } @@ -9163,17 +9175,17 @@ func awsRestxml_serializeOpHttpBindingsWriteGetObjectResponseInput(v *WriteGetOb encoder.SetHeader(locationName).String(string(v.RequestCharged)) } - if v.RequestRoute != nil && len(*v.RequestRoute) > 0 { + if v.RequestRoute != nil { locationName := "X-Amz-Request-Route" encoder.SetHeader(locationName).String(*v.RequestRoute) } - if v.RequestToken != nil && len(*v.RequestToken) > 0 { + if v.RequestToken != nil { locationName := "X-Amz-Request-Token" encoder.SetHeader(locationName).String(*v.RequestToken) } - if v.Restore != nil && len(*v.Restore) > 0 { + if v.Restore != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Restore" encoder.SetHeader(locationName).String(*v.Restore) } @@ -9183,17 +9195,17 @@ func awsRestxml_serializeOpHttpBindingsWriteGetObjectResponseInput(v *WriteGetOb encoder.SetHeader(locationName).String(string(v.ServerSideEncryption)) } - if v.SSECustomerAlgorithm != nil && len(*v.SSECustomerAlgorithm) > 0 { + if v.SSECustomerAlgorithm != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Server-Side-Encryption-Customer-Algorithm" encoder.SetHeader(locationName).String(*v.SSECustomerAlgorithm) } - if v.SSECustomerKeyMD5 != nil && len(*v.SSECustomerKeyMD5) > 0 { + if v.SSECustomerKeyMD5 != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Server-Side-Encryption-Customer-Key-Md5" encoder.SetHeader(locationName).String(*v.SSECustomerKeyMD5) } - if v.SSEKMSKeyId != nil && len(*v.SSEKMSKeyId) > 0 { + if v.SSEKMSKeyId != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id" encoder.SetHeader(locationName).String(*v.SSEKMSKeyId) } @@ -9213,7 +9225,7 @@ func awsRestxml_serializeOpHttpBindingsWriteGetObjectResponseInput(v *WriteGetOb encoder.SetHeader(locationName).Integer(*v.TagCount) } - if v.VersionId != nil && len(*v.VersionId) > 0 { + if v.VersionId != nil { locationName := "X-Amz-Fwd-Header-X-Amz-Version-Id" encoder.SetHeader(locationName).String(*v.VersionId) } diff --git a/service/s3control/serializers.go b/service/s3control/serializers.go index 71d3ef545f7..4a6361d5662 100644 --- a/service/s3control/serializers.go +++ b/service/s3control/serializers.go @@ -94,7 +94,7 @@ func awsRestxml_serializeOpHttpBindingsAssociateAccessGrantsIdentityCenterInput( return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -195,7 +195,7 @@ func awsRestxml_serializeOpHttpBindingsCreateAccessGrantInput(v *CreateAccessGra return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -368,7 +368,7 @@ func awsRestxml_serializeOpHttpBindingsCreateAccessGrantsInstanceInput(v *Create return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -482,7 +482,7 @@ func awsRestxml_serializeOpHttpBindingsCreateAccessGrantsLocationInput(v *Create return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -607,7 +607,7 @@ func awsRestxml_serializeOpHttpBindingsCreateAccessPointInput(v *CreateAccessPoi return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -754,7 +754,7 @@ func awsRestxml_serializeOpHttpBindingsCreateAccessPointForObjectLambdaInput(v * return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -886,27 +886,27 @@ func awsRestxml_serializeOpHttpBindingsCreateBucketInput(v *CreateBucketInput, e } } - if v.GrantFullControl != nil && len(*v.GrantFullControl) > 0 { + if v.GrantFullControl != nil { locationName := "X-Amz-Grant-Full-Control" encoder.SetHeader(locationName).String(*v.GrantFullControl) } - if v.GrantRead != nil && len(*v.GrantRead) > 0 { + if v.GrantRead != nil { locationName := "X-Amz-Grant-Read" encoder.SetHeader(locationName).String(*v.GrantRead) } - if v.GrantReadACP != nil && len(*v.GrantReadACP) > 0 { + if v.GrantReadACP != nil { locationName := "X-Amz-Grant-Read-Acp" encoder.SetHeader(locationName).String(*v.GrantReadACP) } - if v.GrantWrite != nil && len(*v.GrantWrite) > 0 { + if v.GrantWrite != nil { locationName := "X-Amz-Grant-Write" encoder.SetHeader(locationName).String(*v.GrantWrite) } - if v.GrantWriteACP != nil && len(*v.GrantWriteACP) > 0 { + if v.GrantWriteACP != nil { locationName := "X-Amz-Grant-Write-Acp" encoder.SetHeader(locationName).String(*v.GrantWriteACP) } @@ -916,7 +916,7 @@ func awsRestxml_serializeOpHttpBindingsCreateBucketInput(v *CreateBucketInput, e encoder.SetHeader(locationName).Boolean(v.ObjectLockEnabledForBucket) } - if v.OutpostId != nil && len(*v.OutpostId) > 0 { + if v.OutpostId != nil { locationName := "X-Amz-Outpost-Id" encoder.SetHeader(locationName).String(*v.OutpostId) } @@ -1001,7 +1001,7 @@ func awsRestxml_serializeOpHttpBindingsCreateJobInput(v *CreateJobInput, encoder return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1211,7 +1211,7 @@ func awsRestxml_serializeOpHttpBindingsCreateMultiRegionAccessPointInput(v *Crea return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1325,7 +1325,7 @@ func awsRestxml_serializeOpHttpBindingsCreateStorageLensGroupInput(v *CreateStor return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1432,7 +1432,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteAccessGrantInput(v *DeleteAccessGra } } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1499,7 +1499,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteAccessGrantsInstanceInput(v *Delete return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1566,7 +1566,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteAccessGrantsInstanceResourcePolicyI return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1642,7 +1642,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteAccessGrantsLocationInput(v *Delete } } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1709,7 +1709,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteAccessPointInput(v *DeleteAccessPoi return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1785,7 +1785,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteAccessPointForObjectLambdaInput(v * return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1861,7 +1861,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteAccessPointPolicyInput(v *DeleteAcc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -1937,7 +1937,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteAccessPointPolicyForObjectLambdaInp return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2013,7 +2013,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketInput(v *DeleteBucketInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2089,7 +2089,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketLifecycleConfigurationInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2165,7 +2165,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketPolicyInput(v *DeleteBucketPo return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2241,7 +2241,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketReplicationInput(v *DeleteBuc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2317,7 +2317,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteBucketTaggingInput(v *DeleteBucketT return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2393,7 +2393,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteJobTaggingInput(v *DeleteJobTagging return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2487,7 +2487,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteMultiRegionAccessPointInput(v *Dele return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2583,7 +2583,7 @@ func awsRestxml_serializeOpHttpBindingsDeletePublicAccessBlockInput(v *DeletePub return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2650,7 +2650,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteStorageLensConfigurationInput(v *De return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2726,7 +2726,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteStorageLensConfigurationTaggingInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2802,7 +2802,7 @@ func awsRestxml_serializeOpHttpBindingsDeleteStorageLensGroupInput(v *DeleteStor return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2878,7 +2878,7 @@ func awsRestxml_serializeOpHttpBindingsDescribeJobInput(v *DescribeJobInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -2954,7 +2954,7 @@ func awsRestxml_serializeOpHttpBindingsDescribeMultiRegionAccessPointOperationIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3030,7 +3030,7 @@ func awsRestxml_serializeOpHttpBindingsDissociateAccessGrantsIdentityCenterInput return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3106,7 +3106,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessGrantInput(v *GetAccessGrantInpu } } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3173,7 +3173,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessGrantsInstanceInput(v *GetAccess return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3240,7 +3240,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessGrantsInstanceForPrefixInput(v * return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3311,7 +3311,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessGrantsInstanceResourcePolicyInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3387,7 +3387,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessGrantsLocationInput(v *GetAccess } } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3454,7 +3454,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessPointInput(v *GetAccessPointInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3530,7 +3530,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessPointConfigurationForObjectLambd return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3606,7 +3606,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessPointForObjectLambdaInput(v *Get return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3682,7 +3682,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessPointPolicyInput(v *GetAccessPoi return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3758,7 +3758,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessPointPolicyForObjectLambdaInput( return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3834,7 +3834,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessPointPolicyStatusInput(v *GetAcc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3910,7 +3910,7 @@ func awsRestxml_serializeOpHttpBindingsGetAccessPointPolicyStatusForObjectLambda return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -3986,7 +3986,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketInput(v *GetBucketInput, encoder return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4062,7 +4062,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketLifecycleConfigurationInput(v *G return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4138,7 +4138,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketPolicyInput(v *GetBucketPolicyIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4214,7 +4214,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketReplicationInput(v *GetBucketRep return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4290,7 +4290,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketTaggingInput(v *GetBucketTagging return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4366,7 +4366,7 @@ func awsRestxml_serializeOpHttpBindingsGetBucketVersioningInput(v *GetBucketVers return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4442,7 +4442,7 @@ func awsRestxml_serializeOpHttpBindingsGetDataAccessInput(v *GetDataAccessInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4529,7 +4529,7 @@ func awsRestxml_serializeOpHttpBindingsGetJobTaggingInput(v *GetJobTaggingInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4605,7 +4605,7 @@ func awsRestxml_serializeOpHttpBindingsGetMultiRegionAccessPointInput(v *GetMult return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4681,7 +4681,7 @@ func awsRestxml_serializeOpHttpBindingsGetMultiRegionAccessPointPolicyInput(v *G return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4757,7 +4757,7 @@ func awsRestxml_serializeOpHttpBindingsGetMultiRegionAccessPointPolicyStatusInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4833,7 +4833,7 @@ func awsRestxml_serializeOpHttpBindingsGetMultiRegionAccessPointRoutesInput(v *G return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4909,7 +4909,7 @@ func awsRestxml_serializeOpHttpBindingsGetPublicAccessBlockInput(v *GetPublicAcc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -4976,7 +4976,7 @@ func awsRestxml_serializeOpHttpBindingsGetStorageLensConfigurationInput(v *GetSt return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5052,7 +5052,7 @@ func awsRestxml_serializeOpHttpBindingsGetStorageLensConfigurationTaggingInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5128,7 +5128,7 @@ func awsRestxml_serializeOpHttpBindingsGetStorageLensGroupInput(v *GetStorageLen return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5204,7 +5204,7 @@ func awsRestxml_serializeOpHttpBindingsListAccessGrantsInput(v *ListAccessGrants return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5299,7 +5299,7 @@ func awsRestxml_serializeOpHttpBindingsListAccessGrantsInstancesInput(v *ListAcc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5374,7 +5374,7 @@ func awsRestxml_serializeOpHttpBindingsListAccessGrantsLocationsInput(v *ListAcc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5453,7 +5453,7 @@ func awsRestxml_serializeOpHttpBindingsListAccessPointsInput(v *ListAccessPoints return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5532,7 +5532,7 @@ func awsRestxml_serializeOpHttpBindingsListAccessPointsForObjectLambdaInput(v *L return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5607,7 +5607,7 @@ func awsRestxml_serializeOpHttpBindingsListCallerAccessGrantsInput(v *ListCaller return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5690,7 +5690,7 @@ func awsRestxml_serializeOpHttpBindingsListJobsInput(v *ListJobsInput, encoder * return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5771,7 +5771,7 @@ func awsRestxml_serializeOpHttpBindingsListMultiRegionAccessPointsInput(v *ListM return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5846,7 +5846,7 @@ func awsRestxml_serializeOpHttpBindingsListRegionalBucketsInput(v *ListRegionalB return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5859,7 +5859,7 @@ func awsRestxml_serializeOpHttpBindingsListRegionalBucketsInput(v *ListRegionalB encoder.SetQuery("nextToken").String(*v.NextToken) } - if v.OutpostId != nil && len(*v.OutpostId) > 0 { + if v.OutpostId != nil { locationName := "X-Amz-Outpost-Id" encoder.SetHeader(locationName).String(*v.OutpostId) } @@ -5926,7 +5926,7 @@ func awsRestxml_serializeOpHttpBindingsListStorageLensConfigurationsInput(v *Lis return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -5997,7 +5997,7 @@ func awsRestxml_serializeOpHttpBindingsListStorageLensGroupsInput(v *ListStorage return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6068,7 +6068,7 @@ func awsRestxml_serializeOpHttpBindingsListTagsForResourceInput(v *ListTagsForRe return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6162,7 +6162,7 @@ func awsRestxml_serializeOpHttpBindingsPutAccessGrantsInstanceResourcePolicyInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6274,7 +6274,7 @@ func awsRestxml_serializeOpHttpBindingsPutAccessPointConfigurationForObjectLambd return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6386,7 +6386,7 @@ func awsRestxml_serializeOpHttpBindingsPutAccessPointPolicyInput(v *PutAccessPoi return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6496,7 +6496,7 @@ func awsRestxml_serializeOpHttpBindingsPutAccessPointPolicyForObjectLambdaInput( return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6612,7 +6612,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketLifecycleConfigurationInput(v *P return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6706,7 +6706,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketPolicyInput(v *PutBucketPolicyIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6827,7 +6827,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketReplicationInput(v *PutBucketRep return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -6927,7 +6927,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketTaggingInput(v *PutBucketTagging return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7027,7 +7027,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketVersioningInput(v *PutBucketVers return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7041,7 +7041,7 @@ func awsRestxml_serializeOpHttpBindingsPutBucketVersioningInput(v *PutBucketVers } } - if v.MFA != nil && len(*v.MFA) > 0 { + if v.MFA != nil { locationName := "X-Amz-Mfa" encoder.SetHeader(locationName).String(*v.MFA) } @@ -7126,7 +7126,7 @@ func awsRestxml_serializeOpHttpBindingsPutJobTaggingInput(v *PutJobTaggingInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7238,7 +7238,7 @@ func awsRestxml_serializeOpHttpBindingsPutMultiRegionAccessPointPolicyInput(v *P return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7358,7 +7358,7 @@ func awsRestxml_serializeOpHttpBindingsPutPublicAccessBlockInput(v *PutPublicAcc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7443,7 +7443,7 @@ func awsRestxml_serializeOpHttpBindingsPutStorageLensConfigurationInput(v *PutSt return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7568,7 +7568,7 @@ func awsRestxml_serializeOpHttpBindingsPutStorageLensConfigurationTaggingInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7680,7 +7680,7 @@ func awsRestxml_serializeOpHttpBindingsSubmitMultiRegionAccessPointRoutesInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7792,7 +7792,7 @@ func awsRestxml_serializeOpHttpBindingsTagResourceInput(v *TagResourceInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7886,7 +7886,7 @@ func awsRestxml_serializeOpHttpBindingsUntagResourceInput(v *UntagResourceInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -7995,7 +7995,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateAccessGrantsLocationInput(v *Update } } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -8078,7 +8078,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateJobPriorityInput(v *UpdateJobPriori return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -8158,7 +8158,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateJobStatusInput(v *UpdateJobStatusIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } @@ -8260,7 +8260,7 @@ func awsRestxml_serializeOpHttpBindingsUpdateStorageLensGroupInput(v *UpdateStor return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccountId != nil && len(*v.AccountId) > 0 { + if v.AccountId != nil { locationName := "X-Amz-Account-Id" encoder.SetHeader(locationName).String(*v.AccountId) } diff --git a/service/sagemakerruntime/serializers.go b/service/sagemakerruntime/serializers.go index c2370d6defb..ade537097cc 100644 --- a/service/sagemakerruntime/serializers.go +++ b/service/sagemakerruntime/serializers.go @@ -84,22 +84,22 @@ func awsRestjson1_serializeOpHttpBindingsInvokeEndpointInput(v *InvokeEndpointIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accept != nil && len(*v.Accept) > 0 { + if v.Accept != nil { locationName := "Accept" encoder.SetHeader(locationName).String(*v.Accept) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.CustomAttributes != nil && len(*v.CustomAttributes) > 0 { + if v.CustomAttributes != nil { locationName := "X-Amzn-Sagemaker-Custom-Attributes" encoder.SetHeader(locationName).String(*v.CustomAttributes) } - if v.EnableExplanations != nil && len(*v.EnableExplanations) > 0 { + if v.EnableExplanations != nil { locationName := "X-Amzn-Sagemaker-Enable-Explanations" encoder.SetHeader(locationName).String(*v.EnableExplanations) } @@ -113,32 +113,32 @@ func awsRestjson1_serializeOpHttpBindingsInvokeEndpointInput(v *InvokeEndpointIn } } - if v.InferenceComponentName != nil && len(*v.InferenceComponentName) > 0 { + if v.InferenceComponentName != nil { locationName := "X-Amzn-Sagemaker-Inference-Component" encoder.SetHeader(locationName).String(*v.InferenceComponentName) } - if v.InferenceId != nil && len(*v.InferenceId) > 0 { + if v.InferenceId != nil { locationName := "X-Amzn-Sagemaker-Inference-Id" encoder.SetHeader(locationName).String(*v.InferenceId) } - if v.SessionId != nil && len(*v.SessionId) > 0 { + if v.SessionId != nil { locationName := "X-Amzn-Sagemaker-Session-Id" encoder.SetHeader(locationName).String(*v.SessionId) } - if v.TargetContainerHostname != nil && len(*v.TargetContainerHostname) > 0 { + if v.TargetContainerHostname != nil { locationName := "X-Amzn-Sagemaker-Target-Container-Hostname" encoder.SetHeader(locationName).String(*v.TargetContainerHostname) } - if v.TargetModel != nil && len(*v.TargetModel) > 0 { + if v.TargetModel != nil { locationName := "X-Amzn-Sagemaker-Target-Model" encoder.SetHeader(locationName).String(*v.TargetModel) } - if v.TargetVariant != nil && len(*v.TargetVariant) > 0 { + if v.TargetVariant != nil { locationName := "X-Amzn-Sagemaker-Target-Variant" encoder.SetHeader(locationName).String(*v.TargetVariant) } @@ -205,17 +205,17 @@ func awsRestjson1_serializeOpHttpBindingsInvokeEndpointAsyncInput(v *InvokeEndpo return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accept != nil && len(*v.Accept) > 0 { + if v.Accept != nil { locationName := "X-Amzn-Sagemaker-Accept" encoder.SetHeader(locationName).String(*v.Accept) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "X-Amzn-Sagemaker-Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.CustomAttributes != nil && len(*v.CustomAttributes) > 0 { + if v.CustomAttributes != nil { locationName := "X-Amzn-Sagemaker-Custom-Attributes" encoder.SetHeader(locationName).String(*v.CustomAttributes) } @@ -229,12 +229,12 @@ func awsRestjson1_serializeOpHttpBindingsInvokeEndpointAsyncInput(v *InvokeEndpo } } - if v.InferenceId != nil && len(*v.InferenceId) > 0 { + if v.InferenceId != nil { locationName := "X-Amzn-Sagemaker-Inference-Id" encoder.SetHeader(locationName).String(*v.InferenceId) } - if v.InputLocation != nil && len(*v.InputLocation) > 0 { + if v.InputLocation != nil { locationName := "X-Amzn-Sagemaker-Inputlocation" encoder.SetHeader(locationName).String(*v.InputLocation) } @@ -323,17 +323,17 @@ func awsRestjson1_serializeOpHttpBindingsInvokeEndpointWithResponseStreamInput(v return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.Accept != nil && len(*v.Accept) > 0 { + if v.Accept != nil { locationName := "X-Amzn-Sagemaker-Accept" encoder.SetHeader(locationName).String(*v.Accept) } - if v.ContentType != nil && len(*v.ContentType) > 0 { + if v.ContentType != nil { locationName := "Content-Type" encoder.SetHeader(locationName).String(*v.ContentType) } - if v.CustomAttributes != nil && len(*v.CustomAttributes) > 0 { + if v.CustomAttributes != nil { locationName := "X-Amzn-Sagemaker-Custom-Attributes" encoder.SetHeader(locationName).String(*v.CustomAttributes) } @@ -347,27 +347,27 @@ func awsRestjson1_serializeOpHttpBindingsInvokeEndpointWithResponseStreamInput(v } } - if v.InferenceComponentName != nil && len(*v.InferenceComponentName) > 0 { + if v.InferenceComponentName != nil { locationName := "X-Amzn-Sagemaker-Inference-Component" encoder.SetHeader(locationName).String(*v.InferenceComponentName) } - if v.InferenceId != nil && len(*v.InferenceId) > 0 { + if v.InferenceId != nil { locationName := "X-Amzn-Sagemaker-Inference-Id" encoder.SetHeader(locationName).String(*v.InferenceId) } - if v.SessionId != nil && len(*v.SessionId) > 0 { + if v.SessionId != nil { locationName := "X-Amzn-Sagemaker-Session-Id" encoder.SetHeader(locationName).String(*v.SessionId) } - if v.TargetContainerHostname != nil && len(*v.TargetContainerHostname) > 0 { + if v.TargetContainerHostname != nil { locationName := "X-Amzn-Sagemaker-Target-Container-Hostname" encoder.SetHeader(locationName).String(*v.TargetContainerHostname) } - if v.TargetVariant != nil && len(*v.TargetVariant) > 0 { + if v.TargetVariant != nil { locationName := "X-Amzn-Sagemaker-Target-Variant" encoder.SetHeader(locationName).String(*v.TargetVariant) } diff --git a/service/sso/serializers.go b/service/sso/serializers.go index 4dacb14b68b..a7a5b57de08 100644 --- a/service/sso/serializers.go +++ b/service/sso/serializers.go @@ -71,7 +71,7 @@ func awsRestjson1_serializeOpHttpBindingsGetRoleCredentialsInput(v *GetRoleCrede return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccessToken != nil && len(*v.AccessToken) > 0 { + if v.AccessToken != nil { locationName := "X-Amz-Sso_bearer_token" encoder.SetHeader(locationName).String(*v.AccessToken) } @@ -146,7 +146,7 @@ func awsRestjson1_serializeOpHttpBindingsListAccountRolesInput(v *ListAccountRol return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccessToken != nil && len(*v.AccessToken) > 0 { + if v.AccessToken != nil { locationName := "X-Amz-Sso_bearer_token" encoder.SetHeader(locationName).String(*v.AccessToken) } @@ -225,7 +225,7 @@ func awsRestjson1_serializeOpHttpBindingsListAccountsInput(v *ListAccountsInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccessToken != nil && len(*v.AccessToken) > 0 { + if v.AccessToken != nil { locationName := "X-Amz-Sso_bearer_token" encoder.SetHeader(locationName).String(*v.AccessToken) } @@ -300,7 +300,7 @@ func awsRestjson1_serializeOpHttpBindingsLogoutInput(v *LogoutInput, encoder *ht return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AccessToken != nil && len(*v.AccessToken) > 0 { + if v.AccessToken != nil { locationName := "X-Amz-Sso_bearer_token" encoder.SetHeader(locationName).String(*v.AccessToken) } diff --git a/service/transcribestreaming/serializers.go b/service/transcribestreaming/serializers.go index 4929c561516..6bd35b16d32 100644 --- a/service/transcribestreaming/serializers.go +++ b/service/transcribestreaming/serializers.go @@ -97,7 +97,7 @@ func awsRestjson1_serializeOpHttpBindingsStartCallAnalyticsStreamTranscriptionIn encoder.SetHeader(locationName).String(string(v.LanguageCode)) } - if v.LanguageModelName != nil && len(*v.LanguageModelName) > 0 { + if v.LanguageModelName != nil { locationName := "X-Amzn-Transcribe-Language-Model-Name" encoder.SetHeader(locationName).String(*v.LanguageModelName) } @@ -117,12 +117,12 @@ func awsRestjson1_serializeOpHttpBindingsStartCallAnalyticsStreamTranscriptionIn encoder.SetHeader(locationName).String(string(v.PartialResultsStability)) } - if v.PiiEntityTypes != nil && len(*v.PiiEntityTypes) > 0 { + if v.PiiEntityTypes != nil { locationName := "X-Amzn-Transcribe-Pii-Entity-Types" encoder.SetHeader(locationName).String(*v.PiiEntityTypes) } - if v.SessionId != nil && len(*v.SessionId) > 0 { + if v.SessionId != nil { locationName := "X-Amzn-Transcribe-Session-Id" encoder.SetHeader(locationName).String(*v.SessionId) } @@ -132,12 +132,12 @@ func awsRestjson1_serializeOpHttpBindingsStartCallAnalyticsStreamTranscriptionIn encoder.SetHeader(locationName).String(string(v.VocabularyFilterMethod)) } - if v.VocabularyFilterName != nil && len(*v.VocabularyFilterName) > 0 { + if v.VocabularyFilterName != nil { locationName := "X-Amzn-Transcribe-Vocabulary-Filter-Name" encoder.SetHeader(locationName).String(*v.VocabularyFilterName) } - if v.VocabularyName != nil && len(*v.VocabularyName) > 0 { + if v.VocabularyName != nil { locationName := "X-Amzn-Transcribe-Vocabulary-Name" encoder.SetHeader(locationName).String(*v.VocabularyName) } @@ -236,7 +236,7 @@ func awsRestjson1_serializeOpHttpBindingsStartMedicalStreamTranscriptionInput(v encoder.SetHeader(locationName).Integer(*v.NumberOfChannels) } - if v.SessionId != nil && len(*v.SessionId) > 0 { + if v.SessionId != nil { locationName := "X-Amzn-Transcribe-Session-Id" encoder.SetHeader(locationName).String(*v.SessionId) } @@ -256,7 +256,7 @@ func awsRestjson1_serializeOpHttpBindingsStartMedicalStreamTranscriptionInput(v encoder.SetHeader(locationName).String(string(v.Type)) } - if v.VocabularyName != nil && len(*v.VocabularyName) > 0 { + if v.VocabularyName != nil { locationName := "X-Amzn-Transcribe-Vocabulary-Name" encoder.SetHeader(locationName).String(*v.VocabularyName) } @@ -360,12 +360,12 @@ func awsRestjson1_serializeOpHttpBindingsStartStreamTranscriptionInput(v *StartS encoder.SetHeader(locationName).String(string(v.LanguageCode)) } - if v.LanguageModelName != nil && len(*v.LanguageModelName) > 0 { + if v.LanguageModelName != nil { locationName := "X-Amzn-Transcribe-Language-Model-Name" encoder.SetHeader(locationName).String(*v.LanguageModelName) } - if v.LanguageOptions != nil && len(*v.LanguageOptions) > 0 { + if v.LanguageOptions != nil { locationName := "X-Amzn-Transcribe-Language-Options" encoder.SetHeader(locationName).String(*v.LanguageOptions) } @@ -390,7 +390,7 @@ func awsRestjson1_serializeOpHttpBindingsStartStreamTranscriptionInput(v *StartS encoder.SetHeader(locationName).String(string(v.PartialResultsStability)) } - if v.PiiEntityTypes != nil && len(*v.PiiEntityTypes) > 0 { + if v.PiiEntityTypes != nil { locationName := "X-Amzn-Transcribe-Pii-Entity-Types" encoder.SetHeader(locationName).String(*v.PiiEntityTypes) } @@ -400,7 +400,7 @@ func awsRestjson1_serializeOpHttpBindingsStartStreamTranscriptionInput(v *StartS encoder.SetHeader(locationName).String(string(v.PreferredLanguage)) } - if v.SessionId != nil && len(*v.SessionId) > 0 { + if v.SessionId != nil { locationName := "X-Amzn-Transcribe-Session-Id" encoder.SetHeader(locationName).String(*v.SessionId) } @@ -415,22 +415,22 @@ func awsRestjson1_serializeOpHttpBindingsStartStreamTranscriptionInput(v *StartS encoder.SetHeader(locationName).String(string(v.VocabularyFilterMethod)) } - if v.VocabularyFilterName != nil && len(*v.VocabularyFilterName) > 0 { + if v.VocabularyFilterName != nil { locationName := "X-Amzn-Transcribe-Vocabulary-Filter-Name" encoder.SetHeader(locationName).String(*v.VocabularyFilterName) } - if v.VocabularyFilterNames != nil && len(*v.VocabularyFilterNames) > 0 { + if v.VocabularyFilterNames != nil { locationName := "X-Amzn-Transcribe-Vocabulary-Filter-Names" encoder.SetHeader(locationName).String(*v.VocabularyFilterNames) } - if v.VocabularyName != nil && len(*v.VocabularyName) > 0 { + if v.VocabularyName != nil { locationName := "X-Amzn-Transcribe-Vocabulary-Name" encoder.SetHeader(locationName).String(*v.VocabularyName) } - if v.VocabularyNames != nil && len(*v.VocabularyNames) > 0 { + if v.VocabularyNames != nil { locationName := "X-Amzn-Transcribe-Vocabulary-Names" encoder.SetHeader(locationName).String(*v.VocabularyNames) } diff --git a/service/workdocs/serializers.go b/service/workdocs/serializers.go index 857e403ebba..4d35067896e 100644 --- a/service/workdocs/serializers.go +++ b/service/workdocs/serializers.go @@ -75,7 +75,7 @@ func awsRestjson1_serializeOpHttpBindingsAbortDocumentVersionUploadInput(v *Abor return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -160,7 +160,7 @@ func awsRestjson1_serializeOpHttpBindingsActivateUserInput(v *ActivateUserInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -247,7 +247,7 @@ func awsRestjson1_serializeOpHttpBindingsAddResourcePermissionsInput(v *AddResou return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -355,7 +355,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateCommentInput(v *CreateCommentInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -483,7 +483,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateCustomMetadataInput(v *CreateCust return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -588,7 +588,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateFolderInput(v *CreateFolderInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -683,7 +683,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateLabelsInput(v *CreateLabelsInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -888,7 +888,7 @@ func awsRestjson1_serializeOpHttpBindingsCreateUserInput(v *CreateUserInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1004,7 +1004,7 @@ func awsRestjson1_serializeOpHttpBindingsDeactivateUserInput(v *DeactivateUserIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1080,7 +1080,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteCommentInput(v *DeleteCommentInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1174,7 +1174,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteCustomMetadataInput(v *DeleteCust return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1264,7 +1264,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteDocumentInput(v *DeleteDocumentIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1340,7 +1340,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteDocumentVersionInput(v *DeleteDoc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1429,7 +1429,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteFolderInput(v *DeleteFolderInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1505,7 +1505,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteFolderContentsInput(v *DeleteFold return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1581,7 +1581,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteLabelsInput(v *DeleteLabelsInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1747,7 +1747,7 @@ func awsRestjson1_serializeOpHttpBindingsDeleteUserInput(v *DeleteUserInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1827,7 +1827,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeActivitiesInput(v *DescribeActi encoder.SetQuery("activityTypes").String(*v.ActivityTypes) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -1926,7 +1926,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeCommentsInput(v *DescribeCommen return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2019,7 +2019,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeDocumentVersionsInput(v *Descri return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2111,7 +2111,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeFolderContentsInput(v *Describe return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2211,7 +2211,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeGroupsInput(v *DescribeGroupsIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2373,7 +2373,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeResourcePermissionsInput(v *Des return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2461,7 +2461,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeRootFoldersInput(v *DescribeRoo return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2536,7 +2536,7 @@ func awsRestjson1_serializeOpHttpBindingsDescribeUsersInput(v *DescribeUsersInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2639,7 +2639,7 @@ func awsRestjson1_serializeOpHttpBindingsGetCurrentUserInput(v *GetCurrentUserIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2706,7 +2706,7 @@ func awsRestjson1_serializeOpHttpBindingsGetDocumentInput(v *GetDocumentInput, e return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2786,7 +2786,7 @@ func awsRestjson1_serializeOpHttpBindingsGetDocumentPathInput(v *GetDocumentPath return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2874,7 +2874,7 @@ func awsRestjson1_serializeOpHttpBindingsGetDocumentVersionInput(v *GetDocumentV return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -2967,7 +2967,7 @@ func awsRestjson1_serializeOpHttpBindingsGetFolderInput(v *GetFolderInput, encod return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3047,7 +3047,7 @@ func awsRestjson1_serializeOpHttpBindingsGetFolderPathInput(v *GetFolderPathInpu return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3135,7 +3135,7 @@ func awsRestjson1_serializeOpHttpBindingsGetResourcesInput(v *GetResourcesInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3229,7 +3229,7 @@ func awsRestjson1_serializeOpHttpBindingsInitiateDocumentVersionUploadInput(v *I return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3338,7 +3338,7 @@ func awsRestjson1_serializeOpHttpBindingsRemoveAllResourcePermissionsInput(v *Re return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3414,7 +3414,7 @@ func awsRestjson1_serializeOpHttpBindingsRemoveResourcePermissionInput(v *Remove return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3503,7 +3503,7 @@ func awsRestjson1_serializeOpHttpBindingsRestoreDocumentVersionsInput(v *Restore return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3590,7 +3590,7 @@ func awsRestjson1_serializeOpHttpBindingsSearchResourcesInput(v *SearchResources return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3723,7 +3723,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateDocumentInput(v *UpdateDocumentIn return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3832,7 +3832,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateDocumentVersionInput(v *UpdateDoc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -3940,7 +3940,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateFolderInput(v *UpdateFolderInput, return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) } @@ -4049,7 +4049,7 @@ func awsRestjson1_serializeOpHttpBindingsUpdateUserInput(v *UpdateUserInput, enc return fmt.Errorf("unsupported serialization of nil %T", v) } - if v.AuthenticationToken != nil && len(*v.AuthenticationToken) > 0 { + if v.AuthenticationToken != nil { locationName := "Authentication" encoder.SetHeader(locationName).String(*v.AuthenticationToken) }