From d5e1e43cffeb40974001d56116c797b8e987e1d1 Mon Sep 17 00:00:00 2001 From: Bob Potter Date: Tue, 24 Nov 2015 17:00:11 -0800 Subject: [PATCH] Use a blank indentifier instead of an anonymous field for SDKShapeTraits --- aws/corehandlers/param_validator_test.go | 11 +- private/model/api/passes.go | 4 +- private/model/api/shape.go | 6 +- private/protocol/ec2query/build_test.go | 102 +- private/protocol/ec2query/unmarshal_test.go | 114 +- private/protocol/json/jsonutil/build.go | 2 +- private/protocol/json/jsonutil/unmarshal.go | 2 +- private/protocol/jsonrpc/build_test.go | 114 +- private/protocol/jsonrpc/unmarshal_test.go | 96 +- private/protocol/query/build_test.go | 210 +- private/protocol/query/unmarshal_test.go | 198 +- private/protocol/rest/build.go | 2 +- private/protocol/rest/payload.go | 4 +- private/protocol/rest/unmarshal.go | 2 +- private/protocol/restjson/build_test.go | 246 +- private/protocol/restjson/unmarshal_test.go | 156 +- private/protocol/restxml/build_test.go | 384 +-- private/protocol/restxml/unmarshal_test.go | 162 +- private/protocol/xml/xmlutil/build.go | 2 +- private/protocol/xml/xmlutil/unmarshal.go | 2 +- service/apigateway/api.go | 672 +--- service/autoscaling/api.go | 714 +--- service/cloudformation/api.go | 294 +- service/cloudfront/api.go | 522 +-- service/cloudhsm/api.go | 204 +- service/cloudsearch/api.go | 462 +-- service/cloudsearchdomain/api.go | 90 +- service/cloudtrail/api.go | 186 +- service/cloudwatch/api.go | 180 +- service/cloudwatchlogs/api.go | 390 +-- service/codecommit/api.go | 150 +- service/codedeploy/api.go | 504 +-- service/codepipeline/api.go | 498 +-- service/cognitoidentity/api.go | 216 +- service/cognitosync/api.go | 246 +- service/configservice/api.go | 432 +-- service/datapipeline/api.go | 318 +- service/devicefarm/api.go | 522 +-- service/directconnect/api.go | 234 +- service/directoryservice/api.go | 270 +- service/dynamodb/api.go | 312 +- service/dynamodbstreams/api.go | 84 +- service/ec2/api.go | 3252 ++++--------------- service/ecs/api.go | 480 +-- service/efs/api.go | 144 +- service/elasticache/api.go | 612 +--- service/elasticbeanstalk/api.go | 552 +--- service/elasticsearchservice/api.go | 198 +- service/elastictranscoder/api.go | 384 +-- service/elb/api.go | 486 +-- service/emr/api.go | 450 +-- service/firehose/api.go | 168 +- service/glacier/api.go | 426 +-- service/iam/api.go | 1548 ++------- service/inspector/api.go | 564 +--- service/iot/api.go | 588 +--- service/iotdataplane/api.go | 48 +- service/kinesis/api.go | 228 +- service/kms/api.go | 372 +-- service/lambda/api.go | 246 +- service/machinelearning/api.go | 396 +-- service/marketplacecommerceanalytics/api.go | 12 +- service/mobileanalytics/api.go | 24 +- service/opsworks/api.go | 1074 +----- service/rds/api.go | 1212 ++----- service/redshift/api.go | 912 +----- service/route53/api.go | 468 +-- service/route53domains/api.go | 252 +- service/s3/api.go | 1014 +----- service/ses/api.go | 618 +--- service/simpledb/api.go | 162 +- service/sns/api.go | 330 +- service/sqs/api.go | 258 +- service/ssm/api.go | 288 +- service/storagegateway/api.go | 732 +---- service/sts/api.go | 90 +- service/support/api.go | 264 +- service/swf/api.go | 876 +---- service/waf/api.go | 492 +-- service/workspaces/api.go | 156 +- 80 files changed, 4957 insertions(+), 24738 deletions(-) diff --git a/aws/corehandlers/param_validator_test.go b/aws/corehandlers/param_validator_test.go index 96bfc0e6720..e10debca5fa 100644 --- a/aws/corehandlers/param_validator_test.go +++ b/aws/corehandlers/param_validator_test.go @@ -32,17 +32,12 @@ type StructShape struct { OptionalStruct *ConditionalStructShape hiddenParameter *string - - metadataStructureShape -} - -type metadataStructureShape struct { - SDKShapeTraits bool + _ struct{} } type ConditionalStructShape struct { - Name *string `required:"true"` - SDKShapeTraits bool + Name *string `required:"true"` + _ struct{} } func TestNoErrors(t *testing.T) { diff --git a/private/model/api/passes.go b/private/model/api/passes.go index 542eea28622..ce57c1380fe 100644 --- a/private/model/api/passes.go +++ b/private/model/api/passes.go @@ -182,8 +182,8 @@ func (a *API) renameExportable() { } } - if newName == "SDKShapeTraits" { - panic("Shape " + s.ShapeName + " uses reserved member name SDKShapeTraits") + if newName == "_" { + panic("Shape " + s.ShapeName + " uses reserved member name '_'") } } diff --git a/private/model/api/shape.go b/private/model/api/shape.go index 4eb29b695b1..8be920f5d2a 100644 --- a/private/model/api/shape.go +++ b/private/model/api/shape.go @@ -338,12 +338,8 @@ func (s *Shape) GoCode() string { code += n + " " + m.GoType() + " " + m.GoTags(false, s.IsRequired(n)) + "\n\n" } } - metaStruct := "metadata" + s.ShapeName ref := &ShapeRef{ShapeName: s.ShapeName, API: s.API, Shape: s} - code += "\n" + metaStruct + " `json:\"-\" xml:\"-\"`\n" - code += "}\n\n" - code += "type " + metaStruct + " struct {\n" - code += "SDKShapeTraits bool " + ref.GoTags(true, false) + code += "_ struct{} " + ref.GoTags(true, false) code += "}" if !s.API.NoStringerMethods { diff --git a/private/protocol/ec2query/build_test.go b/private/protocol/ec2query/build_test.go index 887feeb1ea8..ce4145ace5c 100644 --- a/private/protocol/ec2query/build_test.go +++ b/private/protocol/ec2query/build_test.go @@ -120,19 +120,11 @@ type InputService1TestShapeInputService1TestCaseOperation1Input struct { Foo *string `type:"string"` - metadataInputService1TestShapeInputService1TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputService1TestCaseOperation1Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -220,19 +212,11 @@ type InputService2TestShapeInputService2TestCaseOperation1Input struct { Yuck *string `locationName:"yuckLocationName" queryName:"yuckQueryName" type:"string"` - metadataInputService2TestShapeInputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService2TestShapeInputService2TestCaseOperation1Output struct { - metadataInputService2TestShapeInputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -316,29 +300,17 @@ func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *Input type InputService3TestShapeInputService3TestCaseOperation1Input struct { StructArg *InputService3TestShapeStructType `locationName:"Struct" type:"structure"` - metadataInputService3TestShapeInputService3TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeInputService3TestCaseOperation1Output struct { - metadataInputService3TestShapeInputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeStructType struct { ScalarArg *string `locationName:"Scalar" type:"string"` - metadataInputService3TestShapeStructType `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -422,19 +394,11 @@ func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *Input type InputService4TestShapeInputService4TestCaseOperation1Input struct { ListArg []*string `type:"list"` - metadataInputService4TestShapeInputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService4TestShapeInputService4TestCaseOperation1Output struct { - metadataInputService4TestShapeInputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -518,19 +482,11 @@ func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *Input type InputService5TestShapeInputService5TestCaseOperation1Input struct { ListArg []*string `locationName:"ListMemberName" locationNameList:"item" type:"list"` - metadataInputService5TestShapeInputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputService5TestCaseOperation1Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -614,19 +570,11 @@ func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *Input type InputService6TestShapeInputService6TestCaseOperation1Input struct { ListArg []*string `locationName:"ListMemberName" queryName:"ListQueryName" locationNameList:"item" type:"list"` - metadataInputService6TestShapeInputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService6TestShapeInputService6TestCaseOperation1Output struct { - metadataInputService6TestShapeInputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -710,19 +658,11 @@ func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *Input type InputService7TestShapeInputService7TestCaseOperation1Input struct { BlobArg []byte `type:"blob"` - metadataInputService7TestShapeInputService7TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeInputService7TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService7TestShapeInputService7TestCaseOperation1Output struct { - metadataInputService7TestShapeInputService7TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeInputService7TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -806,19 +746,11 @@ func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *Input type InputService8TestShapeInputService8TestCaseOperation1Input struct { TimeArg *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataInputService8TestShapeInputService8TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService8TestShapeInputService8TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService8TestShapeInputService8TestCaseOperation1Output struct { - metadataInputService8TestShapeInputService8TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService8TestShapeInputService8TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/ec2query/unmarshal_test.go b/private/protocol/ec2query/unmarshal_test.go index c347c371c10..b9c436dcaf1 100644 --- a/private/protocol/ec2query/unmarshal_test.go +++ b/private/protocol/ec2query/unmarshal_test.go @@ -116,11 +116,7 @@ func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *Out } type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - metadataOutputService1TestShapeOutputService1TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { @@ -140,11 +136,7 @@ type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { TrueBool *bool `type:"boolean"` - metadataOutputService1TestShapeOutputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -226,21 +218,13 @@ func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *Out } type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - metadataOutputService2TestShapeOutputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { Blob []byte `type:"blob"` - metadataOutputService2TestShapeOutputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -322,21 +306,13 @@ func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *Out } type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - metadataOutputService3TestShapeOutputService3TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { ListMember []*string `type:"list"` - metadataOutputService3TestShapeOutputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -418,21 +394,13 @@ func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *Out } type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - metadataOutputService4TestShapeOutputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService4TestShapeOutputService4TestCaseOperation1Output struct { ListMember []*string `locationNameList:"item" type:"list"` - metadataOutputService4TestShapeOutputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -514,21 +482,13 @@ func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *Out } type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - metadataOutputService5TestShapeOutputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { ListMember []*string `type:"list" flattened:"true"` - metadataOutputService5TestShapeOutputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -610,31 +570,19 @@ func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *Out } type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - metadataOutputService6TestShapeOutputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { Map map[string]*OutputService6TestShapeStructureType `type:"map"` - metadataOutputService6TestShapeOutputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService6TestShapeStructureType struct { Foo *string `locationName:"foo" type:"string"` - metadataOutputService6TestShapeStructureType `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeStructureType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -716,21 +664,13 @@ func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1(input *Out } type OutputService7TestShapeOutputService7TestCaseOperation1Input struct { - metadataOutputService7TestShapeOutputService7TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService7TestShapeOutputService7TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService7TestShapeOutputService7TestCaseOperation1Output struct { Map map[string]*string `type:"map" flattened:"true"` - metadataOutputService7TestShapeOutputService7TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService7TestShapeOutputService7TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -812,21 +752,13 @@ func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1(input *Out } type OutputService8TestShapeOutputService8TestCaseOperation1Input struct { - metadataOutputService8TestShapeOutputService8TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeOutputService8TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService8TestShapeOutputService8TestCaseOperation1Output struct { Map map[string]*string `locationNameKey:"foo" locationNameValue:"bar" type:"map" flattened:"true"` - metadataOutputService8TestShapeOutputService8TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeOutputService8TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -908,21 +840,13 @@ func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1(input *Out } type OutputService9TestShapeOutputService9TestCaseOperation1Input struct { - metadataOutputService9TestShapeOutputService9TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeOutputService9TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { Foo *string `type:"string"` - metadataOutputService9TestShapeOutputService9TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeOutputService9TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/json/jsonutil/build.go b/private/protocol/json/jsonutil/build.go index 7e007692213..870707c6a69 100644 --- a/private/protocol/json/jsonutil/build.go +++ b/private/protocol/json/jsonutil/build.go @@ -50,7 +50,7 @@ func buildAny(value reflect.Value, buf *bytes.Buffer, tag reflect.StructTag) err switch t { case "structure": - if field, ok := vtype.FieldByName("SDKShapeTraits"); ok { + if field, ok := vtype.FieldByName("_"); ok { tag = field.Tag } return buildStruct(value, buf, tag) diff --git a/private/protocol/json/jsonutil/unmarshal.go b/private/protocol/json/jsonutil/unmarshal.go index 2429e40d56b..fea53561366 100644 --- a/private/protocol/json/jsonutil/unmarshal.go +++ b/private/protocol/json/jsonutil/unmarshal.go @@ -56,7 +56,7 @@ func unmarshalAny(value reflect.Value, data interface{}, tag reflect.StructTag) switch t { case "structure": - if field, ok := vtype.FieldByName("SDKShapeTraits"); ok { + if field, ok := vtype.FieldByName("_"); ok { tag = field.Tag } return unmarshalStruct(value, data, tag) diff --git a/private/protocol/jsonrpc/build_test.go b/private/protocol/jsonrpc/build_test.go index b5712dc1707..650d65c341e 100644 --- a/private/protocol/jsonrpc/build_test.go +++ b/private/protocol/jsonrpc/build_test.go @@ -121,19 +121,11 @@ func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *Input type InputService1TestShapeInputService1TestCaseOperation1Input struct { Name *string `type:"string"` - metadataInputService1TestShapeInputService1TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputService1TestCaseOperation1Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -219,19 +211,11 @@ func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *Input type InputService2TestShapeInputService2TestCaseOperation1Input struct { TimeArg *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataInputService2TestShapeInputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService2TestShapeInputService2TestCaseOperation1Output struct { - metadataInputService2TestShapeInputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -339,19 +323,11 @@ func (c *InputService3ProtocolTest) InputService3TestCaseOperation2(input *Input } type InputService3TestShapeInputService3TestCaseOperation1Output struct { - metadataInputService3TestShapeInputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeInputService3TestCaseOperation2Output struct { - metadataInputService3TestShapeInputService3TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeInputShape struct { @@ -359,11 +335,7 @@ type InputService3TestShapeInputShape struct { BlobMap map[string][]byte `type:"map"` - metadataInputService3TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -450,19 +422,11 @@ func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *Input type InputService4TestShapeInputService4TestCaseOperation1Input struct { ListParam [][]byte `type:"list"` - metadataInputService4TestShapeInputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService4TestShapeInputService4TestCaseOperation1Output struct { - metadataInputService4TestShapeInputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -666,61 +630,33 @@ func (c *InputService5ProtocolTest) InputService5TestCaseOperation6(input *Input } type InputService5TestShapeInputService5TestCaseOperation1Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputService5TestCaseOperation2Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputService5TestCaseOperation3Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation3Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation3Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputService5TestCaseOperation4Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation4Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation4Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputService5TestCaseOperation5Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation5Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation5Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputService5TestCaseOperation6Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation6Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation6Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputShape struct { RecursiveStruct *InputService5TestShapeRecursiveStructType `type:"structure"` - metadataInputService5TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeRecursiveStructType struct { @@ -732,11 +668,7 @@ type InputService5TestShapeRecursiveStructType struct { RecursiveStruct *InputService5TestShapeRecursiveStructType `type:"structure"` - metadataInputService5TestShapeRecursiveStructType `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeRecursiveStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -823,19 +755,11 @@ func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *Input type InputService6TestShapeInputService6TestCaseOperation1Input struct { Map map[string]*string `type:"map"` - metadataInputService6TestShapeInputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService6TestShapeInputService6TestCaseOperation1Output struct { - metadataInputService6TestShapeInputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/jsonrpc/unmarshal_test.go b/private/protocol/jsonrpc/unmarshal_test.go index 57c3cf52b2a..aef92282f44 100644 --- a/private/protocol/jsonrpc/unmarshal_test.go +++ b/private/protocol/jsonrpc/unmarshal_test.go @@ -118,11 +118,7 @@ func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *Out } type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - metadataOutputService1TestShapeOutputService1TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { @@ -142,11 +138,7 @@ type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { TrueBool *bool `type:"boolean"` - metadataOutputService1TestShapeOutputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -232,19 +224,11 @@ func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *Out type OutputService2TestShapeBlobContainer struct { Foo []byte `locationName:"foo" type:"blob"` - metadataOutputService2TestShapeBlobContainer `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeBlobContainer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - metadataOutputService2TestShapeOutputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { @@ -252,11 +236,7 @@ type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { StructMember *OutputService2TestShapeBlobContainer `type:"structure"` - metadataOutputService2TestShapeOutputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -340,11 +320,7 @@ func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *Out } type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - metadataOutputService3TestShapeOutputService3TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { @@ -352,21 +328,13 @@ type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { TimeMember *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataOutputService3TestShapeOutputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService3TestShapeTimeContainer struct { Foo *time.Time `locationName:"foo" type:"timestamp" timestampFormat:"unix"` - metadataOutputService3TestShapeTimeContainer `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeTimeContainer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -474,19 +442,11 @@ func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation2(input *Out } type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - metadataOutputService4TestShapeOutputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService4TestShapeOutputService4TestCaseOperation2Input struct { - metadataOutputService4TestShapeOutputService4TestCaseOperation2Input `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation2Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService4TestShapeOutputShape struct { @@ -496,19 +456,11 @@ type OutputService4TestShapeOutputShape struct { ListMemberStruct []*OutputService4TestShapeStructType `type:"list"` - metadataOutputService4TestShapeOutputShape `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService4TestShapeStructType struct { - metadataOutputService4TestShapeStructType `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -592,21 +544,13 @@ func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *Out } type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - metadataOutputService5TestShapeOutputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { MapMember map[string][]*int64 `type:"map"` - metadataOutputService5TestShapeOutputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -690,21 +634,13 @@ func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *Out } type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - metadataOutputService6TestShapeOutputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { StrType *string `type:"string"` - metadataOutputService6TestShapeOutputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/query/build_test.go b/private/protocol/query/build_test.go index 535821b2fd4..3f339d42111 100644 --- a/private/protocol/query/build_test.go +++ b/private/protocol/query/build_test.go @@ -164,27 +164,15 @@ func (c *InputService1ProtocolTest) InputService1TestCaseOperation3(input *Input } type InputService1TestShapeInputService1TestCaseOperation1Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputService1TestCaseOperation2Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputService1TestCaseOperation3Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation3Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation3Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputShape struct { @@ -194,11 +182,7 @@ type InputService1TestShapeInputShape struct { Foo *string `type:"string"` - metadataInputService1TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -282,29 +266,17 @@ func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *Input type InputService2TestShapeInputService2TestCaseOperation1Input struct { StructArg *InputService2TestShapeStructType `type:"structure"` - metadataInputService2TestShapeInputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService2TestShapeInputService2TestCaseOperation1Output struct { - metadataInputService2TestShapeInputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService2TestShapeStructType struct { ScalarArg *string `type:"string"` - metadataInputService2TestShapeStructType `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -410,29 +382,17 @@ func (c *InputService3ProtocolTest) InputService3TestCaseOperation2(input *Input } type InputService3TestShapeInputService3TestCaseOperation1Output struct { - metadataInputService3TestShapeInputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeInputService3TestCaseOperation2Output struct { - metadataInputService3TestShapeInputService3TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeInputShape struct { ListArg []*string `type:"list"` - metadataInputService3TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -538,19 +498,11 @@ func (c *InputService4ProtocolTest) InputService4TestCaseOperation2(input *Input } type InputService4TestShapeInputService4TestCaseOperation1Output struct { - metadataInputService4TestShapeInputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService4TestShapeInputService4TestCaseOperation2Output struct { - metadataInputService4TestShapeInputService4TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService4TestShapeInputShape struct { @@ -560,11 +512,7 @@ type InputService4TestShapeInputShape struct { ScalarArg *string `type:"string"` - metadataInputService4TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -648,19 +596,11 @@ func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *Input type InputService5TestShapeInputService5TestCaseOperation1Input struct { MapArg map[string]*string `type:"map" flattened:"true"` - metadataInputService5TestShapeInputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputService5TestCaseOperation1Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -744,19 +684,11 @@ func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *Input type InputService6TestShapeInputService6TestCaseOperation1Input struct { ListArg []*string `locationNameList:"item" type:"list"` - metadataInputService6TestShapeInputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService6TestShapeInputService6TestCaseOperation1Output struct { - metadataInputService6TestShapeInputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -842,19 +774,11 @@ type InputService7TestShapeInputService7TestCaseOperation1Input struct { ScalarArg *string `type:"string"` - metadataInputService7TestShapeInputService7TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeInputService7TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService7TestShapeInputService7TestCaseOperation1Output struct { - metadataInputService7TestShapeInputService7TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeInputService7TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -938,19 +862,11 @@ func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *Input type InputService8TestShapeInputService8TestCaseOperation1Input struct { MapArg map[string]*string `type:"map"` - metadataInputService8TestShapeInputService8TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService8TestShapeInputService8TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService8TestShapeInputService8TestCaseOperation1Output struct { - metadataInputService8TestShapeInputService8TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService8TestShapeInputService8TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1034,19 +950,11 @@ func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *Input type InputService9TestShapeInputService9TestCaseOperation1Input struct { MapArg map[string]*string `locationNameKey:"TheKey" locationNameValue:"TheValue" type:"map"` - metadataInputService9TestShapeInputService9TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService9TestShapeInputService9TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService9TestShapeInputService9TestCaseOperation1Output struct { - metadataInputService9TestShapeInputService9TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService9TestShapeInputService9TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1130,19 +1038,11 @@ func (c *InputService10ProtocolTest) InputService10TestCaseOperation1(input *Inp type InputService10TestShapeInputService10TestCaseOperation1Input struct { BlobArg []byte `type:"blob"` - metadataInputService10TestShapeInputService10TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService10TestShapeInputService10TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService10TestShapeInputService10TestCaseOperation1Output struct { - metadataInputService10TestShapeInputService10TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService10TestShapeInputService10TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1226,19 +1126,11 @@ func (c *InputService11ProtocolTest) InputService11TestCaseOperation1(input *Inp type InputService11TestShapeInputService11TestCaseOperation1Input struct { TimeArg *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataInputService11TestShapeInputService11TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService11TestShapeInputService11TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService11TestShapeInputService11TestCaseOperation1Output struct { - metadataInputService11TestShapeInputService11TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService11TestShapeInputService11TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1440,61 +1332,33 @@ func (c *InputService12ProtocolTest) InputService12TestCaseOperation6(input *Inp } type InputService12TestShapeInputService12TestCaseOperation1Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputService12TestCaseOperation2Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputService12TestCaseOperation3Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation3Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation3Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputService12TestCaseOperation4Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation4Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation4Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputService12TestCaseOperation5Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation5Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation5Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputService12TestCaseOperation6Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation6Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation6Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputShape struct { RecursiveStruct *InputService12TestShapeRecursiveStructType `type:"structure"` - metadataInputService12TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeRecursiveStructType struct { @@ -1506,11 +1370,7 @@ type InputService12TestShapeRecursiveStructType struct { RecursiveStruct *InputService12TestShapeRecursiveStructType `type:"structure"` - metadataInputService12TestShapeRecursiveStructType `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeRecursiveStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/query/unmarshal_test.go b/private/protocol/query/unmarshal_test.go index fe2a58e3650..31924906c3c 100644 --- a/private/protocol/query/unmarshal_test.go +++ b/private/protocol/query/unmarshal_test.go @@ -116,11 +116,7 @@ func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *Out } type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - metadataOutputService1TestShapeOutputService1TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { @@ -142,11 +138,7 @@ type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { TrueBool *bool `type:"boolean"` - metadataOutputService1TestShapeOutputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -228,11 +220,7 @@ func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *Out } type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - metadataOutputService2TestShapeOutputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { @@ -240,11 +228,7 @@ type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { Str *string `type:"string"` - metadataOutputService2TestShapeOutputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -326,21 +310,13 @@ func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *Out } type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - metadataOutputService3TestShapeOutputService3TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { Blob []byte `type:"blob"` - metadataOutputService3TestShapeOutputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -422,21 +398,13 @@ func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *Out } type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - metadataOutputService4TestShapeOutputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService4TestShapeOutputService4TestCaseOperation1Output struct { ListMember []*string `type:"list"` - metadataOutputService4TestShapeOutputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -518,21 +486,13 @@ func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *Out } type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - metadataOutputService5TestShapeOutputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { ListMember []*string `locationNameList:"item" type:"list"` - metadataOutputService5TestShapeOutputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -614,21 +574,13 @@ func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *Out } type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - metadataOutputService6TestShapeOutputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { ListMember []*string `type:"list" flattened:"true"` - metadataOutputService6TestShapeOutputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -710,21 +662,13 @@ func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1(input *Out } type OutputService7TestShapeOutputService7TestCaseOperation1Input struct { - metadataOutputService7TestShapeOutputService7TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService7TestShapeOutputService7TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService7TestShapeOutputService7TestCaseOperation1Output struct { ListMember []*string `type:"list" flattened:"true"` - metadataOutputService7TestShapeOutputService7TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService7TestShapeOutputService7TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -806,21 +750,13 @@ func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1(input *Out } type OutputService8TestShapeOutputService8TestCaseOperation1Input struct { - metadataOutputService8TestShapeOutputService8TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeOutputService8TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService8TestShapeOutputService8TestCaseOperation1Output struct { List []*OutputService8TestShapeStructureShape `type:"list"` - metadataOutputService8TestShapeOutputService8TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeOutputService8TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService8TestShapeStructureShape struct { @@ -830,11 +766,7 @@ type OutputService8TestShapeStructureShape struct { Foo *string `type:"string"` - metadataOutputService8TestShapeStructureShape `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeStructureShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -916,21 +848,13 @@ func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1(input *Out } type OutputService9TestShapeOutputService9TestCaseOperation1Input struct { - metadataOutputService9TestShapeOutputService9TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeOutputService9TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { List []*OutputService9TestShapeStructureShape `type:"list" flattened:"true"` - metadataOutputService9TestShapeOutputService9TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeOutputService9TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService9TestShapeStructureShape struct { @@ -940,11 +864,7 @@ type OutputService9TestShapeStructureShape struct { Foo *string `type:"string"` - metadataOutputService9TestShapeStructureShape `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeStructureShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1026,21 +946,13 @@ func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1(input *O } type OutputService10TestShapeOutputService10TestCaseOperation1Input struct { - metadataOutputService10TestShapeOutputService10TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService10TestShapeOutputService10TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService10TestShapeOutputService10TestCaseOperation1Output struct { List []*string `locationNameList:"NamedList" type:"list" flattened:"true"` - metadataOutputService10TestShapeOutputService10TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService10TestShapeOutputService10TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1122,31 +1034,19 @@ func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1(input *O } type OutputService11TestShapeOutputService11TestCaseOperation1Input struct { - metadataOutputService11TestShapeOutputService11TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService11TestShapeOutputService11TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService11TestShapeOutputService11TestCaseOperation1Output struct { Map map[string]*OutputService11TestShapeStructType `type:"map"` - metadataOutputService11TestShapeOutputService11TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService11TestShapeOutputService11TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService11TestShapeStructType struct { Foo *string `locationName:"foo" type:"string"` - metadataOutputService11TestShapeStructType `json:"-" xml:"-"` -} - -type metadataOutputService11TestShapeStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1228,21 +1128,13 @@ func (c *OutputService12ProtocolTest) OutputService12TestCaseOperation1(input *O } type OutputService12TestShapeOutputService12TestCaseOperation1Input struct { - metadataOutputService12TestShapeOutputService12TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService12TestShapeOutputService12TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService12TestShapeOutputService12TestCaseOperation1Output struct { Map map[string]*string `type:"map" flattened:"true"` - metadataOutputService12TestShapeOutputService12TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService12TestShapeOutputService12TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1324,21 +1216,13 @@ func (c *OutputService13ProtocolTest) OutputService13TestCaseOperation1(input *O } type OutputService13TestShapeOutputService13TestCaseOperation1Input struct { - metadataOutputService13TestShapeOutputService13TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService13TestShapeOutputService13TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService13TestShapeOutputService13TestCaseOperation1Output struct { Map map[string]*string `locationName:"Attribute" locationNameKey:"Name" locationNameValue:"Value" type:"map" flattened:"true"` - metadataOutputService13TestShapeOutputService13TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService13TestShapeOutputService13TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1420,21 +1304,13 @@ func (c *OutputService14ProtocolTest) OutputService14TestCaseOperation1(input *O } type OutputService14TestShapeOutputService14TestCaseOperation1Input struct { - metadataOutputService14TestShapeOutputService14TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService14TestShapeOutputService14TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService14TestShapeOutputService14TestCaseOperation1Output struct { Map map[string]*string `locationNameKey:"foo" locationNameValue:"bar" type:"map" flattened:"true"` - metadataOutputService14TestShapeOutputService14TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService14TestShapeOutputService14TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1516,21 +1392,13 @@ func (c *OutputService15ProtocolTest) OutputService15TestCaseOperation1(input *O } type OutputService15TestShapeOutputService15TestCaseOperation1Input struct { - metadataOutputService15TestShapeOutputService15TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService15TestShapeOutputService15TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService15TestShapeOutputService15TestCaseOperation1Output struct { Foo *string `type:"string"` - metadataOutputService15TestShapeOutputService15TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService15TestShapeOutputService15TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/rest/build.go b/private/protocol/rest/build.go index 87352bc60de..ed3c2e03955 100644 --- a/private/protocol/rest/build.go +++ b/private/protocol/rest/build.go @@ -93,7 +93,7 @@ func buildLocationElements(r *request.Request, v reflect.Value) { } func buildBody(r *request.Request, v reflect.Value) { - if field, ok := v.Type().FieldByName("SDKShapeTraits"); ok { + if field, ok := v.Type().FieldByName("_"); ok { if payloadName := field.Tag.Get("payload"); payloadName != "" { pfield, _ := v.Type().FieldByName(payloadName) if ptag := pfield.Tag.Get("type"); ptag != "" && ptag != "structure" { diff --git a/private/protocol/rest/payload.go b/private/protocol/rest/payload.go index 1f603bb719f..4366de2e1e8 100644 --- a/private/protocol/rest/payload.go +++ b/private/protocol/rest/payload.go @@ -12,7 +12,7 @@ func PayloadMember(i interface{}) interface{} { if !v.IsValid() { return nil } - if field, ok := v.Type().FieldByName("SDKShapeTraits"); ok { + if field, ok := v.Type().FieldByName("_"); ok { if payloadName := field.Tag.Get("payload"); payloadName != "" { field, _ := v.Type().FieldByName(payloadName) if field.Tag.Get("type") != "structure" { @@ -34,7 +34,7 @@ func PayloadType(i interface{}) string { if !v.IsValid() { return "" } - if field, ok := v.Type().FieldByName("SDKShapeTraits"); ok { + if field, ok := v.Type().FieldByName("_"); ok { if payloadName := field.Tag.Get("payload"); payloadName != "" { if member, ok := v.Type().FieldByName(payloadName); ok { return member.Tag.Get("type") diff --git a/private/protocol/rest/unmarshal.go b/private/protocol/rest/unmarshal.go index 06d9accbacb..27f47b02c71 100644 --- a/private/protocol/rest/unmarshal.go +++ b/private/protocol/rest/unmarshal.go @@ -33,7 +33,7 @@ func UnmarshalMeta(r *request.Request) { } func unmarshalBody(r *request.Request, v reflect.Value) { - if field, ok := v.Type().FieldByName("SDKShapeTraits"); ok { + if field, ok := v.Type().FieldByName("_"); ok { if payloadName := field.Tag.Get("payload"); payloadName != "" { pfield, _ := v.Type().FieldByName(payloadName) if ptag := pfield.Tag.Get("type"); ptag != "" && ptag != "structure" { diff --git a/private/protocol/restjson/build_test.go b/private/protocol/restjson/build_test.go index f73813a34ef..070ce0a73f6 100644 --- a/private/protocol/restjson/build_test.go +++ b/private/protocol/restjson/build_test.go @@ -120,19 +120,11 @@ func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *Input type InputService1TestShapeInputService1TestCaseOperation1Input struct { PipelineId *string `location:"uri" type:"string"` - metadataInputService1TestShapeInputService1TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputService1TestCaseOperation1Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -218,19 +210,11 @@ func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *Input type InputService2TestShapeInputService2TestCaseOperation1Input struct { Foo *string `location:"uri" locationName:"PipelineId" type:"string"` - metadataInputService2TestShapeInputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService2TestShapeInputService2TestCaseOperation1Output struct { - metadataInputService2TestShapeInputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -318,19 +302,11 @@ type InputService3TestShapeInputService3TestCaseOperation1Input struct { QueryDoc map[string]*string `location:"querystring" type:"map"` - metadataInputService3TestShapeInputService3TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeInputService3TestCaseOperation1Output struct { - metadataInputService3TestShapeInputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -418,19 +394,11 @@ type InputService4TestShapeInputService4TestCaseOperation1Input struct { QueryDoc map[string][]*string `location:"querystring" type:"map"` - metadataInputService4TestShapeInputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService4TestShapeInputService4TestCaseOperation1Output struct { - metadataInputService4TestShapeInputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -520,19 +488,11 @@ type InputService5TestShapeInputService5TestCaseOperation1Input struct { PipelineId *string `location:"uri" locationName:"PipelineId" type:"string"` - metadataInputService5TestShapeInputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService5TestShapeInputService5TestCaseOperation1Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -624,19 +584,11 @@ type InputService6TestShapeInputService6TestCaseOperation1Input struct { PipelineId *string `location:"uri" locationName:"PipelineId" type:"string"` - metadataInputService6TestShapeInputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService6TestShapeInputService6TestCaseOperation1Output struct { - metadataInputService6TestShapeInputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService6TestShapeStructType struct { @@ -644,11 +596,7 @@ type InputService6TestShapeStructType struct { B *string `type:"string"` - metadataInputService6TestShapeStructType `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -742,19 +690,11 @@ type InputService7TestShapeInputService7TestCaseOperation1Input struct { PipelineId *string `location:"uri" locationName:"PipelineId" type:"string"` - metadataInputService7TestShapeInputService7TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeInputService7TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService7TestShapeInputService7TestCaseOperation1Output struct { - metadataInputService7TestShapeInputService7TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeInputService7TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService7TestShapeStructType struct { @@ -762,11 +702,7 @@ type InputService7TestShapeStructType struct { B *string `type:"string"` - metadataInputService7TestShapeStructType `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -856,19 +792,11 @@ type InputService8TestShapeInputService8TestCaseOperation1Input struct { VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataInputService8TestShapeInputService8TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService8TestShapeInputService8TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } type InputService8TestShapeInputService8TestCaseOperation1Output struct { - metadataInputService8TestShapeInputService8TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService8TestShapeInputService8TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -954,19 +882,11 @@ func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *Input type InputService9TestShapeInputService9TestCaseOperation1Input struct { Foo *string `locationName:"foo" type:"string"` - metadataInputService9TestShapeInputService9TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService9TestShapeInputService9TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure" payload:"Foo"` + _ struct{} `type:"structure" payload:"Foo"` } type InputService9TestShapeInputService9TestCaseOperation1Output struct { - metadataInputService9TestShapeInputService9TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService9TestShapeInputService9TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1076,29 +996,17 @@ func (c *InputService10ProtocolTest) InputService10TestCaseOperation2(input *Inp } type InputService10TestShapeInputService10TestCaseOperation1Output struct { - metadataInputService10TestShapeInputService10TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService10TestShapeInputService10TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService10TestShapeInputService10TestCaseOperation2Output struct { - metadataInputService10TestShapeInputService10TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService10TestShapeInputService10TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService10TestShapeInputShape struct { Foo []byte `locationName:"foo" type:"blob"` - metadataInputService10TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService10TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure" payload:"Foo"` + _ struct{} `type:"structure" payload:"Foo"` } //The service client's operations are safe to be used concurrently. @@ -1210,37 +1118,21 @@ func (c *InputService11ProtocolTest) InputService11TestCaseOperation2(input *Inp type InputService11TestShapeFooShape struct { Baz *string `locationName:"baz" type:"string"` - metadataInputService11TestShapeFooShape `json:"-" xml:"-"` -} - -type metadataInputService11TestShapeFooShape struct { - SDKShapeTraits bool `locationName:"foo" type:"structure"` + _ struct{} `locationName:"foo" type:"structure"` } type InputService11TestShapeInputService11TestCaseOperation1Output struct { - metadataInputService11TestShapeInputService11TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService11TestShapeInputService11TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService11TestShapeInputService11TestCaseOperation2Output struct { - metadataInputService11TestShapeInputService11TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService11TestShapeInputService11TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService11TestShapeInputShape struct { Foo *InputService11TestShapeFooShape `locationName:"foo" type:"structure"` - metadataInputService11TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService11TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure" payload:"Foo"` + _ struct{} `type:"structure" payload:"Foo"` } //The service client's operations are safe to be used concurrently. @@ -1350,29 +1242,17 @@ func (c *InputService12ProtocolTest) InputService12TestCaseOperation2(input *Inp } type InputService12TestShapeInputService12TestCaseOperation1Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputService12TestCaseOperation2Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputShape struct { Foo *string `location:"querystring" locationName:"param-name" type:"string"` - metadataInputService12TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1586,61 +1466,33 @@ func (c *InputService13ProtocolTest) InputService13TestCaseOperation6(input *Inp } type InputService13TestShapeInputService13TestCaseOperation1Output struct { - metadataInputService13TestShapeInputService13TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputService13TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService13TestShapeInputService13TestCaseOperation2Output struct { - metadataInputService13TestShapeInputService13TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputService13TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService13TestShapeInputService13TestCaseOperation3Output struct { - metadataInputService13TestShapeInputService13TestCaseOperation3Output `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputService13TestCaseOperation3Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService13TestShapeInputService13TestCaseOperation4Output struct { - metadataInputService13TestShapeInputService13TestCaseOperation4Output `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputService13TestCaseOperation4Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService13TestShapeInputService13TestCaseOperation5Output struct { - metadataInputService13TestShapeInputService13TestCaseOperation5Output `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputService13TestCaseOperation5Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService13TestShapeInputService13TestCaseOperation6Output struct { - metadataInputService13TestShapeInputService13TestCaseOperation6Output `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputService13TestCaseOperation6Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService13TestShapeInputShape struct { RecursiveStruct *InputService13TestShapeRecursiveStructType `type:"structure"` - metadataInputService13TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService13TestShapeRecursiveStructType struct { @@ -1652,11 +1504,7 @@ type InputService13TestShapeRecursiveStructType struct { RecursiveStruct *InputService13TestShapeRecursiveStructType `type:"structure"` - metadataInputService13TestShapeRecursiveStructType `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeRecursiveStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1766,19 +1614,11 @@ func (c *InputService14ProtocolTest) InputService14TestCaseOperation2(input *Inp } type InputService14TestShapeInputService14TestCaseOperation1Output struct { - metadataInputService14TestShapeInputService14TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService14TestShapeInputService14TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService14TestShapeInputService14TestCaseOperation2Output struct { - metadataInputService14TestShapeInputService14TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService14TestShapeInputService14TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService14TestShapeInputShape struct { @@ -1786,11 +1626,7 @@ type InputService14TestShapeInputShape struct { TimeArgInHeader *time.Time `location:"header" locationName:"x-amz-timearg" type:"timestamp" timestampFormat:"rfc822"` - metadataInputService14TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService14TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/restjson/unmarshal_test.go b/private/protocol/restjson/unmarshal_test.go index 0140f1009ad..75df5807587 100644 --- a/private/protocol/restjson/unmarshal_test.go +++ b/private/protocol/restjson/unmarshal_test.go @@ -116,11 +116,7 @@ func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *Out } type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - metadataOutputService1TestShapeOutputService1TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { @@ -146,11 +142,7 @@ type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { TrueBool *bool `type:"boolean"` - metadataOutputService1TestShapeOutputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -234,19 +226,11 @@ func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *Out type OutputService2TestShapeBlobContainer struct { Foo []byte `locationName:"foo" type:"blob"` - metadataOutputService2TestShapeBlobContainer `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeBlobContainer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - metadataOutputService2TestShapeOutputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { @@ -254,11 +238,7 @@ type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { StructMember *OutputService2TestShapeBlobContainer `type:"structure"` - metadataOutputService2TestShapeOutputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -340,11 +320,7 @@ func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *Out } type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - metadataOutputService3TestShapeOutputService3TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { @@ -352,21 +328,13 @@ type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { TimeMember *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataOutputService3TestShapeOutputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService3TestShapeTimeContainer struct { Foo *time.Time `locationName:"foo" type:"timestamp" timestampFormat:"unix"` - metadataOutputService3TestShapeTimeContainer `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeTimeContainer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -448,21 +416,13 @@ func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *Out } type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - metadataOutputService4TestShapeOutputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService4TestShapeOutputService4TestCaseOperation1Output struct { ListMember []*string `type:"list"` - metadataOutputService4TestShapeOutputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -544,31 +504,19 @@ func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *Out } type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - metadataOutputService5TestShapeOutputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { ListMember []*OutputService5TestShapeSingleStruct `type:"list"` - metadataOutputService5TestShapeOutputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService5TestShapeSingleStruct struct { Foo *string `type:"string"` - metadataOutputService5TestShapeSingleStruct `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeSingleStruct struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -650,21 +598,13 @@ func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *Out } type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - metadataOutputService6TestShapeOutputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { MapMember map[string][]*int64 `type:"map"` - metadataOutputService6TestShapeOutputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -746,21 +686,13 @@ func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1(input *Out } type OutputService7TestShapeOutputService7TestCaseOperation1Input struct { - metadataOutputService7TestShapeOutputService7TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService7TestShapeOutputService7TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService7TestShapeOutputService7TestCaseOperation1Output struct { MapMember map[string]*time.Time `type:"map"` - metadataOutputService7TestShapeOutputService7TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService7TestShapeOutputService7TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -842,21 +774,13 @@ func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1(input *Out } type OutputService8TestShapeOutputService8TestCaseOperation1Input struct { - metadataOutputService8TestShapeOutputService8TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeOutputService8TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService8TestShapeOutputService8TestCaseOperation1Output struct { StrType *string `type:"string"` - metadataOutputService8TestShapeOutputService8TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeOutputService8TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -938,11 +862,7 @@ func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1(input *Out } type OutputService9TestShapeOutputService9TestCaseOperation1Input struct { - metadataOutputService9TestShapeOutputService9TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeOutputService9TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { @@ -950,11 +870,7 @@ type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { PrefixedHeaders map[string]*string `location:"headers" locationName:"X-" type:"map"` - metadataOutputService9TestShapeOutputService9TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeOutputService9TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1038,19 +954,11 @@ func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1(input *O type OutputService10TestShapeBodyStructure struct { Foo *string `type:"string"` - metadataOutputService10TestShapeBodyStructure `json:"-" xml:"-"` -} - -type metadataOutputService10TestShapeBodyStructure struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService10TestShapeOutputService10TestCaseOperation1Input struct { - metadataOutputService10TestShapeOutputService10TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService10TestShapeOutputService10TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService10TestShapeOutputService10TestCaseOperation1Output struct { @@ -1058,11 +966,7 @@ type OutputService10TestShapeOutputService10TestCaseOperation1Output struct { Header *string `location:"header" locationName:"X-Foo" type:"string"` - metadataOutputService10TestShapeOutputService10TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService10TestShapeOutputService10TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure" payload:"Data"` + _ struct{} `type:"structure" payload:"Data"` } //The service client's operations are safe to be used concurrently. @@ -1144,21 +1048,13 @@ func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1(input *O } type OutputService11TestShapeOutputService11TestCaseOperation1Input struct { - metadataOutputService11TestShapeOutputService11TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService11TestShapeOutputService11TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService11TestShapeOutputService11TestCaseOperation1Output struct { Stream []byte `type:"blob"` - metadataOutputService11TestShapeOutputService11TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService11TestShapeOutputService11TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure" payload:"Stream"` + _ struct{} `type:"structure" payload:"Stream"` } // diff --git a/private/protocol/restxml/build_test.go b/private/protocol/restxml/build_test.go index 54b2f68fd6a..c192a22ff2a 100644 --- a/private/protocol/restxml/build_test.go +++ b/private/protocol/restxml/build_test.go @@ -170,35 +170,19 @@ func (c *InputService1ProtocolTest) InputService1TestCaseOperation3(input *Input } type InputService1TestShapeInputService1TestCaseOperation1Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputService1TestCaseOperation2Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputService1TestCaseOperation3Input struct { - metadataInputService1TestShapeInputService1TestCaseOperation3Input `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation3Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputService1TestCaseOperation3Output struct { - metadataInputService1TestShapeInputService1TestCaseOperation3Output `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputService1TestCaseOperation3Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService1TestShapeInputShape struct { @@ -206,11 +190,7 @@ type InputService1TestShapeInputShape struct { Name *string `type:"string"` - metadataInputService1TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService1TestShapeInputShape struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } //The service client's operations are safe to be used concurrently. @@ -302,19 +282,11 @@ type InputService2TestShapeInputService2TestCaseOperation1Input struct { Third *float64 `type:"float"` - metadataInputService2TestShapeInputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService2TestShapeInputService2TestCaseOperation1Output struct { - metadataInputService2TestShapeInputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService2TestShapeInputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -424,19 +396,11 @@ func (c *InputService3ProtocolTest) InputService3TestCaseOperation2(input *Input } type InputService3TestShapeInputService3TestCaseOperation1Output struct { - metadataInputService3TestShapeInputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeInputService3TestCaseOperation2Output struct { - metadataInputService3TestShapeInputService3TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputService3TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService3TestShapeInputShape struct { @@ -444,11 +408,7 @@ type InputService3TestShapeInputShape struct { SubStructure *InputService3TestShapeSubStructure `type:"structure"` - metadataInputService3TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeInputShape struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService3TestShapeSubStructure struct { @@ -456,11 +416,7 @@ type InputService3TestShapeSubStructure struct { Foo *string `type:"string"` - metadataInputService3TestShapeSubStructure `json:"-" xml:"-"` -} - -type metadataInputService3TestShapeSubStructure struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -548,19 +504,11 @@ type InputService4TestShapeInputService4TestCaseOperation1Input struct { SubStructure *InputService4TestShapeSubStructure `type:"structure"` - metadataInputService4TestShapeInputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService4TestShapeInputService4TestCaseOperation1Output struct { - metadataInputService4TestShapeInputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeInputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService4TestShapeSubStructure struct { @@ -568,11 +516,7 @@ type InputService4TestShapeSubStructure struct { Foo *string `type:"string"` - metadataInputService4TestShapeSubStructure `json:"-" xml:"-"` -} - -type metadataInputService4TestShapeSubStructure struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -658,19 +602,11 @@ func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *Input type InputService5TestShapeInputService5TestCaseOperation1Input struct { ListParam []*string `type:"list"` - metadataInputService5TestShapeInputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService5TestShapeInputService5TestCaseOperation1Output struct { - metadataInputService5TestShapeInputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService5TestShapeInputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -756,19 +692,11 @@ func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *Input type InputService6TestShapeInputService6TestCaseOperation1Input struct { ListParam []*string `locationName:"AlternateName" locationNameList:"NotMember" type:"list"` - metadataInputService6TestShapeInputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService6TestShapeInputService6TestCaseOperation1Output struct { - metadataInputService6TestShapeInputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService6TestShapeInputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -854,19 +782,11 @@ func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *Input type InputService7TestShapeInputService7TestCaseOperation1Input struct { ListParam []*string `type:"list" flattened:"true"` - metadataInputService7TestShapeInputService7TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeInputService7TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService7TestShapeInputService7TestCaseOperation1Output struct { - metadataInputService7TestShapeInputService7TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService7TestShapeInputService7TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -952,19 +872,11 @@ func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *Input type InputService8TestShapeInputService8TestCaseOperation1Input struct { ListParam []*string `locationName:"item" type:"list" flattened:"true"` - metadataInputService8TestShapeInputService8TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService8TestShapeInputService8TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService8TestShapeInputService8TestCaseOperation1Output struct { - metadataInputService8TestShapeInputService8TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService8TestShapeInputService8TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1050,29 +962,17 @@ func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *Input type InputService9TestShapeInputService9TestCaseOperation1Input struct { ListParam []*InputService9TestShapeSingleFieldStruct `locationName:"item" type:"list" flattened:"true"` - metadataInputService9TestShapeInputService9TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService9TestShapeInputService9TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService9TestShapeInputService9TestCaseOperation1Output struct { - metadataInputService9TestShapeInputService9TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService9TestShapeInputService9TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService9TestShapeSingleFieldStruct struct { Element *string `locationName:"value" type:"string"` - metadataInputService9TestShapeSingleFieldStruct `json:"-" xml:"-"` -} - -type metadataInputService9TestShapeSingleFieldStruct struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1158,19 +1058,11 @@ func (c *InputService10ProtocolTest) InputService10TestCaseOperation1(input *Inp type InputService10TestShapeInputService10TestCaseOperation1Input struct { StructureParam *InputService10TestShapeStructureShape `type:"structure"` - metadataInputService10TestShapeInputService10TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService10TestShapeInputService10TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService10TestShapeInputService10TestCaseOperation1Output struct { - metadataInputService10TestShapeInputService10TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService10TestShapeInputService10TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService10TestShapeStructureShape struct { @@ -1178,11 +1070,7 @@ type InputService10TestShapeStructureShape struct { T *time.Time `locationName:"t" type:"timestamp" timestampFormat:"iso8601"` - metadataInputService10TestShapeStructureShape `json:"-" xml:"-"` -} - -type metadataInputService10TestShapeStructureShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1268,19 +1156,11 @@ func (c *InputService11ProtocolTest) InputService11TestCaseOperation1(input *Inp type InputService11TestShapeInputService11TestCaseOperation1Input struct { Foo map[string]*string `location:"headers" locationName:"x-foo-" type:"map"` - metadataInputService11TestShapeInputService11TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService11TestShapeInputService11TestCaseOperation1Input struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService11TestShapeInputService11TestCaseOperation1Output struct { - metadataInputService11TestShapeInputService11TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService11TestShapeInputService11TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1368,19 +1248,11 @@ type InputService12TestShapeInputService12TestCaseOperation1Input struct { QueryDoc map[string]*string `location:"querystring" type:"map"` - metadataInputService12TestShapeInputService12TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService12TestShapeInputService12TestCaseOperation1Output struct { - metadataInputService12TestShapeInputService12TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService12TestShapeInputService12TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1468,19 +1340,11 @@ type InputService13TestShapeInputService13TestCaseOperation1Input struct { QueryDoc map[string][]*string `location:"querystring" type:"map"` - metadataInputService13TestShapeInputService13TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputService13TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService13TestShapeInputService13TestCaseOperation1Output struct { - metadataInputService13TestShapeInputService13TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService13TestShapeInputService13TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1566,19 +1430,11 @@ func (c *InputService14ProtocolTest) InputService14TestCaseOperation1(input *Inp type InputService14TestShapeInputService14TestCaseOperation1Input struct { Foo *string `locationName:"foo" type:"string"` - metadataInputService14TestShapeInputService14TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService14TestShapeInputService14TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure" payload:"Foo"` + _ struct{} `type:"structure" payload:"Foo"` } type InputService14TestShapeInputService14TestCaseOperation1Output struct { - metadataInputService14TestShapeInputService14TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService14TestShapeInputService14TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1688,29 +1544,17 @@ func (c *InputService15ProtocolTest) InputService15TestCaseOperation2(input *Inp } type InputService15TestShapeInputService15TestCaseOperation1Output struct { - metadataInputService15TestShapeInputService15TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService15TestShapeInputService15TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService15TestShapeInputService15TestCaseOperation2Output struct { - metadataInputService15TestShapeInputService15TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService15TestShapeInputService15TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService15TestShapeInputShape struct { Foo []byte `locationName:"foo" type:"blob"` - metadataInputService15TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService15TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure" payload:"Foo"` + _ struct{} `type:"structure" payload:"Foo"` } //The service client's operations are safe to be used concurrently. @@ -1874,53 +1718,29 @@ func (c *InputService16ProtocolTest) InputService16TestCaseOperation4(input *Inp type InputService16TestShapeFooShape struct { Baz *string `locationName:"baz" type:"string"` - metadataInputService16TestShapeFooShape `json:"-" xml:"-"` -} - -type metadataInputService16TestShapeFooShape struct { - SDKShapeTraits bool `locationName:"foo" type:"structure"` + _ struct{} `locationName:"foo" type:"structure"` } type InputService16TestShapeInputService16TestCaseOperation1Output struct { - metadataInputService16TestShapeInputService16TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService16TestShapeInputService16TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService16TestShapeInputService16TestCaseOperation2Output struct { - metadataInputService16TestShapeInputService16TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService16TestShapeInputService16TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService16TestShapeInputService16TestCaseOperation3Output struct { - metadataInputService16TestShapeInputService16TestCaseOperation3Output `json:"-" xml:"-"` -} - -type metadataInputService16TestShapeInputService16TestCaseOperation3Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService16TestShapeInputService16TestCaseOperation4Output struct { - metadataInputService16TestShapeInputService16TestCaseOperation4Output `json:"-" xml:"-"` -} - -type metadataInputService16TestShapeInputService16TestCaseOperation4Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService16TestShapeInputShape struct { Foo *InputService16TestShapeFooShape `locationName:"foo" type:"structure"` - metadataInputService16TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService16TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure" payload:"Foo"` + _ struct{} `type:"structure" payload:"Foo"` } //The service client's operations are safe to be used concurrently. @@ -2006,11 +1826,7 @@ func (c *InputService17ProtocolTest) InputService17TestCaseOperation1(input *Inp type InputService17TestShapeGrant struct { Grantee *InputService17TestShapeGrantee `type:"structure"` - metadataInputService17TestShapeGrant `json:"-" xml:"-"` -} - -type metadataInputService17TestShapeGrant struct { - SDKShapeTraits bool `locationName:"Grant" type:"structure"` + _ struct{} `locationName:"Grant" type:"structure"` } type InputService17TestShapeGrantee struct { @@ -2018,29 +1834,17 @@ type InputService17TestShapeGrantee struct { Type *string `locationName:"xsi:type" type:"string" xmlAttribute:"true"` - metadataInputService17TestShapeGrantee `json:"-" xml:"-"` -} - -type metadataInputService17TestShapeGrantee struct { - SDKShapeTraits bool `type:"structure" xmlPrefix:"xsi" xmlURI:"http://www.w3.org/2001/XMLSchema-instance"` + _ struct{} `type:"structure" xmlPrefix:"xsi" xmlURI:"http://www.w3.org/2001/XMLSchema-instance"` } type InputService17TestShapeInputService17TestCaseOperation1Input struct { Grant *InputService17TestShapeGrant `locationName:"Grant" type:"structure"` - metadataInputService17TestShapeInputService17TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService17TestShapeInputService17TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure" payload:"Grant"` + _ struct{} `type:"structure" payload:"Grant"` } type InputService17TestShapeInputService17TestCaseOperation1Output struct { - metadataInputService17TestShapeInputService17TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService17TestShapeInputService17TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -2128,19 +1932,11 @@ type InputService18TestShapeInputService18TestCaseOperation1Input struct { Key *string `location:"uri" type:"string"` - metadataInputService18TestShapeInputService18TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService18TestShapeInputService18TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService18TestShapeInputService18TestCaseOperation1Output struct { - metadataInputService18TestShapeInputService18TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService18TestShapeInputService18TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -2250,29 +2046,17 @@ func (c *InputService19ProtocolTest) InputService19TestCaseOperation2(input *Inp } type InputService19TestShapeInputService19TestCaseOperation1Output struct { - metadataInputService19TestShapeInputService19TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService19TestShapeInputService19TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService19TestShapeInputService19TestCaseOperation2Output struct { - metadataInputService19TestShapeInputService19TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService19TestShapeInputService19TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService19TestShapeInputShape struct { Foo *string `location:"querystring" locationName:"param-name" type:"string"` - metadataInputService19TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService19TestShapeInputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -2486,61 +2270,33 @@ func (c *InputService20ProtocolTest) InputService20TestCaseOperation6(input *Inp } type InputService20TestShapeInputService20TestCaseOperation1Output struct { - metadataInputService20TestShapeInputService20TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService20TestShapeInputService20TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService20TestShapeInputService20TestCaseOperation2Output struct { - metadataInputService20TestShapeInputService20TestCaseOperation2Output `json:"-" xml:"-"` -} - -type metadataInputService20TestShapeInputService20TestCaseOperation2Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService20TestShapeInputService20TestCaseOperation3Output struct { - metadataInputService20TestShapeInputService20TestCaseOperation3Output `json:"-" xml:"-"` -} - -type metadataInputService20TestShapeInputService20TestCaseOperation3Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService20TestShapeInputService20TestCaseOperation4Output struct { - metadataInputService20TestShapeInputService20TestCaseOperation4Output `json:"-" xml:"-"` -} - -type metadataInputService20TestShapeInputService20TestCaseOperation4Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService20TestShapeInputService20TestCaseOperation5Output struct { - metadataInputService20TestShapeInputService20TestCaseOperation5Output `json:"-" xml:"-"` -} - -type metadataInputService20TestShapeInputService20TestCaseOperation5Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService20TestShapeInputService20TestCaseOperation6Output struct { - metadataInputService20TestShapeInputService20TestCaseOperation6Output `json:"-" xml:"-"` -} - -type metadataInputService20TestShapeInputService20TestCaseOperation6Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService20TestShapeInputShape struct { RecursiveStruct *InputService20TestShapeRecursiveStructType `type:"structure"` - metadataInputService20TestShapeInputShape `json:"-" xml:"-"` -} - -type metadataInputService20TestShapeInputShape struct { - SDKShapeTraits bool `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` + _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` } type InputService20TestShapeRecursiveStructType struct { @@ -2552,11 +2308,7 @@ type InputService20TestShapeRecursiveStructType struct { RecursiveStruct *InputService20TestShapeRecursiveStructType `type:"structure"` - metadataInputService20TestShapeRecursiveStructType `json:"-" xml:"-"` -} - -type metadataInputService20TestShapeRecursiveStructType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -2642,19 +2394,11 @@ func (c *InputService21ProtocolTest) InputService21TestCaseOperation1(input *Inp type InputService21TestShapeInputService21TestCaseOperation1Input struct { TimeArgInHeader *time.Time `location:"header" locationName:"x-amz-timearg" type:"timestamp" timestampFormat:"rfc822"` - metadataInputService21TestShapeInputService21TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataInputService21TestShapeInputService21TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type InputService21TestShapeInputService21TestCaseOperation1Output struct { - metadataInputService21TestShapeInputService21TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataInputService21TestShapeInputService21TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/restxml/unmarshal_test.go b/private/protocol/restxml/unmarshal_test.go index a88d31922e3..fc479254c8f 100644 --- a/private/protocol/restxml/unmarshal_test.go +++ b/private/protocol/restxml/unmarshal_test.go @@ -140,19 +140,11 @@ func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation2(input *Out } type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - metadataOutputService1TestShapeOutputService1TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService1TestShapeOutputService1TestCaseOperation2Input struct { - metadataOutputService1TestShapeOutputService1TestCaseOperation2Input `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputService1TestCaseOperation2Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService1TestShapeOutputShape struct { @@ -178,11 +170,7 @@ type OutputService1TestShapeOutputShape struct { TrueBool *bool `type:"boolean"` - metadataOutputService1TestShapeOutputShape `json:"-" xml:"-"` -} - -type metadataOutputService1TestShapeOutputShape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -264,21 +252,13 @@ func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *Out } type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - metadataOutputService2TestShapeOutputService2TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { Blob []byte `type:"blob"` - metadataOutputService2TestShapeOutputService2TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService2TestShapeOutputService2TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -360,21 +340,13 @@ func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *Out } type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - metadataOutputService3TestShapeOutputService3TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { ListMember []*string `type:"list"` - metadataOutputService3TestShapeOutputService3TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService3TestShapeOutputService3TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -456,21 +428,13 @@ func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *Out } type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - metadataOutputService4TestShapeOutputService4TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService4TestShapeOutputService4TestCaseOperation1Output struct { ListMember []*string `locationNameList:"item" type:"list"` - metadataOutputService4TestShapeOutputService4TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService4TestShapeOutputService4TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -552,21 +516,13 @@ func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *Out } type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - metadataOutputService5TestShapeOutputService5TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { ListMember []*string `type:"list" flattened:"true"` - metadataOutputService5TestShapeOutputService5TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService5TestShapeOutputService5TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -648,31 +604,19 @@ func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *Out } type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - metadataOutputService6TestShapeOutputService6TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { Map map[string]*OutputService6TestShapeSingleStructure `type:"map"` - metadataOutputService6TestShapeOutputService6TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeOutputService6TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService6TestShapeSingleStructure struct { Foo *string `locationName:"foo" type:"string"` - metadataOutputService6TestShapeSingleStructure `json:"-" xml:"-"` -} - -type metadataOutputService6TestShapeSingleStructure struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -754,21 +698,13 @@ func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1(input *Out } type OutputService7TestShapeOutputService7TestCaseOperation1Input struct { - metadataOutputService7TestShapeOutputService7TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService7TestShapeOutputService7TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService7TestShapeOutputService7TestCaseOperation1Output struct { Map map[string]*string `type:"map" flattened:"true"` - metadataOutputService7TestShapeOutputService7TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService7TestShapeOutputService7TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -850,21 +786,13 @@ func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1(input *Out } type OutputService8TestShapeOutputService8TestCaseOperation1Input struct { - metadataOutputService8TestShapeOutputService8TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeOutputService8TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService8TestShapeOutputService8TestCaseOperation1Output struct { Map map[string]*string `locationNameKey:"foo" locationNameValue:"bar" type:"map"` - metadataOutputService8TestShapeOutputService8TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService8TestShapeOutputService8TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -946,11 +874,7 @@ func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1(input *Out } type OutputService9TestShapeOutputService9TestCaseOperation1Input struct { - metadataOutputService9TestShapeOutputService9TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeOutputService9TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { @@ -958,21 +882,13 @@ type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { Header *string `location:"header" locationName:"X-Foo" type:"string"` - metadataOutputService9TestShapeOutputService9TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeOutputService9TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure" payload:"Data"` + _ struct{} `type:"structure" payload:"Data"` } type OutputService9TestShapeSingleStructure struct { Foo *string `type:"string"` - metadataOutputService9TestShapeSingleStructure `json:"-" xml:"-"` -} - -type metadataOutputService9TestShapeSingleStructure struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1054,21 +970,13 @@ func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1(input *O } type OutputService10TestShapeOutputService10TestCaseOperation1Input struct { - metadataOutputService10TestShapeOutputService10TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService10TestShapeOutputService10TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService10TestShapeOutputService10TestCaseOperation1Output struct { Stream []byte `type:"blob"` - metadataOutputService10TestShapeOutputService10TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService10TestShapeOutputService10TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure" payload:"Stream"` + _ struct{} `type:"structure" payload:"Stream"` } //The service client's operations are safe to be used concurrently. @@ -1150,11 +1058,7 @@ func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1(input *O } type OutputService11TestShapeOutputService11TestCaseOperation1Input struct { - metadataOutputService11TestShapeOutputService11TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService11TestShapeOutputService11TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService11TestShapeOutputService11TestCaseOperation1Output struct { @@ -1176,11 +1080,7 @@ type OutputService11TestShapeOutputService11TestCaseOperation1Output struct { TrueBool *bool `location:"header" locationName:"x-true-bool" type:"boolean"` - metadataOutputService11TestShapeOutputService11TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService11TestShapeOutputService11TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } //The service client's operations are safe to be used concurrently. @@ -1262,21 +1162,13 @@ func (c *OutputService12ProtocolTest) OutputService12TestCaseOperation1(input *O } type OutputService12TestShapeOutputService12TestCaseOperation1Input struct { - metadataOutputService12TestShapeOutputService12TestCaseOperation1Input `json:"-" xml:"-"` -} - -type metadataOutputService12TestShapeOutputService12TestCaseOperation1Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } type OutputService12TestShapeOutputService12TestCaseOperation1Output struct { Foo *string `type:"string"` - metadataOutputService12TestShapeOutputService12TestCaseOperation1Output `json:"-" xml:"-"` -} - -type metadataOutputService12TestShapeOutputService12TestCaseOperation1Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // diff --git a/private/protocol/xml/xmlutil/build.go b/private/protocol/xml/xmlutil/build.go index d3db250231b..0d76dffbd61 100644 --- a/private/protocol/xml/xmlutil/build.go +++ b/private/protocol/xml/xmlutil/build.go @@ -69,7 +69,7 @@ func (b *xmlBuilder) buildValue(value reflect.Value, current *XMLNode, tag refle switch t { case "structure": - if field, ok := value.Type().FieldByName("SDKShapeTraits"); ok { + if field, ok := value.Type().FieldByName("_"); ok { tag = tag + reflect.StructTag(" ") + field.Tag } return b.buildStruct(value, current, tag) diff --git a/private/protocol/xml/xmlutil/unmarshal.go b/private/protocol/xml/xmlutil/unmarshal.go index 5e4fe210b36..49f291a857b 100644 --- a/private/protocol/xml/xmlutil/unmarshal.go +++ b/private/protocol/xml/xmlutil/unmarshal.go @@ -59,7 +59,7 @@ func parse(r reflect.Value, node *XMLNode, tag reflect.StructTag) error { switch t { case "structure": - if field, ok := rtype.FieldByName("SDKShapeTraits"); ok { + if field, ok := rtype.FieldByName("_"); ok { tag = field.Tag } return parseStruct(r, node, tag) diff --git a/service/apigateway/api.go b/service/apigateway/api.go index c3fcfbeac70..48a8a76d8bf 100644 --- a/service/apigateway/api.go +++ b/service/apigateway/api.go @@ -1937,11 +1937,7 @@ type Account struct { // the current Account resource. ThrottleSettings *ThrottleSettings `locationName:"throttleSettings" type:"structure"` - metadataAccount `json:"-" xml:"-"` -} - -type metadataAccount struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1980,11 +1976,7 @@ type ApiKey struct { // A list of Stage resources that are associated with the ApiKey resource. StageKeys []*string `locationName:"stageKeys" type:"list"` - metadataApiKey `json:"-" xml:"-"` -} - -type metadataApiKey struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2010,11 +2002,7 @@ type BasePathMapping struct { // The name of the API's stage. Stage *string `locationName:"stage" type:"string"` - metadataBasePathMapping `json:"-" xml:"-"` -} - -type metadataBasePathMapping struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2038,11 +2026,7 @@ type ClientCertificate struct { PemEncodedCertificate *string `locationName:"pemEncodedCertificate" type:"string"` - metadataClientCertificate `json:"-" xml:"-"` -} - -type metadataClientCertificate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2068,11 +2052,7 @@ type CreateApiKeyInput struct { // Specifies whether the ApiKey can be used by callers. StageKeys []*StageKey `locationName:"stageKeys" type:"list"` - metadataCreateApiKeyInput `json:"-" xml:"-"` -} - -type metadataCreateApiKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2104,11 +2084,7 @@ type CreateBasePathMappingInput struct { // after any base path name. Stage *string `locationName:"stage" type:"string"` - metadataCreateBasePathMappingInput `json:"-" xml:"-"` -} - -type metadataCreateBasePathMappingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2147,11 +2123,7 @@ type CreateDeploymentInput struct { // the values must match [A-Za-z0-9-._~:/?#&=,]+ Variables map[string]*string `locationName:"variables" type:"map"` - metadataCreateDeploymentInput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2186,11 +2158,7 @@ type CreateDomainNameInput struct { // The name of the DomainName resource. DomainName *string `locationName:"domainName" type:"string" required:"true"` - metadataCreateDomainNameInput `json:"-" xml:"-"` -} - -type metadataCreateDomainNameInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2221,11 +2189,7 @@ type CreateModelInput struct { // draft v4 model. Schema *string `locationName:"schema" type:"string"` - metadataCreateModelInput `json:"-" xml:"-"` -} - -type metadataCreateModelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2249,11 +2213,7 @@ type CreateResourceInput struct { // The identifier of the RestApi for the resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataCreateResourceInput `json:"-" xml:"-"` -} - -type metadataCreateResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2277,11 +2237,7 @@ type CreateRestApiInput struct { // The name of the RestApi. Name *string `locationName:"name" type:"string" required:"true"` - metadataCreateRestApiInput `json:"-" xml:"-"` -} - -type metadataCreateRestApiInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2318,11 +2274,7 @@ type CreateStageInput struct { // names can have alphabetic characters, and the values must match [A-Za-z0-9-._~:/?#&=,]+ Variables map[string]*string `locationName:"variables" type:"map"` - metadataCreateStageInput `json:"-" xml:"-"` -} - -type metadataCreateStageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2340,11 +2292,7 @@ type DeleteApiKeyInput struct { // The identifier of the ApiKey resource to be deleted. ApiKey *string `location:"uri" locationName:"api_Key" type:"string" required:"true"` - metadataDeleteApiKeyInput `json:"-" xml:"-"` -} - -type metadataDeleteApiKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2358,11 +2306,7 @@ func (s DeleteApiKeyInput) GoString() string { } type DeleteApiKeyOutput struct { - metadataDeleteApiKeyOutput `json:"-" xml:"-"` -} - -type metadataDeleteApiKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2383,11 +2327,7 @@ type DeleteBasePathMappingInput struct { // The domain name of the BasePathMapping resource to delete. DomainName *string `location:"uri" locationName:"domain_name" type:"string" required:"true"` - metadataDeleteBasePathMappingInput `json:"-" xml:"-"` -} - -type metadataDeleteBasePathMappingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2401,11 +2341,7 @@ func (s DeleteBasePathMappingInput) GoString() string { } type DeleteBasePathMappingOutput struct { - metadataDeleteBasePathMappingOutput `json:"-" xml:"-"` -} - -type metadataDeleteBasePathMappingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2421,11 +2357,7 @@ func (s DeleteBasePathMappingOutput) GoString() string { type DeleteClientCertificateInput struct { ClientCertificateId *string `location:"uri" locationName:"clientcertificate_id" type:"string" required:"true"` - metadataDeleteClientCertificateInput `json:"-" xml:"-"` -} - -type metadataDeleteClientCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2439,11 +2371,7 @@ func (s DeleteClientCertificateInput) GoString() string { } type DeleteClientCertificateOutput struct { - metadataDeleteClientCertificateOutput `json:"-" xml:"-"` -} - -type metadataDeleteClientCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2464,11 +2392,7 @@ type DeleteDeploymentInput struct { // The identifier of the RestApi resource for the Deployment resource to delete. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataDeleteDeploymentInput `json:"-" xml:"-"` -} - -type metadataDeleteDeploymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2482,11 +2406,7 @@ func (s DeleteDeploymentInput) GoString() string { } type DeleteDeploymentOutput struct { - metadataDeleteDeploymentOutput `json:"-" xml:"-"` -} - -type metadataDeleteDeploymentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2504,11 +2424,7 @@ type DeleteDomainNameInput struct { // The name of the DomainName resource to be deleted. DomainName *string `location:"uri" locationName:"domain_name" type:"string" required:"true"` - metadataDeleteDomainNameInput `json:"-" xml:"-"` -} - -type metadataDeleteDomainNameInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2522,11 +2438,7 @@ func (s DeleteDomainNameInput) GoString() string { } type DeleteDomainNameOutput struct { - metadataDeleteDomainNameOutput `json:"-" xml:"-"` -} - -type metadataDeleteDomainNameOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2550,11 +2462,7 @@ type DeleteIntegrationInput struct { // Specifies a delete integration request's API identifier. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataDeleteIntegrationInput `json:"-" xml:"-"` -} - -type metadataDeleteIntegrationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2568,11 +2476,7 @@ func (s DeleteIntegrationInput) GoString() string { } type DeleteIntegrationOutput struct { - metadataDeleteIntegrationOutput `json:"-" xml:"-"` -} - -type metadataDeleteIntegrationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2599,11 +2503,7 @@ type DeleteIntegrationResponseInput struct { // Specifies a delete integration response request's status code. StatusCode *string `location:"uri" locationName:"status_code" type:"string" required:"true"` - metadataDeleteIntegrationResponseInput `json:"-" xml:"-"` -} - -type metadataDeleteIntegrationResponseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2617,11 +2517,7 @@ func (s DeleteIntegrationResponseInput) GoString() string { } type DeleteIntegrationResponseOutput struct { - metadataDeleteIntegrationResponseOutput `json:"-" xml:"-"` -} - -type metadataDeleteIntegrationResponseOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2645,11 +2541,7 @@ type DeleteMethodInput struct { // The RestApi identifier for the Method resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataDeleteMethodInput `json:"-" xml:"-"` -} - -type metadataDeleteMethodInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2663,11 +2555,7 @@ func (s DeleteMethodInput) GoString() string { } type DeleteMethodOutput struct { - metadataDeleteMethodOutput `json:"-" xml:"-"` -} - -type metadataDeleteMethodOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2694,11 +2582,7 @@ type DeleteMethodResponseInput struct { // The status code identifier for the MethodResponse resource. StatusCode *string `location:"uri" locationName:"status_code" type:"string" required:"true"` - metadataDeleteMethodResponseInput `json:"-" xml:"-"` -} - -type metadataDeleteMethodResponseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2712,11 +2596,7 @@ func (s DeleteMethodResponseInput) GoString() string { } type DeleteMethodResponseOutput struct { - metadataDeleteMethodResponseOutput `json:"-" xml:"-"` -} - -type metadataDeleteMethodResponseOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2737,11 +2617,7 @@ type DeleteModelInput struct { // The RestApi under which the model will be deleted. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataDeleteModelInput `json:"-" xml:"-"` -} - -type metadataDeleteModelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2755,11 +2631,7 @@ func (s DeleteModelInput) GoString() string { } type DeleteModelOutput struct { - metadataDeleteModelOutput `json:"-" xml:"-"` -} - -type metadataDeleteModelOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2780,11 +2652,7 @@ type DeleteResourceInput struct { // The RestApi identifier for the Resource resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataDeleteResourceInput `json:"-" xml:"-"` -} - -type metadataDeleteResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2798,11 +2666,7 @@ func (s DeleteResourceInput) GoString() string { } type DeleteResourceOutput struct { - metadataDeleteResourceOutput `json:"-" xml:"-"` -} - -type metadataDeleteResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2820,11 +2684,7 @@ type DeleteRestApiInput struct { // The ID of the RestApi you want to delete. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataDeleteRestApiInput `json:"-" xml:"-"` -} - -type metadataDeleteRestApiInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2838,11 +2698,7 @@ func (s DeleteRestApiInput) GoString() string { } type DeleteRestApiOutput struct { - metadataDeleteRestApiOutput `json:"-" xml:"-"` -} - -type metadataDeleteRestApiOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2863,11 +2719,7 @@ type DeleteStageInput struct { // The name of the Stage resource to delete. StageName *string `location:"uri" locationName:"stage_name" type:"string" required:"true"` - metadataDeleteStageInput `json:"-" xml:"-"` -} - -type metadataDeleteStageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2881,11 +2733,7 @@ func (s DeleteStageInput) GoString() string { } type DeleteStageOutput struct { - metadataDeleteStageOutput `json:"-" xml:"-"` -} - -type metadataDeleteStageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2915,11 +2763,7 @@ type Deployment struct { // The identifier for the deployment resource. Id *string `locationName:"id" type:"string"` - metadataDeployment `json:"-" xml:"-"` -} - -type metadataDeployment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2948,11 +2792,7 @@ type DomainName struct { // The name of the DomainName resource. DomainName *string `locationName:"domainName" type:"string"` - metadataDomainName `json:"-" xml:"-"` -} - -type metadataDomainName struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2973,11 +2813,7 @@ type FlushStageCacheInput struct { // The name of the stage to flush its cache. StageName *string `location:"uri" locationName:"stage_name" type:"string" required:"true"` - metadataFlushStageCacheInput `json:"-" xml:"-"` -} - -type metadataFlushStageCacheInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2991,11 +2827,7 @@ func (s FlushStageCacheInput) GoString() string { } type FlushStageCacheOutput struct { - metadataFlushStageCacheOutput `json:"-" xml:"-"` -} - -type metadataFlushStageCacheOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3011,11 +2843,7 @@ func (s FlushStageCacheOutput) GoString() string { type GenerateClientCertificateInput struct { Description *string `locationName:"description" type:"string"` - metadataGenerateClientCertificateInput `json:"-" xml:"-"` -} - -type metadataGenerateClientCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3031,11 +2859,7 @@ func (s GenerateClientCertificateInput) GoString() string { // Requests Amazon API Gateway to get information about the current Account // resource. type GetAccountInput struct { - metadataGetAccountInput `json:"-" xml:"-"` -} - -type metadataGetAccountInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3053,11 +2877,7 @@ type GetApiKeyInput struct { // The identifier of the ApiKey resource. ApiKey *string `location:"uri" locationName:"api_Key" type:"string" required:"true"` - metadataGetApiKeyInput `json:"-" xml:"-"` -} - -type metadataGetApiKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3078,11 +2898,7 @@ type GetApiKeysInput struct { // The position of the current ApiKeys resource to get information about. Position *string `location:"querystring" locationName:"position" type:"string"` - metadataGetApiKeysInput `json:"-" xml:"-"` -} - -type metadataGetApiKeysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3102,11 +2918,7 @@ type GetApiKeysOutput struct { Position *string `locationName:"position" type:"string"` - metadataGetApiKeysOutput `json:"-" xml:"-"` -} - -type metadataGetApiKeysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3130,11 +2942,7 @@ type GetBasePathMappingInput struct { // The domain name of the BasePathMapping resource to be described. DomainName *string `location:"uri" locationName:"domain_name" type:"string" required:"true"` - metadataGetBasePathMappingInput `json:"-" xml:"-"` -} - -type metadataGetBasePathMappingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3161,11 +2969,7 @@ type GetBasePathMappingsInput struct { // get information about. Position *string `location:"querystring" locationName:"position" type:"string"` - metadataGetBasePathMappingsInput `json:"-" xml:"-"` -} - -type metadataGetBasePathMappingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3186,11 +2990,7 @@ type GetBasePathMappingsOutput struct { Position *string `locationName:"position" type:"string"` - metadataGetBasePathMappingsOutput `json:"-" xml:"-"` -} - -type metadataGetBasePathMappingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3206,11 +3006,7 @@ func (s GetBasePathMappingsOutput) GoString() string { type GetClientCertificateInput struct { ClientCertificateId *string `location:"uri" locationName:"clientcertificate_id" type:"string" required:"true"` - metadataGetClientCertificateInput `json:"-" xml:"-"` -} - -type metadataGetClientCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3228,11 +3024,7 @@ type GetClientCertificatesInput struct { Position *string `location:"querystring" locationName:"position" type:"string"` - metadataGetClientCertificatesInput `json:"-" xml:"-"` -} - -type metadataGetClientCertificatesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3250,11 +3042,7 @@ type GetClientCertificatesOutput struct { Position *string `locationName:"position" type:"string"` - metadataGetClientCertificatesOutput `json:"-" xml:"-"` -} - -type metadataGetClientCertificatesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3276,11 +3064,7 @@ type GetDeploymentInput struct { // information about. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetDeploymentInput `json:"-" xml:"-"` -} - -type metadataGetDeploymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3307,11 +3091,7 @@ type GetDeploymentsInput struct { // to get information about. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetDeploymentsInput `json:"-" xml:"-"` -} - -type metadataGetDeploymentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3335,11 +3115,7 @@ type GetDeploymentsOutput struct { Position *string `locationName:"position" type:"string"` - metadataGetDeploymentsOutput `json:"-" xml:"-"` -} - -type metadataGetDeploymentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3357,11 +3133,7 @@ type GetDomainNameInput struct { // The name of the DomainName resource. DomainName *string `location:"uri" locationName:"domain_name" type:"string" required:"true"` - metadataGetDomainNameInput `json:"-" xml:"-"` -} - -type metadataGetDomainNameInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3383,11 +3155,7 @@ type GetDomainNamesInput struct { // The position of the current domain names to get information about. Position *string `location:"querystring" locationName:"position" type:"string"` - metadataGetDomainNamesInput `json:"-" xml:"-"` -} - -type metadataGetDomainNamesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3408,11 +3176,7 @@ type GetDomainNamesOutput struct { Position *string `locationName:"position" type:"string"` - metadataGetDomainNamesOutput `json:"-" xml:"-"` -} - -type metadataGetDomainNamesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3436,11 +3200,7 @@ type GetIntegrationInput struct { // Specifies a get integration request's API identifier. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetIntegrationInput `json:"-" xml:"-"` -} - -type metadataGetIntegrationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3467,11 +3227,7 @@ type GetIntegrationResponseInput struct { // Specifies a get integration response request's status code. StatusCode *string `location:"uri" locationName:"status_code" type:"string" required:"true"` - metadataGetIntegrationResponseInput `json:"-" xml:"-"` -} - -type metadataGetIntegrationResponseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3495,11 +3251,7 @@ type GetMethodInput struct { // The RestApi identifier for the Method resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetMethodInput `json:"-" xml:"-"` -} - -type metadataGetMethodInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3526,11 +3278,7 @@ type GetMethodResponseInput struct { // The status code identifier for the MethodResponse resource. StatusCode *string `location:"uri" locationName:"status_code" type:"string" required:"true"` - metadataGetMethodResponseInput `json:"-" xml:"-"` -} - -type metadataGetMethodResponseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3554,11 +3302,7 @@ type GetModelInput struct { // The RestApi identifier under which the Model exists. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetModelInput `json:"-" xml:"-"` -} - -type metadataGetModelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3579,11 +3323,7 @@ type GetModelTemplateInput struct { // The ID of the RestApi under which the model exists. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetModelTemplateInput `json:"-" xml:"-"` -} - -type metadataGetModelTemplateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3602,11 +3342,7 @@ type GetModelTemplateOutput struct { // template resource. Value *string `locationName:"value" type:"string"` - metadataGetModelTemplateOutput `json:"-" xml:"-"` -} - -type metadataGetModelTemplateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3632,11 +3368,7 @@ type GetModelsInput struct { // The RestApi identifier. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetModelsInput `json:"-" xml:"-"` -} - -type metadataGetModelsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3656,11 +3388,7 @@ type GetModelsOutput struct { Position *string `locationName:"position" type:"string"` - metadataGetModelsOutput `json:"-" xml:"-"` -} - -type metadataGetModelsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3681,11 +3409,7 @@ type GetResourceInput struct { // The RestApi identifier for the resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetResourceInput `json:"-" xml:"-"` -} - -type metadataGetResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3711,11 +3435,7 @@ type GetResourcesInput struct { // The RestApi identifier for the Resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetResourcesInput `json:"-" xml:"-"` -} - -type metadataGetResourcesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3735,11 +3455,7 @@ type GetResourcesOutput struct { Position *string `locationName:"position" type:"string"` - metadataGetResourcesOutput `json:"-" xml:"-"` -} - -type metadataGetResourcesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3757,11 +3473,7 @@ type GetRestApiInput struct { // The identifier of the RestApi resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetRestApiInput `json:"-" xml:"-"` -} - -type metadataGetRestApiInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3784,11 +3496,7 @@ type GetRestApisInput struct { // about. Position *string `location:"querystring" locationName:"position" type:"string"` - metadataGetRestApisInput `json:"-" xml:"-"` -} - -type metadataGetRestApisInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3809,11 +3517,7 @@ type GetRestApisOutput struct { Position *string `locationName:"position" type:"string"` - metadataGetRestApisOutput `json:"-" xml:"-"` -} - -type metadataGetRestApisOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3835,11 +3539,7 @@ type GetSdkInput struct { StageName *string `location:"uri" locationName:"stage_name" type:"string" required:"true"` - metadataGetSdkInput `json:"-" xml:"-"` -} - -type metadataGetSdkInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3859,11 +3559,7 @@ type GetSdkOutput struct { ContentType *string `location:"header" locationName:"Content-Type" type:"string"` - metadataGetSdkOutput `json:"-" xml:"-"` -} - -type metadataGetSdkOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } // String returns the string representation @@ -3885,11 +3581,7 @@ type GetStageInput struct { // The name of the Stage resource to get information about. StageName *string `location:"uri" locationName:"stage_name" type:"string" required:"true"` - metadataGetStageInput `json:"-" xml:"-"` -} - -type metadataGetStageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3910,11 +3602,7 @@ type GetStagesInput struct { // The stages' API identifiers. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataGetStagesInput `json:"-" xml:"-"` -} - -type metadataGetStagesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3932,11 +3620,7 @@ type GetStagesOutput struct { // An individual Stage resource. Item []*Stage `locationName:"item" type:"list"` - metadataGetStagesOutput `json:"-" xml:"-"` -} - -type metadataGetStagesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3997,11 +3681,7 @@ type Integration struct { // the path to the resource, including the initial /. Uri *string `locationName:"uri" type:"string"` - metadataIntegration `json:"-" xml:"-"` -} - -type metadataIntegration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4042,11 +3722,7 @@ type IntegrationResponse struct { // an existing MethodResponse. StatusCode *string `locationName:"statusCode" type:"string"` - metadataIntegrationResponse `json:"-" xml:"-"` -} - -type metadataIntegrationResponse struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4093,11 +3769,7 @@ type Method struct { // mapping to integration request parameters or templates. RequestParameters map[string]*bool `locationName:"requestParameters" type:"map"` - metadataMethod `json:"-" xml:"-"` -} - -type metadataMethod struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4131,11 +3803,7 @@ type MethodResponse struct { // The method response's status code. StatusCode *string `locationName:"statusCode" type:"string"` - metadataMethodResponse `json:"-" xml:"-"` -} - -type metadataMethodResponse struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4191,11 +3859,7 @@ type MethodSetting struct { // and the value is a double. ThrottlingRateLimit *float64 `locationName:"throttlingRateLimit" type:"double"` - metadataMethodSetting `json:"-" xml:"-"` -} - -type metadataMethodSetting struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4216,11 +3880,7 @@ type MethodSnapshot struct { // Specifies the type of authorization used for the method. AuthorizationType *string `locationName:"authorizationType" type:"string"` - metadataMethodSnapshot `json:"-" xml:"-"` -} - -type metadataMethodSnapshot struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4251,11 +3911,7 @@ type Model struct { // draft v4 model. Schema *string `locationName:"schema" type:"string"` - metadataModel `json:"-" xml:"-"` -} - -type metadataModel struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4291,11 +3947,7 @@ type PatchOperation struct { // The actual value content. Value *string `locationName:"value" type:"string"` - metadataPatchOperation `json:"-" xml:"-"` -} - -type metadataPatchOperation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4352,11 +4004,7 @@ type PutIntegrationInput struct { // Specifies a put integration input's Uniform Resource Identifier (URI). Uri *string `locationName:"uri" type:"string"` - metadataPutIntegrationInput `json:"-" xml:"-"` -} - -type metadataPutIntegrationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4399,11 +4047,7 @@ type PutIntegrationResponseInput struct { // an existing MethodResponse. StatusCode *string `location:"uri" locationName:"status_code" type:"string" required:"true"` - metadataPutIntegrationResponseInput `json:"-" xml:"-"` -} - -type metadataPutIntegrationResponseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4448,11 +4092,7 @@ type PutMethodInput struct { // The RestApi identifier for the new Method resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataPutMethodInput `json:"-" xml:"-"` -} - -type metadataPutMethodInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4493,11 +4133,7 @@ type PutMethodResponseInput struct { // The method response's status code. StatusCode *string `location:"uri" locationName:"status_code" type:"string" required:"true"` - metadataPutMethodResponseInput `json:"-" xml:"-"` -} - -type metadataPutMethodResponseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4528,11 +4164,7 @@ type Resource struct { // the embed option. ResourceMethods map[string]*Method `locationName:"resourceMethods" type:"map"` - metadataResource `json:"-" xml:"-"` -} - -type metadataResource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4560,11 +4192,7 @@ type RestApi struct { // The API's name. Name *string `locationName:"name" type:"string"` - metadataRestApi `json:"-" xml:"-"` -} - -type metadataRestApi struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4617,11 +4245,7 @@ type Stage struct { // can have alphabetic characters, and the values must match [A-Za-z0-9-._~:/?#&=,]+ Variables map[string]*string `locationName:"variables" type:"map"` - metadataStage `json:"-" xml:"-"` -} - -type metadataStage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4642,11 +4266,7 @@ type StageKey struct { // The stage name in the RestApi that the stage key references. StageName *string `locationName:"stageName" type:"string"` - metadataStageKey `json:"-" xml:"-"` -} - -type metadataStageKey struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4676,11 +4296,7 @@ type TestInvokeMethodInput struct { StageVariables map[string]*string `locationName:"stageVariables" type:"map"` - metadataTestInvokeMethodInput `json:"-" xml:"-"` -} - -type metadataTestInvokeMethodInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4710,11 +4326,7 @@ type TestInvokeMethodOutput struct { // The HTTP status code. Status *int64 `locationName:"status" type:"integer"` - metadataTestInvokeMethodOutput `json:"-" xml:"-"` -} - -type metadataTestInvokeMethodOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4735,11 +4347,7 @@ type ThrottleSettings struct { // Returns the rateLimit when ThrottleSettings is called. RateLimit *float64 `locationName:"rateLimit" type:"double"` - metadataThrottleSettings `json:"-" xml:"-"` -} - -type metadataThrottleSettings struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4759,11 +4367,7 @@ type UpdateAccountInput struct { // The patches are applied in the order specified in the list. PatchOperations []*PatchOperation `locationName:"patchOperations" type:"list"` - metadataUpdateAccountInput `json:"-" xml:"-"` -} - -type metadataUpdateAccountInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4785,11 +4389,7 @@ type UpdateApiKeyInput struct { // The patches are applied in the order specified in the list. PatchOperations []*PatchOperation `locationName:"patchOperations" type:"list"` - metadataUpdateApiKeyInput `json:"-" xml:"-"` -} - -type metadataUpdateApiKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4814,11 +4414,7 @@ type UpdateBasePathMappingInput struct { // The patches are applied in the order specified in the list. PatchOperations []*PatchOperation `locationName:"patchOperations" type:"list"` - metadataUpdateBasePathMappingInput `json:"-" xml:"-"` -} - -type metadataUpdateBasePathMappingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4838,11 +4434,7 @@ type UpdateClientCertificateInput struct { // The patches are applied in the order specified in the list. PatchOperations []*PatchOperation `locationName:"patchOperations" type:"list"` - metadataUpdateClientCertificateInput `json:"-" xml:"-"` -} - -type metadataUpdateClientCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4869,11 +4461,7 @@ type UpdateDeploymentInput struct { // to change information about. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataUpdateDeploymentInput `json:"-" xml:"-"` -} - -type metadataUpdateDeploymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4895,11 +4483,7 @@ type UpdateDomainNameInput struct { // The patches are applied in the order specified in the list. PatchOperations []*PatchOperation `locationName:"patchOperations" type:"list"` - metadataUpdateDomainNameInput `json:"-" xml:"-"` -} - -type metadataUpdateDomainNameInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4927,11 +4511,7 @@ type UpdateIntegrationInput struct { // Represents an update integration request's API identifier. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataUpdateIntegrationInput `json:"-" xml:"-"` -} - -type metadataUpdateIntegrationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4962,11 +4542,7 @@ type UpdateIntegrationResponseInput struct { // Specifies an update integration response request's status code. StatusCode *string `location:"uri" locationName:"status_code" type:"string" required:"true"` - metadataUpdateIntegrationResponseInput `json:"-" xml:"-"` -} - -type metadataUpdateIntegrationResponseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4994,11 +4570,7 @@ type UpdateMethodInput struct { // The RestApi identifier for the Method resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataUpdateMethodInput `json:"-" xml:"-"` -} - -type metadataUpdateMethodInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5029,11 +4601,7 @@ type UpdateMethodResponseInput struct { // The status code identifier for the MethodResponse resource. StatusCode *string `location:"uri" locationName:"status_code" type:"string" required:"true"` - metadataUpdateMethodResponseInput `json:"-" xml:"-"` -} - -type metadataUpdateMethodResponseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5058,11 +4626,7 @@ type UpdateModelInput struct { // The RestApi identifier under which the model exists. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataUpdateModelInput `json:"-" xml:"-"` -} - -type metadataUpdateModelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5087,11 +4651,7 @@ type UpdateResourceInput struct { // The RestApi identifier for the Resource resource. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataUpdateResourceInput `json:"-" xml:"-"` -} - -type metadataUpdateResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5113,11 +4673,7 @@ type UpdateRestApiInput struct { // The ID of the RestApi you want to update. RestApiId *string `location:"uri" locationName:"restapi_id" type:"string" required:"true"` - metadataUpdateRestApiInput `json:"-" xml:"-"` -} - -type metadataUpdateRestApiInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5143,11 +4699,7 @@ type UpdateStageInput struct { // The name of the Stage resource to change information about. StageName *string `location:"uri" locationName:"stage_name" type:"string" required:"true"` - metadataUpdateStageInput `json:"-" xml:"-"` -} - -type metadataUpdateStageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/autoscaling/api.go b/service/autoscaling/api.go index 451708f8582..d4140b16fe7 100644 --- a/service/autoscaling/api.go +++ b/service/autoscaling/api.go @@ -1667,11 +1667,7 @@ type Activity struct { // A friendly, more verbose description of the activity status. StatusMessage *string `min:"1" type:"string"` - metadataActivity `json:"-" xml:"-"` -} - -type metadataActivity struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1693,11 +1689,7 @@ type AdjustmentType struct { // and PercentChangeInCapacity. AdjustmentType *string `min:"1" type:"string"` - metadataAdjustmentType `json:"-" xml:"-"` -} - -type metadataAdjustmentType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1718,11 +1710,7 @@ type Alarm struct { // The name of the alarm. AlarmName *string `min:"1" type:"string"` - metadataAlarm `json:"-" xml:"-"` -} - -type metadataAlarm struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1742,11 +1730,7 @@ type AttachInstancesInput struct { // One or more EC2 instance IDs. InstanceIds []*string `type:"list"` - metadataAttachInstancesInput `json:"-" xml:"-"` -} - -type metadataAttachInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1760,11 +1744,7 @@ func (s AttachInstancesInput) GoString() string { } type AttachInstancesOutput struct { - metadataAttachInstancesOutput `json:"-" xml:"-"` -} - -type metadataAttachInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1784,11 +1764,7 @@ type AttachLoadBalancersInput struct { // One or more load balancer names. LoadBalancerNames []*string `type:"list"` - metadataAttachLoadBalancersInput `json:"-" xml:"-"` -} - -type metadataAttachLoadBalancersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1802,11 +1778,7 @@ func (s AttachLoadBalancersInput) GoString() string { } type AttachLoadBalancersOutput struct { - metadataAttachLoadBalancersOutput `json:"-" xml:"-"` -} - -type metadataAttachLoadBalancersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1837,11 +1809,7 @@ type BlockDeviceMapping struct { // The name of the virtual device (for example, ephemeral0). VirtualName *string `min:"1" type:"string"` - metadataBlockDeviceMapping `json:"-" xml:"-"` -} - -type metadataBlockDeviceMapping struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1870,11 +1838,7 @@ type CompleteLifecycleActionInput struct { // The name of the lifecycle hook. LifecycleHookName *string `min:"1" type:"string" required:"true"` - metadataCompleteLifecycleActionInput `json:"-" xml:"-"` -} - -type metadataCompleteLifecycleActionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1888,11 +1852,7 @@ func (s CompleteLifecycleActionInput) GoString() string { } type CompleteLifecycleActionOutput struct { - metadataCompleteLifecycleActionOutput `json:"-" xml:"-"` -} - -type metadataCompleteLifecycleActionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2010,11 +1970,7 @@ type CreateAutoScalingGroupInput struct { // in the Auto Scaling Developer Guide. VPCZoneIdentifier *string `min:"1" type:"string"` - metadataCreateAutoScalingGroupInput `json:"-" xml:"-"` -} - -type metadataCreateAutoScalingGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2028,11 +1984,7 @@ func (s CreateAutoScalingGroupInput) GoString() string { } type CreateAutoScalingGroupOutput struct { - metadataCreateAutoScalingGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateAutoScalingGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2189,11 +2141,7 @@ type CreateLaunchConfigurationInput struct { // data files. UserData *string `type:"string"` - metadataCreateLaunchConfigurationInput `json:"-" xml:"-"` -} - -type metadataCreateLaunchConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2207,11 +2155,7 @@ func (s CreateLaunchConfigurationInput) GoString() string { } type CreateLaunchConfigurationOutput struct { - metadataCreateLaunchConfigurationOutput `json:"-" xml:"-"` -} - -type metadataCreateLaunchConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2228,11 +2172,7 @@ type CreateOrUpdateTagsInput struct { // One or more tags. Tags []*Tag `type:"list" required:"true"` - metadataCreateOrUpdateTagsInput `json:"-" xml:"-"` -} - -type metadataCreateOrUpdateTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2246,11 +2186,7 @@ func (s CreateOrUpdateTagsInput) GoString() string { } type CreateOrUpdateTagsOutput struct { - metadataCreateOrUpdateTagsOutput `json:"-" xml:"-"` -} - -type metadataCreateOrUpdateTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2272,11 +2208,7 @@ type DeleteAutoScalingGroupInput struct { // parameter also deletes any lifecycle actions associated with the group. ForceDelete *bool `type:"boolean"` - metadataDeleteAutoScalingGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteAutoScalingGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2290,11 +2222,7 @@ func (s DeleteAutoScalingGroupInput) GoString() string { } type DeleteAutoScalingGroupOutput struct { - metadataDeleteAutoScalingGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteAutoScalingGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2311,11 +2239,7 @@ type DeleteLaunchConfigurationInput struct { // The name of the launch configuration. LaunchConfigurationName *string `min:"1" type:"string" required:"true"` - metadataDeleteLaunchConfigurationInput `json:"-" xml:"-"` -} - -type metadataDeleteLaunchConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2329,11 +2253,7 @@ func (s DeleteLaunchConfigurationInput) GoString() string { } type DeleteLaunchConfigurationOutput struct { - metadataDeleteLaunchConfigurationOutput `json:"-" xml:"-"` -} - -type metadataDeleteLaunchConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2353,11 +2273,7 @@ type DeleteLifecycleHookInput struct { // The name of the lifecycle hook. LifecycleHookName *string `min:"1" type:"string" required:"true"` - metadataDeleteLifecycleHookInput `json:"-" xml:"-"` -} - -type metadataDeleteLifecycleHookInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2371,11 +2287,7 @@ func (s DeleteLifecycleHookInput) GoString() string { } type DeleteLifecycleHookOutput struct { - metadataDeleteLifecycleHookOutput `json:"-" xml:"-"` -} - -type metadataDeleteLifecycleHookOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2396,11 +2308,7 @@ type DeleteNotificationConfigurationInput struct { // (SNS) topic. TopicARN *string `min:"1" type:"string" required:"true"` - metadataDeleteNotificationConfigurationInput `json:"-" xml:"-"` -} - -type metadataDeleteNotificationConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2414,11 +2322,7 @@ func (s DeleteNotificationConfigurationInput) GoString() string { } type DeleteNotificationConfigurationOutput struct { - metadataDeleteNotificationConfigurationOutput `json:"-" xml:"-"` -} - -type metadataDeleteNotificationConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2438,11 +2342,7 @@ type DeletePolicyInput struct { // The name or Amazon Resource Name (ARN) of the policy. PolicyName *string `min:"1" type:"string" required:"true"` - metadataDeletePolicyInput `json:"-" xml:"-"` -} - -type metadataDeletePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2456,11 +2356,7 @@ func (s DeletePolicyInput) GoString() string { } type DeletePolicyOutput struct { - metadataDeletePolicyOutput `json:"-" xml:"-"` -} - -type metadataDeletePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2480,11 +2376,7 @@ type DeleteScheduledActionInput struct { // The name of the action to delete. ScheduledActionName *string `min:"1" type:"string" required:"true"` - metadataDeleteScheduledActionInput `json:"-" xml:"-"` -} - -type metadataDeleteScheduledActionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2498,11 +2390,7 @@ func (s DeleteScheduledActionInput) GoString() string { } type DeleteScheduledActionOutput struct { - metadataDeleteScheduledActionOutput `json:"-" xml:"-"` -} - -type metadataDeleteScheduledActionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2522,11 +2410,7 @@ type DeleteTagsInput struct { // or false. Tags []*Tag `type:"list" required:"true"` - metadataDeleteTagsInput `json:"-" xml:"-"` -} - -type metadataDeleteTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2540,11 +2424,7 @@ func (s DeleteTagsInput) GoString() string { } type DeleteTagsOutput struct { - metadataDeleteTagsOutput `json:"-" xml:"-"` -} - -type metadataDeleteTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2558,11 +2438,7 @@ func (s DeleteTagsOutput) GoString() string { } type DescribeAccountLimitsInput struct { - metadataDescribeAccountLimitsInput `json:"-" xml:"-"` -} - -type metadataDescribeAccountLimitsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2584,11 +2460,7 @@ type DescribeAccountLimitsOutput struct { // The default limit is 100 per region. MaxNumberOfLaunchConfigurations *int64 `type:"integer"` - metadataDescribeAccountLimitsOutput `json:"-" xml:"-"` -} - -type metadataDescribeAccountLimitsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2602,11 +2474,7 @@ func (s DescribeAccountLimitsOutput) GoString() string { } type DescribeAdjustmentTypesInput struct { - metadataDescribeAdjustmentTypesInput `json:"-" xml:"-"` -} - -type metadataDescribeAdjustmentTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2623,11 +2491,7 @@ type DescribeAdjustmentTypesOutput struct { // The policy adjustment types. AdjustmentTypes []*AdjustmentType `type:"list"` - metadataDescribeAdjustmentTypesOutput `json:"-" xml:"-"` -} - -type metadataDescribeAdjustmentTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2651,11 +2515,7 @@ type DescribeAutoScalingGroupsInput struct { // a previous call.) NextToken *string `type:"string"` - metadataDescribeAutoScalingGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeAutoScalingGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2676,11 +2536,7 @@ type DescribeAutoScalingGroupsOutput struct { // items to return, the string is empty. NextToken *string `type:"string"` - metadataDescribeAutoScalingGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeAutoScalingGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2706,11 +2562,7 @@ type DescribeAutoScalingInstancesInput struct { // a previous call.) NextToken *string `type:"string"` - metadataDescribeAutoScalingInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeAutoScalingInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2731,11 +2583,7 @@ type DescribeAutoScalingInstancesOutput struct { // items to return, the string is empty. NextToken *string `type:"string"` - metadataDescribeAutoScalingInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeAutoScalingInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2749,11 +2597,7 @@ func (s DescribeAutoScalingInstancesOutput) GoString() string { } type DescribeAutoScalingNotificationTypesInput struct { - metadataDescribeAutoScalingNotificationTypesInput `json:"-" xml:"-"` -} - -type metadataDescribeAutoScalingNotificationTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2780,11 +2624,7 @@ type DescribeAutoScalingNotificationTypesOutput struct { // autoscaling:TEST_NOTIFICATION AutoScalingNotificationTypes []*string `type:"list"` - metadataDescribeAutoScalingNotificationTypesOutput `json:"-" xml:"-"` -} - -type metadataDescribeAutoScalingNotificationTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2808,11 +2648,7 @@ type DescribeLaunchConfigurationsInput struct { // a previous call.) NextToken *string `type:"string"` - metadataDescribeLaunchConfigurationsInput `json:"-" xml:"-"` -} - -type metadataDescribeLaunchConfigurationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2833,11 +2669,7 @@ type DescribeLaunchConfigurationsOutput struct { // items to return, the string is empty. NextToken *string `type:"string"` - metadataDescribeLaunchConfigurationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeLaunchConfigurationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2851,11 +2683,7 @@ func (s DescribeLaunchConfigurationsOutput) GoString() string { } type DescribeLifecycleHookTypesInput struct { - metadataDescribeLifecycleHookTypesInput `json:"-" xml:"-"` -} - -type metadataDescribeLifecycleHookTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2876,11 +2704,7 @@ type DescribeLifecycleHookTypesOutput struct { // autoscaling:EC2_INSTANCE_TERMINATING LifecycleHookTypes []*string `type:"list"` - metadataDescribeLifecycleHookTypesOutput `json:"-" xml:"-"` -} - -type metadataDescribeLifecycleHookTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2900,11 +2724,7 @@ type DescribeLifecycleHooksInput struct { // The names of one or more lifecycle hooks. LifecycleHookNames []*string `type:"list"` - metadataDescribeLifecycleHooksInput `json:"-" xml:"-"` -} - -type metadataDescribeLifecycleHooksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2921,11 +2741,7 @@ type DescribeLifecycleHooksOutput struct { // The lifecycle hooks for the specified group. LifecycleHooks []*LifecycleHook `type:"list"` - metadataDescribeLifecycleHooksOutput `json:"-" xml:"-"` -} - -type metadataDescribeLifecycleHooksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2949,11 +2765,7 @@ type DescribeLoadBalancersInput struct { // a previous call.) NextToken *string `type:"string"` - metadataDescribeLoadBalancersInput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2974,11 +2786,7 @@ type DescribeLoadBalancersOutput struct { // items to return, the string is empty. NextToken *string `type:"string"` - metadataDescribeLoadBalancersOutput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2992,11 +2800,7 @@ func (s DescribeLoadBalancersOutput) GoString() string { } type DescribeMetricCollectionTypesInput struct { - metadataDescribeMetricCollectionTypesInput `json:"-" xml:"-"` -} - -type metadataDescribeMetricCollectionTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3016,11 +2820,7 @@ type DescribeMetricCollectionTypesOutput struct { // One or more metrics. Metrics []*MetricCollectionType `type:"list"` - metadataDescribeMetricCollectionTypesOutput `json:"-" xml:"-"` -} - -type metadataDescribeMetricCollectionTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3044,11 +2844,7 @@ type DescribeNotificationConfigurationsInput struct { // a previous call.) NextToken *string `type:"string"` - metadataDescribeNotificationConfigurationsInput `json:"-" xml:"-"` -} - -type metadataDescribeNotificationConfigurationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3069,11 +2865,7 @@ type DescribeNotificationConfigurationsOutput struct { // The notification configurations. NotificationConfigurations []*NotificationConfiguration `type:"list" required:"true"` - metadataDescribeNotificationConfigurationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeNotificationConfigurationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3106,11 +2898,7 @@ type DescribePoliciesInput struct { // One or more policy types. Valid values are SimpleScaling and StepScaling. PolicyTypes []*string `type:"list"` - metadataDescribePoliciesInput `json:"-" xml:"-"` -} - -type metadataDescribePoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3131,11 +2919,7 @@ type DescribePoliciesOutput struct { // The scaling policies. ScalingPolicies []*ScalingPolicy `type:"list"` - metadataDescribePoliciesOutput `json:"-" xml:"-"` -} - -type metadataDescribePoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3166,11 +2950,7 @@ type DescribeScalingActivitiesInput struct { // a previous call.) NextToken *string `type:"string"` - metadataDescribeScalingActivitiesInput `json:"-" xml:"-"` -} - -type metadataDescribeScalingActivitiesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3191,11 +2971,7 @@ type DescribeScalingActivitiesOutput struct { // items to return, the string is empty. NextToken *string `type:"string"` - metadataDescribeScalingActivitiesOutput `json:"-" xml:"-"` -} - -type metadataDescribeScalingActivitiesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3209,11 +2985,7 @@ func (s DescribeScalingActivitiesOutput) GoString() string { } type DescribeScalingProcessTypesInput struct { - metadataDescribeScalingProcessTypesInput `json:"-" xml:"-"` -} - -type metadataDescribeScalingProcessTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3230,11 +3002,7 @@ type DescribeScalingProcessTypesOutput struct { // The names of the process types. Processes []*ProcessType `type:"list"` - metadataDescribeScalingProcessTypesOutput `json:"-" xml:"-"` -} - -type metadataDescribeScalingProcessTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3275,11 +3043,7 @@ type DescribeScheduledActionsInput struct { // provided, this parameter is ignored. StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataDescribeScheduledActionsInput `json:"-" xml:"-"` -} - -type metadataDescribeScheduledActionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3300,11 +3064,7 @@ type DescribeScheduledActionsOutput struct { // The scheduled actions. ScheduledUpdateGroupActions []*ScheduledUpdateGroupAction `type:"list"` - metadataDescribeScheduledActionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeScheduledActionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3328,11 +3088,7 @@ type DescribeTagsInput struct { // a previous call.) NextToken *string `type:"string"` - metadataDescribeTagsInput `json:"-" xml:"-"` -} - -type metadataDescribeTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3353,11 +3109,7 @@ type DescribeTagsOutput struct { // The tags. Tags []*TagDescription `type:"list"` - metadataDescribeTagsOutput `json:"-" xml:"-"` -} - -type metadataDescribeTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3371,11 +3123,7 @@ func (s DescribeTagsOutput) GoString() string { } type DescribeTerminationPolicyTypesInput struct { - metadataDescribeTerminationPolicyTypesInput `json:"-" xml:"-"` -} - -type metadataDescribeTerminationPolicyTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3393,11 +3141,7 @@ type DescribeTerminationPolicyTypesOutput struct { // NewestInstance, ClosestToNextInstanceHour, and Default). TerminationPolicyTypes []*string `type:"list"` - metadataDescribeTerminationPolicyTypesOutput `json:"-" xml:"-"` -} - -type metadataDescribeTerminationPolicyTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3421,11 +3165,7 @@ type DetachInstancesInput struct { // the number of instances detached. ShouldDecrementDesiredCapacity *bool `type:"boolean" required:"true"` - metadataDetachInstancesInput `json:"-" xml:"-"` -} - -type metadataDetachInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3442,11 +3182,7 @@ type DetachInstancesOutput struct { // The activities related to detaching the instances from the Auto Scaling group. Activities []*Activity `type:"list"` - metadataDetachInstancesOutput `json:"-" xml:"-"` -} - -type metadataDetachInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3466,11 +3202,7 @@ type DetachLoadBalancersInput struct { // One or more load balancer names. LoadBalancerNames []*string `type:"list"` - metadataDetachLoadBalancersInput `json:"-" xml:"-"` -} - -type metadataDetachLoadBalancersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3484,11 +3216,7 @@ func (s DetachLoadBalancersInput) GoString() string { } type DetachLoadBalancersOutput struct { - metadataDetachLoadBalancersOutput `json:"-" xml:"-"` -} - -type metadataDetachLoadBalancersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3525,11 +3253,7 @@ type DisableMetricsCollectionInput struct { // GroupTotalInstances Metrics []*string `type:"list"` - metadataDisableMetricsCollectionInput `json:"-" xml:"-"` -} - -type metadataDisableMetricsCollectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3543,11 +3267,7 @@ func (s DisableMetricsCollectionInput) GoString() string { } type DisableMetricsCollectionOutput struct { - metadataDisableMetricsCollectionOutput `json:"-" xml:"-"` -} - -type metadataDisableMetricsCollectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3604,11 +3324,7 @@ type Ebs struct { // Default: standard VolumeType *string `min:"1" type:"string"` - metadataEbs `json:"-" xml:"-"` -} - -type metadataEbs struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3652,11 +3368,7 @@ type EnableMetricsCollectionInput struct { // must explicitly request this metric. Metrics []*string `type:"list"` - metadataEnableMetricsCollectionInput `json:"-" xml:"-"` -} - -type metadataEnableMetricsCollectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3670,11 +3382,7 @@ func (s EnableMetricsCollectionInput) GoString() string { } type EnableMetricsCollectionOutput struct { - metadataEnableMetricsCollectionOutput `json:"-" xml:"-"` -} - -type metadataEnableMetricsCollectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3711,11 +3419,7 @@ type EnabledMetric struct { // GroupTotalInstances Metric *string `min:"1" type:"string"` - metadataEnabledMetric `json:"-" xml:"-"` -} - -type metadataEnabledMetric struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3742,11 +3446,7 @@ type EnterStandbyInput struct { // mode. ShouldDecrementDesiredCapacity *bool `type:"boolean" required:"true"` - metadataEnterStandbyInput `json:"-" xml:"-"` -} - -type metadataEnterStandbyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3763,11 +3463,7 @@ type EnterStandbyOutput struct { // The activities related to moving instances into Standby mode. Activities []*Activity `type:"list"` - metadataEnterStandbyOutput `json:"-" xml:"-"` -} - -type metadataEnterStandbyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3816,11 +3512,7 @@ type ExecutePolicyInput struct { // The name or ARN of the policy. PolicyName *string `min:"1" type:"string" required:"true"` - metadataExecutePolicyInput `json:"-" xml:"-"` -} - -type metadataExecutePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3834,11 +3526,7 @@ func (s ExecutePolicyInput) GoString() string { } type ExecutePolicyOutput struct { - metadataExecutePolicyOutput `json:"-" xml:"-"` -} - -type metadataExecutePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3858,11 +3546,7 @@ type ExitStandbyInput struct { // One or more instance IDs. You must specify at least one instance ID. InstanceIds []*string `type:"list"` - metadataExitStandbyInput `json:"-" xml:"-"` -} - -type metadataExitStandbyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3879,11 +3563,7 @@ type ExitStandbyOutput struct { // The activities related to moving instances out of Standby mode. Activities []*Activity `type:"list"` - metadataExitStandbyOutput `json:"-" xml:"-"` -} - -type metadataExitStandbyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3905,11 +3585,7 @@ type Filter struct { // The value of the filter. Values []*string `type:"list"` - metadataFilter `json:"-" xml:"-"` -} - -type metadataFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3992,11 +3668,7 @@ type Group struct { // Availability Zones of the subnets match the values for AvailabilityZones. VPCZoneIdentifier *string `min:"1" type:"string"` - metadataGroup `json:"-" xml:"-"` -} - -type metadataGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4027,11 +3699,7 @@ type Instance struct { // is not used. LifecycleState *string `type:"string" required:"true" enum:"LifecycleState"` - metadataInstance `json:"-" xml:"-"` -} - -type metadataInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4068,11 +3736,7 @@ type InstanceDetails struct { // in the Auto Scaling Developer Guide. LifecycleState *string `min:"1" type:"string" required:"true"` - metadataInstanceDetails `json:"-" xml:"-"` -} - -type metadataInstanceDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4090,11 +3754,7 @@ type InstanceMonitoring struct { // If True, instance monitoring is enabled. Enabled *bool `type:"boolean"` - metadataInstanceMonitoring `json:"-" xml:"-"` -} - -type metadataInstanceMonitoring struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4175,11 +3835,7 @@ type LaunchConfiguration struct { // The user data available to the instances. UserData *string `type:"string"` - metadataLaunchConfiguration `json:"-" xml:"-"` -} - -type metadataLaunchConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4244,11 +3900,7 @@ type LifecycleHook struct { // the specified notification target. RoleARN *string `min:"1" type:"string"` - metadataLifecycleHook `json:"-" xml:"-"` -} - -type metadataLifecycleHook struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4280,11 +3932,7 @@ type LoadBalancerState struct { // requests to complete before deregistering the instances. State *string `min:"1" type:"string"` - metadataLoadBalancerState `json:"-" xml:"-"` -} - -type metadataLoadBalancerState struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4318,11 +3966,7 @@ type MetricCollectionType struct { // GroupTotalInstances Metric *string `min:"1" type:"string"` - metadataMetricCollectionType `json:"-" xml:"-"` -} - -type metadataMetricCollectionType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4340,11 +3984,7 @@ type MetricGranularityType struct { // The granularity. The only valid value is 1Minute. Granularity *string `min:"1" type:"string"` - metadataMetricGranularityType `json:"-" xml:"-"` -} - -type metadataMetricGranularityType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4379,11 +4019,7 @@ type NotificationConfiguration struct { // (SNS) topic. TopicARN *string `min:"1" type:"string"` - metadataNotificationConfiguration `json:"-" xml:"-"` -} - -type metadataNotificationConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4420,11 +4056,7 @@ type ProcessType struct { // ScheduledActions ProcessName *string `min:"1" type:"string" required:"true"` - metadataProcessType `json:"-" xml:"-"` -} - -type metadataProcessType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4497,11 +4129,7 @@ type PutLifecycleHookInput struct { // existing hooks. RoleARN *string `min:"1" type:"string"` - metadataPutLifecycleHookInput `json:"-" xml:"-"` -} - -type metadataPutLifecycleHookInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4515,11 +4143,7 @@ func (s PutLifecycleHookInput) GoString() string { } type PutLifecycleHookOutput struct { - metadataPutLifecycleHookOutput `json:"-" xml:"-"` -} - -type metadataPutLifecycleHookOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4544,11 +4168,7 @@ type PutNotificationConfigurationInput struct { // (SNS) topic. TopicARN *string `min:"1" type:"string" required:"true"` - metadataPutNotificationConfigurationInput `json:"-" xml:"-"` -} - -type metadataPutNotificationConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4562,11 +4182,7 @@ func (s PutNotificationConfigurationInput) GoString() string { } type PutNotificationConfigurationOutput struct { - metadataPutNotificationConfigurationOutput `json:"-" xml:"-"` -} - -type metadataPutNotificationConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4645,11 +4261,7 @@ type PutScalingPolicyInput struct { // otherwise. StepAdjustments []*StepAdjustment `type:"list"` - metadataPutScalingPolicyInput `json:"-" xml:"-"` -} - -type metadataPutScalingPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4666,11 +4278,7 @@ type PutScalingPolicyOutput struct { // The Amazon Resource Name (ARN) of the policy. PolicyARN *string `min:"1" type:"string"` - metadataPutScalingPolicyOutput `json:"-" xml:"-"` -} - -type metadataPutScalingPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4726,11 +4334,7 @@ type PutScheduledUpdateGroupActionInput struct { // their values must be identical. Time *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataPutScheduledUpdateGroupActionInput `json:"-" xml:"-"` -} - -type metadataPutScheduledUpdateGroupActionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4744,11 +4348,7 @@ func (s PutScheduledUpdateGroupActionInput) GoString() string { } type PutScheduledUpdateGroupActionOutput struct { - metadataPutScheduledUpdateGroupActionOutput `json:"-" xml:"-"` -} - -type metadataPutScheduledUpdateGroupActionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4773,11 +4373,7 @@ type RecordLifecycleActionHeartbeatInput struct { // The name of the lifecycle hook. LifecycleHookName *string `min:"1" type:"string" required:"true"` - metadataRecordLifecycleActionHeartbeatInput `json:"-" xml:"-"` -} - -type metadataRecordLifecycleActionHeartbeatInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4791,11 +4387,7 @@ func (s RecordLifecycleActionHeartbeatInput) GoString() string { } type RecordLifecycleActionHeartbeatOutput struct { - metadataRecordLifecycleActionHeartbeatOutput `json:"-" xml:"-"` -} - -type metadataRecordLifecycleActionHeartbeatOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4809,11 +4401,7 @@ func (s RecordLifecycleActionHeartbeatOutput) GoString() string { } type ResumeProcessesOutput struct { - metadataResumeProcessesOutput `json:"-" xml:"-"` -} - -type metadataResumeProcessesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4877,11 +4465,7 @@ type ScalingPolicy struct { // breach. StepAdjustments []*StepAdjustment `type:"list"` - metadataScalingPolicy `json:"-" xml:"-"` -} - -type metadataScalingPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4917,11 +4501,7 @@ type ScalingProcessQuery struct { // AddToLoadBalancer ScalingProcesses []*string `type:"list"` - metadataScalingProcessQuery `json:"-" xml:"-"` -} - -type metadataScalingProcessQuery struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4971,11 +4551,7 @@ type ScheduledUpdateGroupAction struct { // This parameter is deprecated; use StartTime instead. Time *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataScheduledUpdateGroupAction `json:"-" xml:"-"` -} - -type metadataScheduledUpdateGroupAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5001,11 +4577,7 @@ type SetDesiredCapacityInput struct { // initiating a scaling activity to set your Auto Scaling group to its new capacity. HonorCooldown *bool `type:"boolean"` - metadataSetDesiredCapacityInput `json:"-" xml:"-"` -} - -type metadataSetDesiredCapacityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5019,11 +4591,7 @@ func (s SetDesiredCapacityInput) GoString() string { } type SetDesiredCapacityOutput struct { - metadataSetDesiredCapacityOutput `json:"-" xml:"-"` -} - -type metadataSetDesiredCapacityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5054,11 +4622,7 @@ type SetInstanceHealthInput struct { // for CreateAutoScalingGroup. ShouldRespectGracePeriod *bool `type:"boolean"` - metadataSetInstanceHealthInput `json:"-" xml:"-"` -} - -type metadataSetInstanceHealthInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5072,11 +4636,7 @@ func (s SetInstanceHealthInput) GoString() string { } type SetInstanceHealthOutput struct { - metadataSetInstanceHealthOutput `json:"-" xml:"-"` -} - -type metadataSetInstanceHealthOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5140,11 +4700,7 @@ type StepAdjustment struct { // current capacity. ScalingAdjustment *int64 `type:"integer" required:"true"` - metadataStepAdjustment `json:"-" xml:"-"` -} - -type metadataStepAdjustment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5158,11 +4714,7 @@ func (s StepAdjustment) GoString() string { } type SuspendProcessesOutput struct { - metadataSuspendProcessesOutput `json:"-" xml:"-"` -} - -type metadataSuspendProcessesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5184,11 +4736,7 @@ type SuspendedProcess struct { // The reason that the process was suspended. SuspensionReason *string `min:"1" type:"string"` - metadataSuspendedProcess `json:"-" xml:"-"` -} - -type metadataSuspendedProcess struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5219,11 +4767,7 @@ type Tag struct { // The tag value. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5254,11 +4798,7 @@ type TagDescription struct { // The tag value. Value *string `type:"string"` - metadataTagDescription `json:"-" xml:"-"` -} - -type metadataTagDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5279,11 +4819,7 @@ type TerminateInstanceInAutoScalingGroupInput struct { // group. ShouldDecrementDesiredCapacity *bool `type:"boolean" required:"true"` - metadataTerminateInstanceInAutoScalingGroupInput `json:"-" xml:"-"` -} - -type metadataTerminateInstanceInAutoScalingGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5300,11 +4836,7 @@ type TerminateInstanceInAutoScalingGroupOutput struct { // A scaling activity. Activity *Activity `type:"structure"` - metadataTerminateInstanceInAutoScalingGroupOutput `json:"-" xml:"-"` -} - -type metadataTerminateInstanceInAutoScalingGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5381,11 +4913,7 @@ type UpdateAutoScalingGroupInput struct { // in the Auto Scaling Developer Guide. VPCZoneIdentifier *string `min:"1" type:"string"` - metadataUpdateAutoScalingGroupInput `json:"-" xml:"-"` -} - -type metadataUpdateAutoScalingGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5399,11 +4927,7 @@ func (s UpdateAutoScalingGroupInput) GoString() string { } type UpdateAutoScalingGroupOutput struct { - metadataUpdateAutoScalingGroupOutput `json:"-" xml:"-"` -} - -type metadataUpdateAutoScalingGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cloudformation/api.go b/service/cloudformation/api.go index 65251725e3c..6297479f310 100644 --- a/service/cloudformation/api.go +++ b/service/cloudformation/api.go @@ -634,11 +634,7 @@ type AccountLimit struct { // The value that is associated with the account limit name. Value *int64 `type:"integer"` - metadataAccountLimit `json:"-" xml:"-"` -} - -type metadataAccountLimit struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -656,11 +652,7 @@ type CancelUpdateStackInput struct { // The name or the unique stack ID that is associated with the stack. StackName *string `type:"string" required:"true"` - metadataCancelUpdateStackInput `json:"-" xml:"-"` -} - -type metadataCancelUpdateStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -674,11 +666,7 @@ func (s CancelUpdateStackInput) GoString() string { } type CancelUpdateStackOutput struct { - metadataCancelUpdateStackOutput `json:"-" xml:"-"` -} - -type metadataCancelUpdateStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -796,11 +784,7 @@ type CreateStackInput struct { // back. TimeoutInMinutes *int64 `min:"1" type:"integer"` - metadataCreateStackInput `json:"-" xml:"-"` -} - -type metadataCreateStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -818,11 +802,7 @@ type CreateStackOutput struct { // Unique identifier of the stack. StackId *string `type:"string"` - metadataCreateStackOutput `json:"-" xml:"-"` -} - -type metadataCreateStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -840,11 +820,7 @@ type DeleteStackInput struct { // The name or the unique stack ID that is associated with the stack. StackName *string `type:"string" required:"true"` - metadataDeleteStackInput `json:"-" xml:"-"` -} - -type metadataDeleteStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -858,11 +834,7 @@ func (s DeleteStackInput) GoString() string { } type DeleteStackOutput struct { - metadataDeleteStackOutput `json:"-" xml:"-"` -} - -type metadataDeleteStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -880,11 +852,7 @@ type DescribeAccountLimitsInput struct { // A string that identifies the next page of limits that you want to retrieve. NextToken *string `min:"1" type:"string"` - metadataDescribeAccountLimitsInput `json:"-" xml:"-"` -} - -type metadataDescribeAccountLimitsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -907,11 +875,7 @@ type DescribeAccountLimitsOutput struct { // this value is null. NextToken *string `min:"1" type:"string"` - metadataDescribeAccountLimitsOutput `json:"-" xml:"-"` -} - -type metadataDescribeAccountLimitsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -940,11 +904,7 @@ type DescribeStackEventsInput struct { // is no default value. StackName *string `type:"string"` - metadataDescribeStackEventsInput `json:"-" xml:"-"` -} - -type metadataDescribeStackEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -966,11 +926,7 @@ type DescribeStackEventsOutput struct { // A list of StackEvents structures. StackEvents []*StackEvent `type:"list"` - metadataDescribeStackEventsOutput `json:"-" xml:"-"` -} - -type metadataDescribeStackEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -998,11 +954,7 @@ type DescribeStackResourceInput struct { // is no default value. StackName *string `type:"string" required:"true"` - metadataDescribeStackResourceInput `json:"-" xml:"-"` -} - -type metadataDescribeStackResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1021,11 +973,7 @@ type DescribeStackResourceOutput struct { // resource in the specified stack. StackResourceDetail *StackResourceDetail `type:"structure"` - metadataDescribeStackResourceOutput `json:"-" xml:"-"` -} - -type metadataDescribeStackResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1070,11 +1018,7 @@ type DescribeStackResourcesInput struct { // PhysicalResourceId. StackName *string `type:"string"` - metadataDescribeStackResourcesInput `json:"-" xml:"-"` -} - -type metadataDescribeStackResourcesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1092,11 +1036,7 @@ type DescribeStackResourcesOutput struct { // A list of StackResource structures. StackResources []*StackResource `type:"list"` - metadataDescribeStackResourcesOutput `json:"-" xml:"-"` -} - -type metadataDescribeStackResourcesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1123,11 +1063,7 @@ type DescribeStacksInput struct { // is no default value. StackName *string `type:"string"` - metadataDescribeStacksInput `json:"-" xml:"-"` -} - -type metadataDescribeStacksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1149,11 +1085,7 @@ type DescribeStacksOutput struct { // A list of stack structures. Stacks []*Stack `type:"list"` - metadataDescribeStacksOutput `json:"-" xml:"-"` -} - -type metadataDescribeStacksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1188,11 +1120,7 @@ type EstimateTemplateCostInput struct { // only TemplateBody is used. TemplateURL *string `min:"1" type:"string"` - metadataEstimateTemplateCostInput `json:"-" xml:"-"` -} - -type metadataEstimateTemplateCostInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1211,11 +1139,7 @@ type EstimateTemplateCostOutput struct { // resources required to run the template. Url *string `type:"string"` - metadataEstimateTemplateCostOutput `json:"-" xml:"-"` -} - -type metadataEstimateTemplateCostOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1234,11 +1158,7 @@ type GetStackPolicyInput struct { // you want to get. StackName *string `type:"string" required:"true"` - metadataGetStackPolicyInput `json:"-" xml:"-"` -} - -type metadataGetStackPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1258,11 +1178,7 @@ type GetStackPolicyOutput struct { // in the AWS CloudFormation User Guide.) StackPolicyBody *string `min:"1" type:"string"` - metadataGetStackPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetStackPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1285,11 +1201,7 @@ type GetTemplateInput struct { // is no default value. StackName *string `type:"string" required:"true"` - metadataGetTemplateInput `json:"-" xml:"-"` -} - -type metadataGetTemplateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1309,11 +1221,7 @@ type GetTemplateOutput struct { // in the AWS CloudFormation User Guide.) TemplateBody *string `min:"1" type:"string"` - metadataGetTemplateOutput `json:"-" xml:"-"` -} - -type metadataGetTemplateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1355,11 +1263,7 @@ type GetTemplateSummaryInput struct { // TemplateBody, or TemplateURL. TemplateURL *string `min:"1" type:"string"` - metadataGetTemplateSummaryInput `json:"-" xml:"-"` -} - -type metadataGetTemplateSummaryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1408,11 +1312,7 @@ type GetTemplateSummaryOutput struct { // template. Version *string `type:"string"` - metadataGetTemplateSummaryOutput `json:"-" xml:"-"` -} - -type metadataGetTemplateSummaryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1441,11 +1341,7 @@ type ListStackResourcesInput struct { // is no default value. StackName *string `type:"string" required:"true"` - metadataListStackResourcesInput `json:"-" xml:"-"` -} - -type metadataListStackResourcesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1467,11 +1363,7 @@ type ListStackResourcesOutput struct { // A list of StackResourceSummary structures. StackResourceSummaries []*StackResourceSummary `type:"list"` - metadataListStackResourcesOutput `json:"-" xml:"-"` -} - -type metadataListStackResourcesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1497,11 +1389,7 @@ type ListStacksInput struct { // stack status codes, see the StackStatus parameter of the Stack data type. StackStatusFilter []*string `type:"list"` - metadataListStacksInput `json:"-" xml:"-"` -} - -type metadataListStacksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1524,11 +1412,7 @@ type ListStacksOutput struct { // stacks. StackSummaries []*StackSummary `type:"list"` - metadataListStacksOutput `json:"-" xml:"-"` -} - -type metadataListStacksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1552,11 +1436,7 @@ type Output struct { // The value associated with the output. OutputValue *string `type:"string"` - metadataOutput `json:"-" xml:"-"` -} - -type metadataOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1584,11 +1464,7 @@ type Parameter struct { // value. UsePreviousValue *bool `type:"boolean"` - metadataParameter `json:"-" xml:"-"` -} - -type metadataParameter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1608,11 +1484,7 @@ type ParameterConstraints struct { // A list of values that are permitted for a parameter. AllowedValues []*string `type:"list"` - metadataParameterConstraints `json:"-" xml:"-"` -} - -type metadataParameterConstraints struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1646,11 +1518,7 @@ type ParameterDeclaration struct { // The type of parameter. ParameterType *string `type:"string"` - metadataParameterDeclaration `json:"-" xml:"-"` -} - -type metadataParameterDeclaration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1680,11 +1548,7 @@ type SetStackPolicyInput struct { // but not both. StackPolicyURL *string `min:"1" type:"string"` - metadataSetStackPolicyInput `json:"-" xml:"-"` -} - -type metadataSetStackPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1698,11 +1562,7 @@ func (s SetStackPolicyInput) GoString() string { } type SetStackPolicyOutput struct { - metadataSetStackPolicyOutput `json:"-" xml:"-"` -} - -type metadataSetStackPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1735,11 +1595,7 @@ type SignalResourceInput struct { // condition), each signal requires a different unique ID. UniqueId *string `min:"1" type:"string" required:"true"` - metadataSignalResourceInput `json:"-" xml:"-"` -} - -type metadataSignalResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1753,11 +1609,7 @@ func (s SignalResourceInput) GoString() string { } type SignalResourceOutput struct { - metadataSignalResourceOutput `json:"-" xml:"-"` -} - -type metadataSignalResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1817,11 +1669,7 @@ type Stack struct { // The amount of time within which stack creation should complete. TimeoutInMinutes *int64 `min:"1" type:"integer"` - metadataStack `json:"-" xml:"-"` -} - -type metadataStack struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1869,11 +1717,7 @@ type StackEvent struct { // Time the status was updated. Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - metadataStackEvent `json:"-" xml:"-"` -} - -type metadataStackEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1918,11 +1762,7 @@ type StackResource struct { // Time the status was updated. Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - metadataStackResource `json:"-" xml:"-"` -} - -type metadataStackResource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1972,11 +1812,7 @@ type StackResourceDetail struct { // The name associated with the stack. StackName *string `type:"string"` - metadataStackResourceDetail `json:"-" xml:"-"` -} - -type metadataStackResourceDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2012,11 +1848,7 @@ type StackResourceSummary struct { // in the AWS CloudFormation User Guide.) ResourceType *string `type:"string" required:"true"` - metadataStackResourceSummary `json:"-" xml:"-"` -} - -type metadataStackResourceSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2056,11 +1888,7 @@ type StackSummary struct { // The template description of the template used to create the stack. TemplateDescription *string `type:"string"` - metadataStackSummary `json:"-" xml:"-"` -} - -type metadataStackSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2086,11 +1914,7 @@ type Tag struct { // of 256 characters for a tag value. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2118,11 +1942,7 @@ type TemplateParameter struct { // The name associated with the parameter. ParameterKey *string `type:"string"` - metadataTemplateParameter `json:"-" xml:"-"` -} - -type metadataTemplateParameter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2235,11 +2055,7 @@ type UpdateStackInput struct { // updating. UsePreviousTemplate *bool `type:"boolean"` - metadataUpdateStackInput `json:"-" xml:"-"` -} - -type metadataUpdateStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2257,11 +2073,7 @@ type UpdateStackOutput struct { // Unique identifier of the stack. StackId *string `type:"string"` - metadataUpdateStackOutput `json:"-" xml:"-"` -} - -type metadataUpdateStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2294,11 +2106,7 @@ type ValidateTemplateInput struct { // only TemplateBody is used. TemplateURL *string `min:"1" type:"string"` - metadataValidateTemplateInput `json:"-" xml:"-"` -} - -type metadataValidateTemplateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2330,11 +2138,7 @@ type ValidateTemplateOutput struct { // A list of TemplateParameter structures. Parameters []*TemplateParameter `type:"list"` - metadataValidateTemplateOutput `json:"-" xml:"-"` -} - -type metadataValidateTemplateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cloudfront/api.go b/service/cloudfront/api.go index 701c756688f..df4fae838b4 100644 --- a/service/cloudfront/api.go +++ b/service/cloudfront/api.go @@ -678,11 +678,7 @@ type ActiveTrustedSigners struct { // value of Quantity for ActiveTrustedSigners will be 3. Quantity *int64 `type:"integer" required:"true"` - metadataActiveTrustedSigners `json:"-" xml:"-"` -} - -type metadataActiveTrustedSigners struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -705,11 +701,7 @@ type Aliases struct { // The number of CNAMEs, if any, for this distribution. Quantity *int64 `type:"integer" required:"true"` - metadataAliases `json:"-" xml:"-"` -} - -type metadataAliases struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -748,11 +740,7 @@ type AllowedMethods struct { // requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests). Quantity *int64 `type:"integer" required:"true"` - metadataAllowedMethods `json:"-" xml:"-"` -} - -type metadataAllowedMethods struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -859,11 +847,7 @@ type CacheBehavior struct { // the HTTPS URL. ViewerProtocolPolicy *string `type:"string" required:"true" enum:"ViewerProtocolPolicy"` - metadataCacheBehavior `json:"-" xml:"-"` -} - -type metadataCacheBehavior struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -885,11 +869,7 @@ type CacheBehaviors struct { // The number of cache behaviors for this distribution. Quantity *int64 `type:"integer" required:"true"` - metadataCacheBehaviors `json:"-" xml:"-"` -} - -type metadataCacheBehaviors struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -918,11 +898,7 @@ type CachedMethods struct { // (for caching responses to GET, HEAD, and OPTIONS requests). Quantity *int64 `type:"integer" required:"true"` - metadataCachedMethods `json:"-" xml:"-"` -} - -type metadataCachedMethods struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -945,11 +921,7 @@ type CookieNames struct { // The number of whitelisted cookies for this cache behavior. Quantity *int64 `type:"integer" required:"true"` - metadataCookieNames `json:"-" xml:"-"` -} - -type metadataCookieNames struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -975,11 +947,7 @@ type CookiePreference struct { // CloudFront to forward to your origin that is associated with this cache behavior. WhitelistedNames *CookieNames `type:"structure"` - metadataCookiePreference `json:"-" xml:"-"` -} - -type metadataCookiePreference struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -997,11 +965,7 @@ type CreateCloudFrontOriginAccessIdentityInput struct { // The origin access identity's configuration information. CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `locationName:"CloudFrontOriginAccessIdentityConfig" type:"structure" required:"true"` - metadataCreateCloudFrontOriginAccessIdentityInput `json:"-" xml:"-"` -} - -type metadataCreateCloudFrontOriginAccessIdentityInput struct { - SDKShapeTraits bool `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` + _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` } // String returns the string representation @@ -1026,11 +990,7 @@ type CreateCloudFrontOriginAccessIdentityOutput struct { // example: https://cloudfront.amazonaws.com/2010-11-01/origin-access-identity/cloudfront/E74FTE3AJFJ256A. Location *string `location:"header" locationName:"Location" type:"string"` - metadataCreateCloudFrontOriginAccessIdentityOutput `json:"-" xml:"-"` -} - -type metadataCreateCloudFrontOriginAccessIdentityOutput struct { - SDKShapeTraits bool `type:"structure" payload:"CloudFrontOriginAccessIdentity"` + _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentity"` } // String returns the string representation @@ -1048,11 +1008,7 @@ type CreateDistributionInput struct { // The distribution's configuration information. DistributionConfig *DistributionConfig `locationName:"DistributionConfig" type:"structure" required:"true"` - metadataCreateDistributionInput `json:"-" xml:"-"` -} - -type metadataCreateDistributionInput struct { - SDKShapeTraits bool `type:"structure" payload:"DistributionConfig"` + _ struct{} `type:"structure" payload:"DistributionConfig"` } // String returns the string representation @@ -1077,11 +1033,7 @@ type CreateDistributionOutput struct { // example: https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5. Location *string `location:"header" locationName:"Location" type:"string"` - metadataCreateDistributionOutput `json:"-" xml:"-"` -} - -type metadataCreateDistributionOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Distribution"` + _ struct{} `type:"structure" payload:"Distribution"` } // String returns the string representation @@ -1102,11 +1054,7 @@ type CreateInvalidationInput struct { // The batch information for the invalidation. InvalidationBatch *InvalidationBatch `locationName:"InvalidationBatch" type:"structure" required:"true"` - metadataCreateInvalidationInput `json:"-" xml:"-"` -} - -type metadataCreateInvalidationInput struct { - SDKShapeTraits bool `type:"structure" payload:"InvalidationBatch"` + _ struct{} `type:"structure" payload:"InvalidationBatch"` } // String returns the string representation @@ -1128,11 +1076,7 @@ type CreateInvalidationOutput struct { // including the Invalidation ID. Location *string `location:"header" locationName:"Location" type:"string"` - metadataCreateInvalidationOutput `json:"-" xml:"-"` -} - -type metadataCreateInvalidationOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Invalidation"` + _ struct{} `type:"structure" payload:"Invalidation"` } // String returns the string representation @@ -1150,11 +1094,7 @@ type CreateStreamingDistributionInput struct { // The streaming distribution's configuration information. StreamingDistributionConfig *StreamingDistributionConfig `locationName:"StreamingDistributionConfig" type:"structure" required:"true"` - metadataCreateStreamingDistributionInput `json:"-" xml:"-"` -} - -type metadataCreateStreamingDistributionInput struct { - SDKShapeTraits bool `type:"structure" payload:"StreamingDistributionConfig"` + _ struct{} `type:"structure" payload:"StreamingDistributionConfig"` } // String returns the string representation @@ -1179,11 +1119,7 @@ type CreateStreamingDistributionOutput struct { // The streaming distribution's information. StreamingDistribution *StreamingDistribution `type:"structure"` - metadataCreateStreamingDistributionOutput `json:"-" xml:"-"` -} - -type metadataCreateStreamingDistributionOutput struct { - SDKShapeTraits bool `type:"structure" payload:"StreamingDistribution"` + _ struct{} `type:"structure" payload:"StreamingDistribution"` } // String returns the string representation @@ -1230,11 +1166,7 @@ type CustomErrorResponse struct { // return the custom error page to the viewer. ResponsePagePath *string `type:"string"` - metadataCustomErrorResponse `json:"-" xml:"-"` -} - -type metadataCustomErrorResponse struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1256,11 +1188,7 @@ type CustomErrorResponses struct { // The number of custom error responses for this distribution. Quantity *int64 `type:"integer" required:"true"` - metadataCustomErrorResponses `json:"-" xml:"-"` -} - -type metadataCustomErrorResponses struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1284,11 +1212,7 @@ type CustomOriginConfig struct { // The origin protocol policy to apply to your origin. OriginProtocolPolicy *string `type:"string" required:"true" enum:"OriginProtocolPolicy"` - metadataCustomOriginConfig `json:"-" xml:"-"` -} - -type metadataCustomOriginConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1375,11 +1299,7 @@ type DefaultCacheBehavior struct { // the HTTPS URL. ViewerProtocolPolicy *string `type:"string" required:"true" enum:"ViewerProtocolPolicy"` - metadataDefaultCacheBehavior `json:"-" xml:"-"` -} - -type metadataDefaultCacheBehavior struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1401,11 +1321,7 @@ type DeleteCloudFrontOriginAccessIdentityInput struct { // For example: E2QWRUHAPOMQZL. IfMatch *string `location:"header" locationName:"If-Match" type:"string"` - metadataDeleteCloudFrontOriginAccessIdentityInput `json:"-" xml:"-"` -} - -type metadataDeleteCloudFrontOriginAccessIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1419,11 +1335,7 @@ func (s DeleteCloudFrontOriginAccessIdentityInput) GoString() string { } type DeleteCloudFrontOriginAccessIdentityOutput struct { - metadataDeleteCloudFrontOriginAccessIdentityOutput `json:"-" xml:"-"` -} - -type metadataDeleteCloudFrontOriginAccessIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1445,11 +1357,7 @@ type DeleteDistributionInput struct { // For example: E2QWRUHAPOMQZL. IfMatch *string `location:"header" locationName:"If-Match" type:"string"` - metadataDeleteDistributionInput `json:"-" xml:"-"` -} - -type metadataDeleteDistributionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1463,11 +1371,7 @@ func (s DeleteDistributionInput) GoString() string { } type DeleteDistributionOutput struct { - metadataDeleteDistributionOutput `json:"-" xml:"-"` -} - -type metadataDeleteDistributionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1489,11 +1393,7 @@ type DeleteStreamingDistributionInput struct { // distribution. For example: E2QWRUHAPOMQZL. IfMatch *string `location:"header" locationName:"If-Match" type:"string"` - metadataDeleteStreamingDistributionInput `json:"-" xml:"-"` -} - -type metadataDeleteStreamingDistributionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1507,11 +1407,7 @@ func (s DeleteStreamingDistributionInput) GoString() string { } type DeleteStreamingDistributionOutput struct { - metadataDeleteStreamingDistributionOutput `json:"-" xml:"-"` -} - -type metadataDeleteStreamingDistributionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1556,11 +1452,7 @@ type Distribution struct { // throughout the Amazon CloudFront system. Status *string `type:"string" required:"true"` - metadataDistribution `json:"-" xml:"-"` -} - -type metadataDistribution struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1639,11 +1531,7 @@ type DistributionConfig struct { // of the AWS WAF web ACL that is associated with the distribution. WebACLId *string `type:"string"` - metadataDistributionConfig `json:"-" xml:"-"` -} - -type metadataDistributionConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1682,11 +1570,7 @@ type DistributionList struct { // The number of distributions that were created by the current AWS account. Quantity *int64 `type:"integer" required:"true"` - metadataDistributionList `json:"-" xml:"-"` -} - -type metadataDistributionList struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1752,11 +1636,7 @@ type DistributionSummary struct { // The Web ACL Id (if any) associated with the distribution. WebACLId *string `type:"string" required:"true"` - metadataDistributionSummary `json:"-" xml:"-"` -} - -type metadataDistributionSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1784,11 +1664,7 @@ type ForwardedValues struct { // specify false. QueryString *bool `type:"boolean" required:"true"` - metadataForwardedValues `json:"-" xml:"-"` -} - -type metadataForwardedValues struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1832,11 +1708,7 @@ type GeoRestriction struct { // you want CloudFront to distribute your content. RestrictionType *string `type:"string" required:"true" enum:"GeoRestrictionType"` - metadataGeoRestriction `json:"-" xml:"-"` -} - -type metadataGeoRestriction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1854,11 +1726,7 @@ type GetCloudFrontOriginAccessIdentityConfigInput struct { // The identity's id. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetCloudFrontOriginAccessIdentityConfigInput `json:"-" xml:"-"` -} - -type metadataGetCloudFrontOriginAccessIdentityConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1879,11 +1747,7 @@ type GetCloudFrontOriginAccessIdentityConfigOutput struct { // The current version of the configuration. For example: E2QWRUHAPOMQZL. ETag *string `location:"header" locationName:"ETag" type:"string"` - metadataGetCloudFrontOriginAccessIdentityConfigOutput `json:"-" xml:"-"` -} - -type metadataGetCloudFrontOriginAccessIdentityConfigOutput struct { - SDKShapeTraits bool `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` + _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` } // String returns the string representation @@ -1901,11 +1765,7 @@ type GetCloudFrontOriginAccessIdentityInput struct { // The identity's id. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetCloudFrontOriginAccessIdentityInput `json:"-" xml:"-"` -} - -type metadataGetCloudFrontOriginAccessIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1927,11 +1787,7 @@ type GetCloudFrontOriginAccessIdentityOutput struct { // E2QWRUHAPOMQZL. ETag *string `location:"header" locationName:"ETag" type:"string"` - metadataGetCloudFrontOriginAccessIdentityOutput `json:"-" xml:"-"` -} - -type metadataGetCloudFrontOriginAccessIdentityOutput struct { - SDKShapeTraits bool `type:"structure" payload:"CloudFrontOriginAccessIdentity"` + _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentity"` } // String returns the string representation @@ -1949,11 +1805,7 @@ type GetDistributionConfigInput struct { // The distribution's id. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetDistributionConfigInput `json:"-" xml:"-"` -} - -type metadataGetDistributionConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1974,11 +1826,7 @@ type GetDistributionConfigOutput struct { // The current version of the configuration. For example: E2QWRUHAPOMQZL. ETag *string `location:"header" locationName:"ETag" type:"string"` - metadataGetDistributionConfigOutput `json:"-" xml:"-"` -} - -type metadataGetDistributionConfigOutput struct { - SDKShapeTraits bool `type:"structure" payload:"DistributionConfig"` + _ struct{} `type:"structure" payload:"DistributionConfig"` } // String returns the string representation @@ -1996,11 +1844,7 @@ type GetDistributionInput struct { // The distribution's id. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetDistributionInput `json:"-" xml:"-"` -} - -type metadataGetDistributionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2021,11 +1865,7 @@ type GetDistributionOutput struct { // The current version of the distribution's information. For example: E2QWRUHAPOMQZL. ETag *string `location:"header" locationName:"ETag" type:"string"` - metadataGetDistributionOutput `json:"-" xml:"-"` -} - -type metadataGetDistributionOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Distribution"` + _ struct{} `type:"structure" payload:"Distribution"` } // String returns the string representation @@ -2046,11 +1886,7 @@ type GetInvalidationInput struct { // The invalidation's id. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetInvalidationInput `json:"-" xml:"-"` -} - -type metadataGetInvalidationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2068,11 +1904,7 @@ type GetInvalidationOutput struct { // The invalidation's information. Invalidation *Invalidation `type:"structure"` - metadataGetInvalidationOutput `json:"-" xml:"-"` -} - -type metadataGetInvalidationOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Invalidation"` + _ struct{} `type:"structure" payload:"Invalidation"` } // String returns the string representation @@ -2090,11 +1922,7 @@ type GetStreamingDistributionConfigInput struct { // The streaming distribution's id. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetStreamingDistributionConfigInput `json:"-" xml:"-"` -} - -type metadataGetStreamingDistributionConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2115,11 +1943,7 @@ type GetStreamingDistributionConfigOutput struct { // The streaming distribution's configuration information. StreamingDistributionConfig *StreamingDistributionConfig `type:"structure"` - metadataGetStreamingDistributionConfigOutput `json:"-" xml:"-"` -} - -type metadataGetStreamingDistributionConfigOutput struct { - SDKShapeTraits bool `type:"structure" payload:"StreamingDistributionConfig"` + _ struct{} `type:"structure" payload:"StreamingDistributionConfig"` } // String returns the string representation @@ -2137,11 +1961,7 @@ type GetStreamingDistributionInput struct { // The streaming distribution's id. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetStreamingDistributionInput `json:"-" xml:"-"` -} - -type metadataGetStreamingDistributionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2163,11 +1983,7 @@ type GetStreamingDistributionOutput struct { // The streaming distribution's information. StreamingDistribution *StreamingDistribution `type:"structure"` - metadataGetStreamingDistributionOutput `json:"-" xml:"-"` -} - -type metadataGetStreamingDistributionOutput struct { - SDKShapeTraits bool `type:"structure" payload:"StreamingDistribution"` + _ struct{} `type:"structure" payload:"StreamingDistribution"` } // String returns the string representation @@ -2203,11 +2019,7 @@ type Headers struct { // Items. Quantity *int64 `type:"integer" required:"true"` - metadataHeaders `json:"-" xml:"-"` -} - -type metadataHeaders struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2235,11 +2047,7 @@ type Invalidation struct { // the status is Completed. Status *string `type:"string" required:"true"` - metadataInvalidation `json:"-" xml:"-"` -} - -type metadataInvalidation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2273,11 +2081,7 @@ type InvalidationBatch struct { // path, or CloudFront will not invalidate the old version of the updated object. Paths *Paths `type:"structure" required:"true"` - metadataInvalidationBatch `json:"-" xml:"-"` -} - -type metadataInvalidationBatch struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2316,11 +2120,7 @@ type InvalidationList struct { // The number of invalidation batches that were created by the current AWS account. Quantity *int64 `type:"integer" required:"true"` - metadataInvalidationList `json:"-" xml:"-"` -} - -type metadataInvalidationList struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2343,11 +2143,7 @@ type InvalidationSummary struct { // The status of an invalidation request. Status *string `type:"string" required:"true"` - metadataInvalidationSummary `json:"-" xml:"-"` -} - -type metadataInvalidationSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2370,11 +2166,7 @@ type KeyPairIds struct { // The number of active CloudFront key pairs for AwsAccountNumber. Quantity *int64 `type:"integer" required:"true"` - metadataKeyPairIds `json:"-" xml:"-"` -} - -type metadataKeyPairIds struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2399,11 +2191,7 @@ type ListCloudFrontOriginAccessIdentitiesInput struct { // The maximum number of origin access identities you want in the response body. MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` - metadataListCloudFrontOriginAccessIdentitiesInput `json:"-" xml:"-"` -} - -type metadataListCloudFrontOriginAccessIdentitiesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2421,11 +2209,7 @@ type ListCloudFrontOriginAccessIdentitiesOutput struct { // The CloudFrontOriginAccessIdentityList type. CloudFrontOriginAccessIdentityList *OriginAccessIdentityList `type:"structure"` - metadataListCloudFrontOriginAccessIdentitiesOutput `json:"-" xml:"-"` -} - -type metadataListCloudFrontOriginAccessIdentitiesOutput struct { - SDKShapeTraits bool `type:"structure" payload:"CloudFrontOriginAccessIdentityList"` + _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentityList"` } // String returns the string representation @@ -2457,11 +2241,7 @@ type ListDistributionsByWebACLIdInput struct { // that aren't associated with a web ACL. WebACLId *string `location:"uri" locationName:"WebACLId" type:"string" required:"true"` - metadataListDistributionsByWebACLIdInput `json:"-" xml:"-"` -} - -type metadataListDistributionsByWebACLIdInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2480,11 +2260,7 @@ type ListDistributionsByWebACLIdOutput struct { // The DistributionList type. DistributionList *DistributionList `type:"structure"` - metadataListDistributionsByWebACLIdOutput `json:"-" xml:"-"` -} - -type metadataListDistributionsByWebACLIdOutput struct { - SDKShapeTraits bool `type:"structure" payload:"DistributionList"` + _ struct{} `type:"structure" payload:"DistributionList"` } // String returns the string representation @@ -2510,11 +2286,7 @@ type ListDistributionsInput struct { // the response body. The maximum and default values are both 100. MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` - metadataListDistributionsInput `json:"-" xml:"-"` -} - -type metadataListDistributionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2532,11 +2304,7 @@ type ListDistributionsOutput struct { // The DistributionList type. DistributionList *DistributionList `type:"structure"` - metadataListDistributionsOutput `json:"-" xml:"-"` -} - -type metadataListDistributionsOutput struct { - SDKShapeTraits bool `type:"structure" payload:"DistributionList"` + _ struct{} `type:"structure" payload:"DistributionList"` } // String returns the string representation @@ -2566,11 +2334,7 @@ type ListInvalidationsInput struct { // The maximum number of invalidation batches you want in the response body. MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` - metadataListInvalidationsInput `json:"-" xml:"-"` -} - -type metadataListInvalidationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2588,11 +2352,7 @@ type ListInvalidationsOutput struct { // Information about invalidation batches. InvalidationList *InvalidationList `type:"structure"` - metadataListInvalidationsOutput `json:"-" xml:"-"` -} - -type metadataListInvalidationsOutput struct { - SDKShapeTraits bool `type:"structure" payload:"InvalidationList"` + _ struct{} `type:"structure" payload:"InvalidationList"` } // String returns the string representation @@ -2617,11 +2377,7 @@ type ListStreamingDistributionsInput struct { // The maximum number of streaming distributions you want in the response body. MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` - metadataListStreamingDistributionsInput `json:"-" xml:"-"` -} - -type metadataListStreamingDistributionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2639,11 +2395,7 @@ type ListStreamingDistributionsOutput struct { // The StreamingDistributionList type. StreamingDistributionList *StreamingDistributionList `type:"structure"` - metadataListStreamingDistributionsOutput `json:"-" xml:"-"` -} - -type metadataListStreamingDistributionsOutput struct { - SDKShapeTraits bool `type:"structure" payload:"StreamingDistributionList"` + _ struct{} `type:"structure" payload:"StreamingDistributionList"` } // String returns the string representation @@ -2683,11 +2435,7 @@ type LoggingConfig struct { // Prefix element in the Logging element. Prefix *string `type:"string" required:"true"` - metadataLoggingConfig `json:"-" xml:"-"` -} - -type metadataLoggingConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2730,11 +2478,7 @@ type Origin struct { // origin is a custom origin, use the CustomOriginConfig element instead. S3OriginConfig *S3OriginConfig `type:"structure"` - metadataOrigin `json:"-" xml:"-"` -} - -type metadataOrigin struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2760,11 +2504,7 @@ type OriginAccessIdentity struct { // Amazon S3. S3CanonicalUserId *string `type:"string" required:"true"` - metadataOriginAccessIdentity `json:"-" xml:"-"` -} - -type metadataOriginAccessIdentity struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2795,11 +2535,7 @@ type OriginAccessIdentityConfig struct { // Any comments you want to include about the origin access identity. Comment *string `type:"string" required:"true"` - metadataOriginAccessIdentityConfig `json:"-" xml:"-"` -} - -type metadataOriginAccessIdentityConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2839,11 +2575,7 @@ type OriginAccessIdentityList struct { // current AWS account. Quantity *int64 `type:"integer" required:"true"` - metadataOriginAccessIdentityList `json:"-" xml:"-"` -} - -type metadataOriginAccessIdentityList struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2870,11 +2602,7 @@ type OriginAccessIdentitySummary struct { // Amazon S3. S3CanonicalUserId *string `type:"string" required:"true"` - metadataOriginAccessIdentitySummary `json:"-" xml:"-"` -} - -type metadataOriginAccessIdentitySummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2895,11 +2623,7 @@ type Origins struct { // The number of origins for this distribution. Quantity *int64 `type:"integer" required:"true"` - metadataOrigins `json:"-" xml:"-"` -} - -type metadataOrigins struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2921,11 +2645,7 @@ type Paths struct { // The number of objects that you want to invalidate. Quantity *int64 `type:"integer" required:"true"` - metadataPaths `json:"-" xml:"-"` -} - -type metadataPaths struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2949,11 +2669,7 @@ type Restrictions struct { // website. GeoRestriction *GeoRestriction `type:"structure" required:"true"` - metadataRestrictions `json:"-" xml:"-"` -} - -type metadataRestrictions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2975,11 +2691,7 @@ type S3Origin struct { // Your S3 origin's origin access identity. OriginAccessIdentity *string `type:"string" required:"true"` - metadataS3Origin `json:"-" xml:"-"` -} - -type metadataS3Origin struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3008,11 +2720,7 @@ type S3OriginConfig struct { // created the origin access identity. OriginAccessIdentity *string `type:"string" required:"true"` - metadataS3OriginConfig `json:"-" xml:"-"` -} - -type metadataS3OriginConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3038,11 +2746,7 @@ type Signer struct { // associated with AwsAccountNumber. KeyPairIds *KeyPairIds `type:"structure"` - metadataSigner `json:"-" xml:"-"` -} - -type metadataSigner struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3085,11 +2789,7 @@ type StreamingDistribution struct { // The current configuration information for the streaming distribution. StreamingDistributionConfig *StreamingDistributionConfig `type:"structure" required:"true"` - metadataStreamingDistribution `json:"-" xml:"-"` -} - -type metadataStreamingDistribution struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3152,11 +2852,7 @@ type StreamingDistributionConfig struct { // of the trusted signers that you want to include in the updated distribution. TrustedSigners *TrustedSigners `type:"structure" required:"true"` - metadataStreamingDistributionConfig `json:"-" xml:"-"` -} - -type metadataStreamingDistributionConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3196,11 +2892,7 @@ type StreamingDistributionList struct { // account. Quantity *int64 `type:"integer" required:"true"` - metadataStreamingDistributionList `json:"-" xml:"-"` -} - -type metadataStreamingDistributionList struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3258,11 +2950,7 @@ type StreamingDistributionSummary struct { // of the trusted signers that you want to include in the updated distribution. TrustedSigners *TrustedSigners `type:"structure" required:"true"` - metadataStreamingDistributionSummary `json:"-" xml:"-"` -} - -type metadataStreamingDistributionSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3295,11 +2983,7 @@ type StreamingLoggingConfig struct { // an empty Prefix element in the Logging element. Prefix *string `type:"string" required:"true"` - metadataStreamingLoggingConfig `json:"-" xml:"-"` -} - -type metadataStreamingLoggingConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3335,11 +3019,7 @@ type TrustedSigners struct { // The number of trusted signers for this cache behavior. Quantity *int64 `type:"integer" required:"true"` - metadataTrustedSigners `json:"-" xml:"-"` -} - -type metadataTrustedSigners struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3364,11 +3044,7 @@ type UpdateCloudFrontOriginAccessIdentityInput struct { // configuration. For example: E2QWRUHAPOMQZL. IfMatch *string `location:"header" locationName:"If-Match" type:"string"` - metadataUpdateCloudFrontOriginAccessIdentityInput `json:"-" xml:"-"` -} - -type metadataUpdateCloudFrontOriginAccessIdentityInput struct { - SDKShapeTraits bool `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` + _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` } // String returns the string representation @@ -3389,11 +3065,7 @@ type UpdateCloudFrontOriginAccessIdentityOutput struct { // The current version of the configuration. For example: E2QWRUHAPOMQZL. ETag *string `location:"header" locationName:"ETag" type:"string"` - metadataUpdateCloudFrontOriginAccessIdentityOutput `json:"-" xml:"-"` -} - -type metadataUpdateCloudFrontOriginAccessIdentityOutput struct { - SDKShapeTraits bool `type:"structure" payload:"CloudFrontOriginAccessIdentity"` + _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentity"` } // String returns the string representation @@ -3418,11 +3090,7 @@ type UpdateDistributionInput struct { // configuration. For example: E2QWRUHAPOMQZL. IfMatch *string `location:"header" locationName:"If-Match" type:"string"` - metadataUpdateDistributionInput `json:"-" xml:"-"` -} - -type metadataUpdateDistributionInput struct { - SDKShapeTraits bool `type:"structure" payload:"DistributionConfig"` + _ struct{} `type:"structure" payload:"DistributionConfig"` } // String returns the string representation @@ -3443,11 +3111,7 @@ type UpdateDistributionOutput struct { // The current version of the configuration. For example: E2QWRUHAPOMQZL. ETag *string `location:"header" locationName:"ETag" type:"string"` - metadataUpdateDistributionOutput `json:"-" xml:"-"` -} - -type metadataUpdateDistributionOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Distribution"` + _ struct{} `type:"structure" payload:"Distribution"` } // String returns the string representation @@ -3472,11 +3136,7 @@ type UpdateStreamingDistributionInput struct { // The streaming distribution's configuration information. StreamingDistributionConfig *StreamingDistributionConfig `locationName:"StreamingDistributionConfig" type:"structure" required:"true"` - metadataUpdateStreamingDistributionInput `json:"-" xml:"-"` -} - -type metadataUpdateStreamingDistributionInput struct { - SDKShapeTraits bool `type:"structure" payload:"StreamingDistributionConfig"` + _ struct{} `type:"structure" payload:"StreamingDistributionConfig"` } // String returns the string representation @@ -3497,11 +3157,7 @@ type UpdateStreamingDistributionOutput struct { // The streaming distribution's information. StreamingDistribution *StreamingDistribution `type:"structure"` - metadataUpdateStreamingDistributionOutput `json:"-" xml:"-"` -} - -type metadataUpdateStreamingDistributionOutput struct { - SDKShapeTraits bool `type:"structure" payload:"StreamingDistribution"` + _ struct{} `type:"structure" payload:"StreamingDistribution"` } // String returns the string representation @@ -3553,11 +3209,7 @@ type ViewerCertificate struct { // for SSLSupportMethod if you specified true for CloudFrontDefaultCertificate. SSLSupportMethod *string `type:"string" enum:"SSLSupportMethod"` - metadataViewerCertificate `json:"-" xml:"-"` -} - -type metadataViewerCertificate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cloudhsm/api.go b/service/cloudhsm/api.go index 312dfa556a0..c953c6f956d 100644 --- a/service/cloudhsm/api.go +++ b/service/cloudhsm/api.go @@ -511,11 +511,7 @@ type CreateHapgInput struct { // The label of the new high-availability partition group. Label *string `type:"string" required:"true"` - metadataCreateHapgInput `json:"-" xml:"-"` -} - -type metadataCreateHapgInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -533,11 +529,7 @@ type CreateHapgOutput struct { // The ARN of the high-availability partition group. HapgArn *string `type:"string"` - metadataCreateHapgOutput `json:"-" xml:"-"` -} - -type metadataCreateHapgOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -585,11 +577,7 @@ type CreateHsmInput struct { // only supports one syslog monitoring server. SyslogIp *string `locationName:"SyslogIp" type:"string"` - metadataCreateHsmInput `json:"-" xml:"-"` -} - -type metadataCreateHsmInput struct { - SDKShapeTraits bool `locationName:"CreateHsmRequest" type:"structure"` + _ struct{} `locationName:"CreateHsmRequest" type:"structure"` } // String returns the string representation @@ -607,11 +595,7 @@ type CreateHsmOutput struct { // The ARN of the HSM. HsmArn *string `type:"string"` - metadataCreateHsmOutput `json:"-" xml:"-"` -} - -type metadataCreateHsmOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -633,11 +617,7 @@ type CreateLunaClientInput struct { // The label for the client. Label *string `type:"string"` - metadataCreateLunaClientInput `json:"-" xml:"-"` -} - -type metadataCreateLunaClientInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -655,11 +635,7 @@ type CreateLunaClientOutput struct { // The ARN of the client. ClientArn *string `type:"string"` - metadataCreateLunaClientOutput `json:"-" xml:"-"` -} - -type metadataCreateLunaClientOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -677,11 +653,7 @@ type DeleteHapgInput struct { // The ARN of the high-availability partition group to delete. HapgArn *string `type:"string" required:"true"` - metadataDeleteHapgInput `json:"-" xml:"-"` -} - -type metadataDeleteHapgInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -699,11 +671,7 @@ type DeleteHapgOutput struct { // The status of the action. Status *string `type:"string" required:"true"` - metadataDeleteHapgOutput `json:"-" xml:"-"` -} - -type metadataDeleteHapgOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -721,11 +689,7 @@ type DeleteHsmInput struct { // The ARN of the HSM to delete. HsmArn *string `locationName:"HsmArn" type:"string" required:"true"` - metadataDeleteHsmInput `json:"-" xml:"-"` -} - -type metadataDeleteHsmInput struct { - SDKShapeTraits bool `locationName:"DeleteHsmRequest" type:"structure"` + _ struct{} `locationName:"DeleteHsmRequest" type:"structure"` } // String returns the string representation @@ -743,11 +707,7 @@ type DeleteHsmOutput struct { // The status of the operation. Status *string `type:"string" required:"true"` - metadataDeleteHsmOutput `json:"-" xml:"-"` -} - -type metadataDeleteHsmOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -764,11 +724,7 @@ type DeleteLunaClientInput struct { // The ARN of the client to delete. ClientArn *string `type:"string" required:"true"` - metadataDeleteLunaClientInput `json:"-" xml:"-"` -} - -type metadataDeleteLunaClientInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -785,11 +741,7 @@ type DeleteLunaClientOutput struct { // The status of the action. Status *string `type:"string" required:"true"` - metadataDeleteLunaClientOutput `json:"-" xml:"-"` -} - -type metadataDeleteLunaClientOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -807,11 +759,7 @@ type DescribeHapgInput struct { // The ARN of the high-availability partition group to describe. HapgArn *string `type:"string" required:"true"` - metadataDescribeHapgInput `json:"-" xml:"-"` -} - -type metadataDescribeHapgInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -854,11 +802,7 @@ type DescribeHapgOutput struct { // The state of the high-availability partition group. State *string `type:"string" enum:"CloudHsmObjectState"` - metadataDescribeHapgOutput `json:"-" xml:"-"` -} - -type metadataDescribeHapgOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -881,11 +825,7 @@ type DescribeHsmInput struct { // must be specified. HsmSerialNumber *string `type:"string"` - metadataDescribeHsmInput `json:"-" xml:"-"` -} - -type metadataDescribeHsmInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -966,11 +906,7 @@ type DescribeHsmOutput struct { // The identifier of the VPC that the HSM is in. VpcId *string `type:"string"` - metadataDescribeHsmOutput `json:"-" xml:"-"` -} - -type metadataDescribeHsmOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -990,11 +926,7 @@ type DescribeLunaClientInput struct { // The ARN of the client. ClientArn *string `type:"string"` - metadataDescribeLunaClientInput `json:"-" xml:"-"` -} - -type metadataDescribeLunaClientInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1023,11 +955,7 @@ type DescribeLunaClientOutput struct { // The date and time the client was last modified. LastModifiedTimestamp *string `type:"string"` - metadataDescribeLunaClientOutput `json:"-" xml:"-"` -} - -type metadataDescribeLunaClientOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1051,11 +979,7 @@ type GetConfigInput struct { // are associated with the client. HapgList []*string `type:"list" required:"true"` - metadataGetConfigInput `json:"-" xml:"-"` -} - -type metadataGetConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1078,11 +1002,7 @@ type GetConfigOutput struct { // The type of credentials. ConfigType *string `type:"string"` - metadataGetConfigOutput `json:"-" xml:"-"` -} - -type metadataGetConfigOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1097,11 +1017,7 @@ func (s GetConfigOutput) GoString() string { // Contains the inputs for the ListAvailableZones action. type ListAvailableZonesInput struct { - metadataListAvailableZonesInput `json:"-" xml:"-"` -} - -type metadataListAvailableZonesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1118,11 +1034,7 @@ type ListAvailableZonesOutput struct { // The list of Availability Zones that have available AWS CloudHSM capacity. AZList []*string `type:"list"` - metadataListAvailableZonesOutput `json:"-" xml:"-"` -} - -type metadataListAvailableZonesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1140,11 +1052,7 @@ type ListHapgsInput struct { // is the first call. NextToken *string `type:"string"` - metadataListHapgsInput `json:"-" xml:"-"` -} - -type metadataListHapgsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1165,11 +1073,7 @@ type ListHapgsOutput struct { // retrieve the next set of items. NextToken *string `type:"string"` - metadataListHapgsOutput `json:"-" xml:"-"` -} - -type metadataListHapgsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1187,11 +1091,7 @@ type ListHsmsInput struct { // the first call. NextToken *string `type:"string"` - metadataListHsmsInput `json:"-" xml:"-"` -} - -type metadataListHsmsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1213,11 +1113,7 @@ type ListHsmsOutput struct { // the next set of items. NextToken *string `type:"string"` - metadataListHsmsOutput `json:"-" xml:"-"` -} - -type metadataListHsmsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1235,11 +1131,7 @@ type ListLunaClientsInput struct { // this is the first call. NextToken *string `type:"string"` - metadataListLunaClientsInput `json:"-" xml:"-"` -} - -type metadataListLunaClientsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1260,11 +1152,7 @@ type ListLunaClientsOutput struct { // retrieve the next set of items. NextToken *string `type:"string"` - metadataListLunaClientsOutput `json:"-" xml:"-"` -} - -type metadataListLunaClientsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1288,11 +1176,7 @@ type ModifyHapgInput struct { // partition group. PartitionSerialList []*string `type:"list"` - metadataModifyHapgInput `json:"-" xml:"-"` -} - -type metadataModifyHapgInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1309,11 +1193,7 @@ type ModifyHapgOutput struct { // The ARN of the high-availability partition group. HapgArn *string `type:"string"` - metadataModifyHapgOutput `json:"-" xml:"-"` -} - -type metadataModifyHapgOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1352,11 +1232,7 @@ type ModifyHsmInput struct { // only supports one syslog monitoring server. SyslogIp *string `locationName:"SyslogIp" type:"string"` - metadataModifyHsmInput `json:"-" xml:"-"` -} - -type metadataModifyHsmInput struct { - SDKShapeTraits bool `locationName:"ModifyHsmRequest" type:"structure"` + _ struct{} `locationName:"ModifyHsmRequest" type:"structure"` } // String returns the string representation @@ -1374,11 +1250,7 @@ type ModifyHsmOutput struct { // The ARN of the HSM. HsmArn *string `type:"string"` - metadataModifyHsmOutput `json:"-" xml:"-"` -} - -type metadataModifyHsmOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1398,11 +1270,7 @@ type ModifyLunaClientInput struct { // The ARN of the client. ClientArn *string `type:"string" required:"true"` - metadataModifyLunaClientInput `json:"-" xml:"-"` -} - -type metadataModifyLunaClientInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1419,11 +1287,7 @@ type ModifyLunaClientOutput struct { // The ARN of the client. ClientArn *string `type:"string"` - metadataModifyLunaClientOutput `json:"-" xml:"-"` -} - -type metadataModifyLunaClientOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cloudsearch/api.go b/service/cloudsearch/api.go index fc1bf28fbe4..b2c48c0d126 100644 --- a/service/cloudsearch/api.go +++ b/service/cloudsearch/api.go @@ -759,11 +759,7 @@ type AccessPoliciesStatus struct { // The status of domain configuration option. Status *OptionStatus `type:"structure" required:"true"` - metadataAccessPoliciesStatus `json:"-" xml:"-"` -} - -type metadataAccessPoliciesStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -815,11 +811,7 @@ type AnalysisOptions struct { // in the Amazon CloudSearch Developer Guide. Synonyms *string `type:"string"` - metadataAnalysisOptions `json:"-" xml:"-"` -} - -type metadataAnalysisOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -849,11 +841,7 @@ type AnalysisScheme struct { // a-z (lowercase), 0-9, and _ (underscore). AnalysisSchemeName *string `min:"1" type:"string" required:"true"` - metadataAnalysisScheme `json:"-" xml:"-"` -} - -type metadataAnalysisScheme struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -877,11 +865,7 @@ type AnalysisSchemeStatus struct { // The status of domain configuration option. Status *OptionStatus `type:"structure" required:"true"` - metadataAnalysisSchemeStatus `json:"-" xml:"-"` -} - -type metadataAnalysisSchemeStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -902,11 +886,7 @@ type AvailabilityOptionsStatus struct { // The status of domain configuration option. Status *OptionStatus `type:"structure" required:"true"` - metadataAvailabilityOptionsStatus `json:"-" xml:"-"` -} - -type metadataAvailabilityOptionsStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -928,11 +908,7 @@ type BuildSuggestersInput struct { // 0-9, and - (hyphen). DomainName *string `min:"3" type:"string" required:"true"` - metadataBuildSuggestersInput `json:"-" xml:"-"` -} - -type metadataBuildSuggestersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -951,11 +927,7 @@ type BuildSuggestersOutput struct { // A list of field names. FieldNames []*string `type:"list"` - metadataBuildSuggestersOutput `json:"-" xml:"-"` -} - -type metadataBuildSuggestersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -976,11 +948,7 @@ type CreateDomainInput struct { // and be at least 3 and no more than 28 characters long. DomainName *string `min:"3" type:"string" required:"true"` - metadataCreateDomainInput `json:"-" xml:"-"` -} - -type metadataCreateDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -999,11 +967,7 @@ type CreateDomainOutput struct { // The current status of the search domain. DomainStatus *DomainStatus `type:"structure"` - metadataCreateDomainOutput `json:"-" xml:"-"` -} - -type metadataCreateDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1034,11 +998,7 @@ type DateArrayOptions struct { // A list of source fields to map to the field. SourceFields *string `type:"string"` - metadataDateArrayOptions `json:"-" xml:"-"` -} - -type metadataDateArrayOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1087,11 +1047,7 @@ type DateOptions struct { // a document's ID, you can use the name _id. SourceField *string `min:"1" type:"string"` - metadataDateOptions `json:"-" xml:"-"` -} - -type metadataDateOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1119,11 +1075,7 @@ type DefineAnalysisSchemeInput struct { // 0-9, and - (hyphen). DomainName *string `min:"3" type:"string" required:"true"` - metadataDefineAnalysisSchemeInput `json:"-" xml:"-"` -} - -type metadataDefineAnalysisSchemeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1142,11 +1094,7 @@ type DefineAnalysisSchemeOutput struct { // The status and configuration of an AnalysisScheme. AnalysisScheme *AnalysisSchemeStatus `type:"structure" required:"true"` - metadataDefineAnalysisSchemeOutput `json:"-" xml:"-"` -} - -type metadataDefineAnalysisSchemeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1174,11 +1122,7 @@ type DefineExpressionInput struct { // in the search results. Expression *Expression `type:"structure" required:"true"` - metadataDefineExpressionInput `json:"-" xml:"-"` -} - -type metadataDefineExpressionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1197,11 +1141,7 @@ type DefineExpressionOutput struct { // The value of an Expression and its current status. Expression *ExpressionStatus `type:"structure" required:"true"` - metadataDefineExpressionOutput `json:"-" xml:"-"` -} - -type metadataDefineExpressionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1226,11 +1166,7 @@ type DefineIndexFieldInput struct { // The index field and field options you want to configure. IndexField *IndexField `type:"structure" required:"true"` - metadataDefineIndexFieldInput `json:"-" xml:"-"` -} - -type metadataDefineIndexFieldInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1249,11 +1185,7 @@ type DefineIndexFieldOutput struct { // The value of an IndexField and its current status. IndexField *IndexFieldStatus `type:"structure" required:"true"` - metadataDefineIndexFieldOutput `json:"-" xml:"-"` -} - -type metadataDefineIndexFieldOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1280,11 +1212,7 @@ type DefineSuggesterInput struct { // options can be configured for a suggester: FuzzyMatching, SortExpression. Suggester *Suggester `type:"structure" required:"true"` - metadataDefineSuggesterInput `json:"-" xml:"-"` -} - -type metadataDefineSuggesterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1303,11 +1231,7 @@ type DefineSuggesterOutput struct { // The value of a Suggester and its current status. Suggester *SuggesterStatus `type:"structure" required:"true"` - metadataDefineSuggesterOutput `json:"-" xml:"-"` -} - -type metadataDefineSuggesterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1333,11 +1257,7 @@ type DeleteAnalysisSchemeInput struct { // 0-9, and - (hyphen). DomainName *string `min:"3" type:"string" required:"true"` - metadataDeleteAnalysisSchemeInput `json:"-" xml:"-"` -} - -type metadataDeleteAnalysisSchemeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1356,11 +1276,7 @@ type DeleteAnalysisSchemeOutput struct { // The status of the analysis scheme being deleted. AnalysisScheme *AnalysisSchemeStatus `type:"structure" required:"true"` - metadataDeleteAnalysisSchemeOutput `json:"-" xml:"-"` -} - -type metadataDeleteAnalysisSchemeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1379,11 +1295,7 @@ type DeleteDomainInput struct { // The name of the domain you want to permanently delete. DomainName *string `min:"3" type:"string" required:"true"` - metadataDeleteDomainInput `json:"-" xml:"-"` -} - -type metadataDeleteDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1402,11 +1314,7 @@ type DeleteDomainOutput struct { // The current status of the search domain. DomainStatus *DomainStatus `type:"structure"` - metadataDeleteDomainOutput `json:"-" xml:"-"` -} - -type metadataDeleteDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1432,11 +1340,7 @@ type DeleteExpressionInput struct { // The name of the Expression to delete. ExpressionName *string `min:"1" type:"string" required:"true"` - metadataDeleteExpressionInput `json:"-" xml:"-"` -} - -type metadataDeleteExpressionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1455,11 +1359,7 @@ type DeleteExpressionOutput struct { // The status of the expression being deleted. Expression *ExpressionStatus `type:"structure" required:"true"` - metadataDeleteExpressionOutput `json:"-" xml:"-"` -} - -type metadataDeleteExpressionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1486,11 +1386,7 @@ type DeleteIndexFieldInput struct { // options. IndexFieldName *string `min:"1" type:"string" required:"true"` - metadataDeleteIndexFieldInput `json:"-" xml:"-"` -} - -type metadataDeleteIndexFieldInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1508,11 +1404,7 @@ type DeleteIndexFieldOutput struct { // The status of the index field being deleted. IndexField *IndexFieldStatus `type:"structure" required:"true"` - metadataDeleteIndexFieldOutput `json:"-" xml:"-"` -} - -type metadataDeleteIndexFieldOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1538,11 +1430,7 @@ type DeleteSuggesterInput struct { // Specifies the name of the suggester you want to delete. SuggesterName *string `min:"1" type:"string" required:"true"` - metadataDeleteSuggesterInput `json:"-" xml:"-"` -} - -type metadataDeleteSuggesterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1561,11 +1449,7 @@ type DeleteSuggesterOutput struct { // The status of the suggester being deleted. Suggester *SuggesterStatus `type:"structure" required:"true"` - metadataDeleteSuggesterOutput `json:"-" xml:"-"` -} - -type metadataDeleteSuggesterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1594,11 +1478,7 @@ type DescribeAnalysisSchemesInput struct { // The name of the domain you want to describe. DomainName *string `min:"3" type:"string" required:"true"` - metadataDescribeAnalysisSchemesInput `json:"-" xml:"-"` -} - -type metadataDescribeAnalysisSchemesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1617,11 +1497,7 @@ type DescribeAnalysisSchemesOutput struct { // The analysis scheme descriptions. AnalysisSchemes []*AnalysisSchemeStatus `type:"list" required:"true"` - metadataDescribeAnalysisSchemesOutput `json:"-" xml:"-"` -} - -type metadataDescribeAnalysisSchemesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1646,11 +1522,7 @@ type DescribeAvailabilityOptionsInput struct { // The name of the domain you want to describe. DomainName *string `min:"3" type:"string" required:"true"` - metadataDescribeAvailabilityOptionsInput `json:"-" xml:"-"` -} - -type metadataDescribeAvailabilityOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1670,11 +1542,7 @@ type DescribeAvailabilityOptionsOutput struct { // is enabled for the domain. AvailabilityOptions *AvailabilityOptionsStatus `type:"structure"` - metadataDescribeAvailabilityOptionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeAvailabilityOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1694,11 +1562,7 @@ type DescribeDomainsInput struct { // The names of the domains you want to include in the response. DomainNames []*string `type:"list"` - metadataDescribeDomainsInput `json:"-" xml:"-"` -} - -type metadataDescribeDomainsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1717,11 +1581,7 @@ type DescribeDomainsOutput struct { // A list that contains the status of each requested domain. DomainStatusList []*DomainStatus `type:"list" required:"true"` - metadataDescribeDomainsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDomainsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1751,11 +1611,7 @@ type DescribeExpressionsInput struct { // not specified, all expressions are shown. ExpressionNames []*string `type:"list"` - metadataDescribeExpressionsInput `json:"-" xml:"-"` -} - -type metadataDescribeExpressionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1774,11 +1630,7 @@ type DescribeExpressionsOutput struct { // The expressions configured for the domain. Expressions []*ExpressionStatus `type:"list" required:"true"` - metadataDescribeExpressionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeExpressionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1808,11 +1660,7 @@ type DescribeIndexFieldsInput struct { // is returned for all configured index fields. FieldNames []*string `type:"list"` - metadataDescribeIndexFieldsInput `json:"-" xml:"-"` -} - -type metadataDescribeIndexFieldsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1831,11 +1679,7 @@ type DescribeIndexFieldsOutput struct { // The index fields configured for the domain. IndexFields []*IndexFieldStatus `type:"list" required:"true"` - metadataDescribeIndexFieldsOutput `json:"-" xml:"-"` -} - -type metadataDescribeIndexFieldsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1857,11 +1701,7 @@ type DescribeScalingParametersInput struct { // 0-9, and - (hyphen). DomainName *string `min:"3" type:"string" required:"true"` - metadataDescribeScalingParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeScalingParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1880,11 +1720,7 @@ type DescribeScalingParametersOutput struct { // The status and configuration of a search domain's scaling parameters. ScalingParameters *ScalingParametersStatus `type:"structure" required:"true"` - metadataDescribeScalingParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeScalingParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1909,11 +1745,7 @@ type DescribeServiceAccessPoliciesInput struct { // The name of the domain you want to describe. DomainName *string `min:"3" type:"string" required:"true"` - metadataDescribeServiceAccessPoliciesInput `json:"-" xml:"-"` -} - -type metadataDescribeServiceAccessPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1931,11 +1763,7 @@ type DescribeServiceAccessPoliciesOutput struct { // The access rules configured for the domain specified in the request. AccessPolicies *AccessPoliciesStatus `type:"structure" required:"true"` - metadataDescribeServiceAccessPoliciesOutput `json:"-" xml:"-"` -} - -type metadataDescribeServiceAccessPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1964,11 +1792,7 @@ type DescribeSuggestersInput struct { // The suggesters you want to describe. SuggesterNames []*string `type:"list"` - metadataDescribeSuggestersInput `json:"-" xml:"-"` -} - -type metadataDescribeSuggestersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1986,11 +1810,7 @@ type DescribeSuggestersOutput struct { // The suggesters configured for the domain specified in the request. Suggesters []*SuggesterStatus `type:"list" required:"true"` - metadataDescribeSuggestersOutput `json:"-" xml:"-"` -} - -type metadataDescribeSuggestersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2024,11 +1844,7 @@ type DocumentSuggesterOptions struct { // The name of the index field you want to use for suggestions. SourceField *string `min:"1" type:"string" required:"true"` - metadataDocumentSuggesterOptions `json:"-" xml:"-"` -} - -type metadataDocumentSuggesterOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2093,11 +1909,7 @@ type DomainStatus struct { // The service endpoint for requesting search results from a search domain. SearchService *ServiceEndpoint `type:"structure"` - metadataDomainStatus `json:"-" xml:"-"` -} - -type metadataDomainStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2129,11 +1941,7 @@ type DoubleArrayOptions struct { // A list of source fields to map to the field. SourceFields *string `type:"string"` - metadataDoubleArrayOptions `json:"-" xml:"-"` -} - -type metadataDoubleArrayOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2169,11 +1977,7 @@ type DoubleOptions struct { // The name of the source field to map to the field. SourceField *string `min:"1" type:"string"` - metadataDoubleOptions `json:"-" xml:"-"` -} - -type metadataDoubleOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2200,11 +2004,7 @@ type Expression struct { // target="_blank) in the Amazon CloudSearch Developer Guide. ExpressionValue *string `min:"1" type:"string" required:"true"` - metadataExpression `json:"-" xml:"-"` -} - -type metadataExpression struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2225,11 +2025,7 @@ type ExpressionStatus struct { // The status of domain configuration option. Status *OptionStatus `type:"structure" required:"true"` - metadataExpressionStatus `json:"-" xml:"-"` -} - -type metadataExpressionStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2251,11 +2047,7 @@ type IndexDocumentsInput struct { // 0-9, and - (hyphen). DomainName *string `min:"3" type:"string" required:"true"` - metadataIndexDocumentsInput `json:"-" xml:"-"` -} - -type metadataIndexDocumentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2274,11 +2066,7 @@ type IndexDocumentsOutput struct { // The names of the fields that are currently being indexed. FieldNames []*string `type:"list"` - metadataIndexDocumentsOutput `json:"-" xml:"-"` -} - -type metadataIndexDocumentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2368,11 +2156,7 @@ type IndexField struct { // by default. TextOptions *TextOptions `type:"structure"` - metadataIndexField `json:"-" xml:"-"` -} - -type metadataIndexField struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2394,11 +2178,7 @@ type IndexFieldStatus struct { // The status of domain configuration option. Status *OptionStatus `type:"structure" required:"true"` - metadataIndexFieldStatus `json:"-" xml:"-"` -} - -type metadataIndexFieldStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2430,11 +2210,7 @@ type IntArrayOptions struct { // A list of source fields to map to the field. SourceFields *string `type:"string"` - metadataIntArrayOptions `json:"-" xml:"-"` -} - -type metadataIntArrayOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2470,11 +2246,7 @@ type IntOptions struct { // The name of the source field to map to the field. SourceField *string `min:"1" type:"string"` - metadataIntOptions `json:"-" xml:"-"` -} - -type metadataIntOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2522,11 +2294,7 @@ type LatLonOptions struct { // a document's ID, you can use the name _id. SourceField *string `min:"1" type:"string"` - metadataLatLonOptions `json:"-" xml:"-"` -} - -type metadataLatLonOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2544,11 +2312,7 @@ type Limits struct { MaximumReplicationCount *int64 `min:"1" type:"integer" required:"true"` - metadataLimits `json:"-" xml:"-"` -} - -type metadataLimits struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2562,11 +2326,7 @@ func (s Limits) GoString() string { } type ListDomainNamesInput struct { - metadataListDomainNamesInput `json:"-" xml:"-"` -} - -type metadataListDomainNamesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2585,11 +2345,7 @@ type ListDomainNamesOutput struct { // The names of the search domains owned by an account. DomainNames map[string]*string `type:"map"` - metadataListDomainNamesOutput `json:"-" xml:"-"` -} - -type metadataListDomainNamesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2621,11 +2377,7 @@ type LiteralArrayOptions struct { // A list of source fields to map to the field. SourceFields *string `type:"string"` - metadataLiteralArrayOptions `json:"-" xml:"-"` -} - -type metadataLiteralArrayOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2672,11 +2424,7 @@ type LiteralOptions struct { // a document's ID, you can use the name _id. SourceField *string `min:"1" type:"string"` - metadataLiteralOptions `json:"-" xml:"-"` -} - -type metadataLiteralOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2714,11 +2462,7 @@ type OptionStatus struct { // A unique integer that indicates when this option was last updated. UpdateVersion *int64 `type:"integer"` - metadataOptionStatus `json:"-" xml:"-"` -} - -type metadataOptionStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2744,11 +2488,7 @@ type ScalingParameters struct { // The number of replicas you want to preconfigure for each index partition. DesiredReplicationCount *int64 `type:"integer"` - metadataScalingParameters `json:"-" xml:"-"` -} - -type metadataScalingParameters struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2769,11 +2509,7 @@ type ScalingParametersStatus struct { // The status of domain configuration option. Status *OptionStatus `type:"structure" required:"true"` - metadataScalingParametersStatus `json:"-" xml:"-"` -} - -type metadataScalingParametersStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2792,11 +2528,7 @@ type ServiceEndpoint struct { // or doc-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.cloudsearch.amazonaws.com. Endpoint *string `type:"string"` - metadataServiceEndpoint `json:"-" xml:"-"` -} - -type metadataServiceEndpoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2820,11 +2552,7 @@ type Suggester struct { // a-z (lowercase), 0-9, and _ (underscore). SuggesterName *string `min:"1" type:"string" required:"true"` - metadataSuggester `json:"-" xml:"-"` -} - -type metadataSuggester struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2847,11 +2575,7 @@ type SuggesterStatus struct { // The status of domain configuration option. Status *OptionStatus `type:"structure" required:"true"` - metadataSuggesterStatus `json:"-" xml:"-"` -} - -type metadataSuggesterStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2883,11 +2607,7 @@ type TextArrayOptions struct { // A list of source fields to map to the field. SourceFields *string `type:"string"` - metadataTextArrayOptions `json:"-" xml:"-"` -} - -type metadataTextArrayOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2935,11 +2655,7 @@ type TextOptions struct { // a document's ID, you can use the name _id. SourceField *string `min:"1" type:"string"` - metadataTextOptions `json:"-" xml:"-"` -} - -type metadataTextOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2968,11 +2684,7 @@ type UpdateAvailabilityOptionsInput struct { // option to false. MultiAZ *bool `type:"boolean" required:"true"` - metadataUpdateAvailabilityOptionsInput `json:"-" xml:"-"` -} - -type metadataUpdateAvailabilityOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2992,11 +2704,7 @@ type UpdateAvailabilityOptionsOutput struct { // enabled for the domain. AvailabilityOptions *AvailabilityOptionsStatus `type:"structure"` - metadataUpdateAvailabilityOptionsOutput `json:"-" xml:"-"` -} - -type metadataUpdateAvailabilityOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3022,11 +2730,7 @@ type UpdateScalingParametersInput struct { // The desired instance type and desired number of replicas of each index partition. ScalingParameters *ScalingParameters `type:"structure" required:"true"` - metadataUpdateScalingParametersInput `json:"-" xml:"-"` -} - -type metadataUpdateScalingParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3045,11 +2749,7 @@ type UpdateScalingParametersOutput struct { // The status and configuration of a search domain's scaling parameters. ScalingParameters *ScalingParametersStatus `type:"structure" required:"true"` - metadataUpdateScalingParametersOutput `json:"-" xml:"-"` -} - -type metadataUpdateScalingParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3076,11 +2776,7 @@ type UpdateServiceAccessPoliciesInput struct { // 0-9, and - (hyphen). DomainName *string `min:"3" type:"string" required:"true"` - metadataUpdateServiceAccessPoliciesInput `json:"-" xml:"-"` -} - -type metadataUpdateServiceAccessPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3099,11 +2795,7 @@ type UpdateServiceAccessPoliciesOutput struct { // The access rules configured for the domain. AccessPolicies *AccessPoliciesStatus `type:"structure" required:"true"` - metadataUpdateServiceAccessPoliciesOutput `json:"-" xml:"-"` -} - -type metadataUpdateServiceAccessPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cloudsearchdomain/api.go b/service/cloudsearchdomain/api.go index 5b1a45997ac..37ab7aea5c9 100644 --- a/service/cloudsearchdomain/api.go +++ b/service/cloudsearchdomain/api.go @@ -154,11 +154,7 @@ type Bucket struct { // The facet value being counted. Value *string `locationName:"value" type:"string"` - metadataBucket `json:"-" xml:"-"` -} - -type metadataBucket struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -176,11 +172,7 @@ type BucketInfo struct { // A list of the calculated facet values and counts. Buckets []*Bucket `locationName:"buckets" type:"list"` - metadataBucketInfo `json:"-" xml:"-"` -} - -type metadataBucketInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -199,11 +191,7 @@ type DocumentServiceWarning struct { // The description for a warning returned by the document service. Message *string `locationName:"message" type:"string"` - metadataDocumentServiceWarning `json:"-" xml:"-"` -} - -type metadataDocumentServiceWarning struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -230,11 +218,7 @@ type Hit struct { // The document ID of a document that matches the search request. Id *string `locationName:"id" type:"string"` - metadataHit `json:"-" xml:"-"` -} - -type metadataHit struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -262,11 +246,7 @@ type Hits struct { // The index of the first matching document. Start *int64 `locationName:"start" type:"long"` - metadataHits `json:"-" xml:"-"` -} - -type metadataHits struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -558,11 +538,7 @@ type SearchInput struct { // in the Amazon CloudSearch Developer Guide. Start *int64 `location:"querystring" locationName:"start" type:"long"` - metadataSearchInput `json:"-" xml:"-"` -} - -type metadataSearchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -587,11 +563,7 @@ type SearchOutput struct { // The status information returned for the search request. Status *SearchStatus `locationName:"status" type:"structure"` - metadataSearchOutput `json:"-" xml:"-"` -} - -type metadataSearchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -613,11 +585,7 @@ type SearchStatus struct { // How long it took to process the request, in milliseconds. Timems *int64 `locationName:"timems" type:"long"` - metadataSearchStatus `json:"-" xml:"-"` -} - -type metadataSearchStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -641,11 +609,7 @@ type SuggestInput struct { // Specifies the name of the suggester to use to find suggested matches. Suggester *string `location:"querystring" locationName:"suggester" type:"string" required:"true"` - metadataSuggestInput `json:"-" xml:"-"` -} - -type metadataSuggestInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -669,11 +633,7 @@ type SuggestModel struct { // The documents that match the query string. Suggestions []*SuggestionMatch `locationName:"suggestions" type:"list"` - metadataSuggestModel `json:"-" xml:"-"` -} - -type metadataSuggestModel struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -695,11 +655,7 @@ type SuggestOutput struct { // Container for the matching search suggestion information. Suggest *SuggestModel `locationName:"suggest" type:"structure"` - metadataSuggestOutput `json:"-" xml:"-"` -} - -type metadataSuggestOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -721,11 +677,7 @@ type SuggestStatus struct { // How long it took to process the request, in milliseconds. Timems *int64 `locationName:"timems" type:"long"` - metadataSuggestStatus `json:"-" xml:"-"` -} - -type metadataSuggestStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -749,11 +701,7 @@ type SuggestionMatch struct { // The string that matches the query string specified in the SuggestRequest. Suggestion *string `locationName:"suggestion" type:"string"` - metadataSuggestionMatch `json:"-" xml:"-"` -} - -type metadataSuggestionMatch struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -777,11 +725,7 @@ type UploadDocumentsInput struct { // A batch of documents formatted in JSON or HTML. Documents io.ReadSeeker `locationName:"documents" type:"blob" required:"true"` - metadataUploadDocumentsInput `json:"-" xml:"-"` -} - -type metadataUploadDocumentsInput struct { - SDKShapeTraits bool `type:"structure" payload:"Documents"` + _ struct{} `type:"structure" payload:"Documents"` } // String returns the string representation @@ -808,11 +752,7 @@ type UploadDocumentsOutput struct { // Any warnings returned by the document service about the documents being uploaded. Warnings []*DocumentServiceWarning `locationName:"warnings" type:"list"` - metadataUploadDocumentsOutput `json:"-" xml:"-"` -} - -type metadataUploadDocumentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cloudtrail/api.go b/service/cloudtrail/api.go index 6994d474b01..1c4d566fa3a 100644 --- a/service/cloudtrail/api.go +++ b/service/cloudtrail/api.go @@ -380,11 +380,7 @@ type AddTagsInput struct { // Contains a list of CloudTrail tags, up to a limit of 10. TagsList []*Tag `type:"list"` - metadataAddTagsInput `json:"-" xml:"-"` -} - -type metadataAddTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -400,11 +396,7 @@ func (s AddTagsInput) GoString() string { // Returns the objects or data listed below if successful. Otherwise, returns // an error. type AddTagsOutput struct { - metadataAddTagsOutput `json:"-" xml:"-"` -} - -type metadataAddTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -479,11 +471,7 @@ type CreateTrailInput struct { // file delivery. The maximum length is 256 characters. SnsTopicName *string `type:"string"` - metadataCreateTrailInput `json:"-" xml:"-"` -} - -type metadataCreateTrailInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -539,11 +527,7 @@ type CreateTrailOutput struct { // Specifies the ARN of the trail that was created. TrailARN *string `type:"string"` - metadataCreateTrailOutput `json:"-" xml:"-"` -} - -type metadataCreateTrailOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -562,11 +546,7 @@ type DeleteTrailInput struct { // format of a trail ARN is arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail. Name *string `type:"string" required:"true"` - metadataDeleteTrailInput `json:"-" xml:"-"` -} - -type metadataDeleteTrailInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -582,11 +562,7 @@ func (s DeleteTrailInput) GoString() string { // Returns the objects or data listed below if successful. Otherwise, returns // an error. type DeleteTrailOutput struct { - metadataDeleteTrailOutput `json:"-" xml:"-"` -} - -type metadataDeleteTrailOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -607,11 +583,7 @@ type DescribeTrailsInput struct { // is returned. TrailNameList []*string `locationName:"trailNameList" type:"list"` - metadataDescribeTrailsInput `json:"-" xml:"-"` -} - -type metadataDescribeTrailsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -630,11 +602,7 @@ type DescribeTrailsOutput struct { // The list of trail objects. TrailList []*Trail `locationName:"trailList" type:"list"` - metadataDescribeTrailsOutput `json:"-" xml:"-"` -} - -type metadataDescribeTrailsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -669,11 +637,7 @@ type Event struct { // returned. Username *string `type:"string"` - metadataEvent `json:"-" xml:"-"` -} - -type metadataEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -692,11 +656,7 @@ type GetTrailStatusInput struct { // status. The format of a trail ARN is arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail. Name *string `type:"string" required:"true"` - metadataGetTrailStatusInput `json:"-" xml:"-"` -} - -type metadataGetTrailStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -788,11 +748,7 @@ type GetTrailStatusOutput struct { // This field is deprecated. TimeLoggingStopped *string `type:"string"` - metadataGetTrailStatusOutput `json:"-" xml:"-"` -} - -type metadataGetTrailStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -819,11 +775,7 @@ type ListPublicKeysInput struct { // and the current public key is returned. StartTime *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataListPublicKeysInput `json:"-" xml:"-"` -} - -type metadataListPublicKeysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -847,11 +799,7 @@ type ListPublicKeysOutput struct { // The returned public keys may have validity time ranges that overlap. PublicKeyList []*PublicKey `type:"list"` - metadataListPublicKeysOutput `json:"-" xml:"-"` -} - -type metadataListPublicKeysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -873,11 +821,7 @@ type ListTagsInput struct { // limit of 20 ARNs. The format of a trail ARN is arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail. ResourceIdList []*string `type:"list" required:"true"` - metadataListTagsInput `json:"-" xml:"-"` -} - -type metadataListTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -899,11 +843,7 @@ type ListTagsOutput struct { // A list of resource tags. ResourceTagList []*ResourceTag `type:"list"` - metadataListTagsOutput `json:"-" xml:"-"` -} - -type metadataListTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -924,11 +864,7 @@ type LookupAttribute struct { // Specifies a value for the specified AttributeKey. AttributeValue *string `type:"string" required:"true"` - metadataLookupAttribute `json:"-" xml:"-"` -} - -type metadataLookupAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -968,11 +904,7 @@ type LookupEventsInput struct { // error is returned. StartTime *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataLookupEventsInput `json:"-" xml:"-"` -} - -type metadataLookupEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -999,11 +931,7 @@ type LookupEventsOutput struct { // of 'root', the call with NextToken should include those same parameters. NextToken *string `type:"string"` - metadataLookupEventsOutput `json:"-" xml:"-"` -} - -type metadataLookupEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1030,11 +958,7 @@ type PublicKey struct { // The DER encoded public key value in PKCS#1 format. Value []byte `type:"blob"` - metadataPublicKey `json:"-" xml:"-"` -} - -type metadataPublicKey struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1056,11 +980,7 @@ type RemoveTagsInput struct { // Specifies a list of tags to be removed. TagsList []*Tag `type:"list"` - metadataRemoveTagsInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1076,11 +996,7 @@ func (s RemoveTagsInput) GoString() string { // Returns the objects or data listed below if successful. Otherwise, returns // an error. type RemoveTagsOutput struct { - metadataRemoveTagsOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1108,11 +1024,7 @@ type Resource struct { // Types Supported for Event Lookup (http://docs.aws.amazon.com/awscloudtrail/latest/userguide/lookup_supported_resourcetypes.html). ResourceType *string `type:"string"` - metadataResource `json:"-" xml:"-"` -} - -type metadataResource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1133,11 +1045,7 @@ type ResourceTag struct { // A list of tags. TagsList []*Tag `type:"list"` - metadataResourceTag `json:"-" xml:"-"` -} - -type metadataResourceTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1156,11 +1064,7 @@ type StartLoggingInput struct { // logs AWS API calls. The format of a trail ARN is arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail. Name *string `type:"string" required:"true"` - metadataStartLoggingInput `json:"-" xml:"-"` -} - -type metadataStartLoggingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1176,11 +1080,7 @@ func (s StartLoggingInput) GoString() string { // Returns the objects or data listed below if successful. Otherwise, returns // an error. type StartLoggingOutput struct { - metadataStartLoggingOutput `json:"-" xml:"-"` -} - -type metadataStartLoggingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1200,11 +1100,7 @@ type StopLoggingInput struct { // will stop logging AWS API calls. The format of a trail ARN is arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail. Name *string `type:"string" required:"true"` - metadataStopLoggingInput `json:"-" xml:"-"` -} - -type metadataStopLoggingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1220,11 +1116,7 @@ func (s StopLoggingInput) GoString() string { // Returns the objects or data listed below if successful. Otherwise, returns // an error. type StopLoggingOutput struct { - metadataStopLoggingOutput `json:"-" xml:"-"` -} - -type metadataStopLoggingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1247,11 +1139,7 @@ type Tag struct { // 256 Unicode characters. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1308,11 +1196,7 @@ type Trail struct { // The Amazon Resource Name of the trail. The TrailARN format is arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail. TrailARN *string `type:"string"` - metadataTrail `json:"-" xml:"-"` -} - -type metadataTrail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1388,11 +1272,7 @@ type UpdateTrailInput struct { // file delivery. The maximum length is 256 characters. SnsTopicName *string `type:"string"` - metadataUpdateTrailInput `json:"-" xml:"-"` -} - -type metadataUpdateTrailInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1448,11 +1328,7 @@ type UpdateTrailOutput struct { // Specifies the ARN of the trail that was updated. TrailARN *string `type:"string"` - metadataUpdateTrailOutput `json:"-" xml:"-"` -} - -type metadataUpdateTrailOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cloudwatch/api.go b/service/cloudwatch/api.go index 2099e40491d..621084b20cb 100644 --- a/service/cloudwatch/api.go +++ b/service/cloudwatch/api.go @@ -427,11 +427,7 @@ type AlarmHistoryItem struct { // in the Amazon CloudWatch Developer Guide. Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataAlarmHistoryItem `json:"-" xml:"-"` -} - -type metadataAlarmHistoryItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -473,11 +469,7 @@ type Datapoint struct { // The standard unit used for the datapoint. Unit *string `type:"string" enum:"StandardUnit"` - metadataDatapoint `json:"-" xml:"-"` -} - -type metadataDatapoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -494,11 +486,7 @@ type DeleteAlarmsInput struct { // A list of alarms to be deleted. AlarmNames []*string `type:"list" required:"true"` - metadataDeleteAlarmsInput `json:"-" xml:"-"` -} - -type metadataDeleteAlarmsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -512,11 +500,7 @@ func (s DeleteAlarmsInput) GoString() string { } type DeleteAlarmsOutput struct { - metadataDeleteAlarmsOutput `json:"-" xml:"-"` -} - -type metadataDeleteAlarmsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -549,11 +533,7 @@ type DescribeAlarmHistoryInput struct { // The starting date to retrieve alarm history. StartDate *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataDescribeAlarmHistoryInput `json:"-" xml:"-"` -} - -type metadataDescribeAlarmHistoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -574,11 +554,7 @@ type DescribeAlarmHistoryOutput struct { // A string that marks the start of the next batch of returned results. NextToken *string `type:"string"` - metadataDescribeAlarmHistoryOutput `json:"-" xml:"-"` -} - -type metadataDescribeAlarmHistoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -610,11 +586,7 @@ type DescribeAlarmsForMetricInput struct { // The unit for the metric. Unit *string `type:"string" enum:"StandardUnit"` - metadataDescribeAlarmsForMetricInput `json:"-" xml:"-"` -} - -type metadataDescribeAlarmsForMetricInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -632,11 +604,7 @@ type DescribeAlarmsForMetricOutput struct { // A list of information for each alarm with the specified metric. MetricAlarms []*MetricAlarm `type:"list"` - metadataDescribeAlarmsForMetricOutput `json:"-" xml:"-"` -} - -type metadataDescribeAlarmsForMetricOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -670,11 +638,7 @@ type DescribeAlarmsInput struct { // The state value to be used in matching alarms. StateValue *string `type:"string" enum:"StateValue"` - metadataDescribeAlarmsInput `json:"-" xml:"-"` -} - -type metadataDescribeAlarmsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -695,11 +659,7 @@ type DescribeAlarmsOutput struct { // A string that marks the start of the next batch of returned results. NextToken *string `type:"string"` - metadataDescribeAlarmsOutput `json:"-" xml:"-"` -} - -type metadataDescribeAlarmsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -723,11 +683,7 @@ type Dimension struct { // The value representing the dimension measurement Value *string `min:"1" type:"string" required:"true"` - metadataDimension `json:"-" xml:"-"` -} - -type metadataDimension struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -748,11 +704,7 @@ type DimensionFilter struct { // The value of the dimension to be matched. Value *string `min:"1" type:"string"` - metadataDimensionFilter `json:"-" xml:"-"` -} - -type metadataDimensionFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -769,11 +721,7 @@ type DisableAlarmActionsInput struct { // The names of the alarms to disable actions for. AlarmNames []*string `type:"list" required:"true"` - metadataDisableAlarmActionsInput `json:"-" xml:"-"` -} - -type metadataDisableAlarmActionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -787,11 +735,7 @@ func (s DisableAlarmActionsInput) GoString() string { } type DisableAlarmActionsOutput struct { - metadataDisableAlarmActionsOutput `json:"-" xml:"-"` -} - -type metadataDisableAlarmActionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -808,11 +752,7 @@ type EnableAlarmActionsInput struct { // The names of the alarms to enable actions for. AlarmNames []*string `type:"list" required:"true"` - metadataEnableAlarmActionsInput `json:"-" xml:"-"` -} - -type metadataEnableAlarmActionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -826,11 +766,7 @@ func (s EnableAlarmActionsInput) GoString() string { } type EnableAlarmActionsOutput struct { - metadataEnableAlarmActionsOutput `json:"-" xml:"-"` -} - -type metadataEnableAlarmActionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -877,11 +813,7 @@ type GetMetricStatisticsInput struct { // The unit for the metric. Unit *string `type:"string" enum:"StandardUnit"` - metadataGetMetricStatisticsInput `json:"-" xml:"-"` -} - -type metadataGetMetricStatisticsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -902,11 +834,7 @@ type GetMetricStatisticsOutput struct { // A label describing the specified metric. Label *string `type:"string"` - metadataGetMetricStatisticsOutput `json:"-" xml:"-"` -} - -type metadataGetMetricStatisticsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -933,11 +861,7 @@ type ListMetricsInput struct { // available. NextToken *string `type:"string"` - metadataListMetricsInput `json:"-" xml:"-"` -} - -type metadataListMetricsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -958,11 +882,7 @@ type ListMetricsOutput struct { // A string that marks the start of the next batch of returned results. NextToken *string `type:"string"` - metadataListMetricsOutput `json:"-" xml:"-"` -} - -type metadataListMetricsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -992,11 +912,7 @@ type Metric struct { // The namespace of the metric. Namespace *string `min:"1" type:"string"` - metadataMetric `json:"-" xml:"-"` -} - -type metadataMetric struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1096,11 +1012,7 @@ type MetricAlarm struct { // The unit of the alarm's associated metric. Unit *string `type:"string" enum:"StandardUnit"` - metadataMetricAlarm `json:"-" xml:"-"` -} - -type metadataMetricAlarm struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1146,11 +1058,7 @@ type MetricDatum struct { // exponents less than -130 (1 x 10^-130) are also truncated. Value *float64 `type:"double"` - metadataMetricDatum `json:"-" xml:"-"` -} - -type metadataMetricDatum struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1221,11 +1129,7 @@ type PutMetricAlarmInput struct { // The unit for the alarm's associated metric. Unit *string `type:"string" enum:"StandardUnit"` - metadataPutMetricAlarmInput `json:"-" xml:"-"` -} - -type metadataPutMetricAlarmInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1239,11 +1143,7 @@ func (s PutMetricAlarmInput) GoString() string { } type PutMetricAlarmOutput struct { - metadataPutMetricAlarmOutput `json:"-" xml:"-"` -} - -type metadataPutMetricAlarmOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1263,11 +1163,7 @@ type PutMetricDataInput struct { // The namespace for the metric data. Namespace *string `min:"1" type:"string" required:"true"` - metadataPutMetricDataInput `json:"-" xml:"-"` -} - -type metadataPutMetricDataInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1281,11 +1177,7 @@ func (s PutMetricDataInput) GoString() string { } type PutMetricDataOutput struct { - metadataPutMetricDataOutput `json:"-" xml:"-"` -} - -type metadataPutMetricDataOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1314,11 +1206,7 @@ type SetAlarmStateInput struct { // The value of the state. StateValue *string `type:"string" required:"true" enum:"StateValue"` - metadataSetAlarmStateInput `json:"-" xml:"-"` -} - -type metadataSetAlarmStateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1332,11 +1220,7 @@ func (s SetAlarmStateInput) GoString() string { } type SetAlarmStateOutput struct { - metadataSetAlarmStateOutput `json:"-" xml:"-"` -} - -type metadataSetAlarmStateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1364,11 +1248,7 @@ type StatisticSet struct { // The sum of values for the sample set. Sum *float64 `type:"double" required:"true"` - metadataStatisticSet `json:"-" xml:"-"` -} - -type metadataStatisticSet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cloudwatchlogs/api.go b/service/cloudwatchlogs/api.go index e57ac916c78..582fffe9be3 100644 --- a/service/cloudwatchlogs/api.go +++ b/service/cloudwatchlogs/api.go @@ -914,11 +914,7 @@ type CancelExportTaskInput struct { // Id of the export task to cancel. TaskId *string `locationName:"taskId" min:"1" type:"string" required:"true"` - metadataCancelExportTaskInput `json:"-" xml:"-"` -} - -type metadataCancelExportTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -932,11 +928,7 @@ func (s CancelExportTaskInput) GoString() string { } type CancelExportTaskOutput struct { - metadataCancelExportTaskOutput `json:"-" xml:"-"` -} - -type metadataCancelExportTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -976,11 +968,7 @@ type CreateExportTaskInput struct { // with a timestamp later than this time will not be exported. To *int64 `locationName:"to" type:"long" required:"true"` - metadataCreateExportTaskInput `json:"-" xml:"-"` -} - -type metadataCreateExportTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -997,11 +985,7 @@ type CreateExportTaskOutput struct { // Id of the export task that got created. TaskId *string `locationName:"taskId" min:"1" type:"string"` - metadataCreateExportTaskOutput `json:"-" xml:"-"` -} - -type metadataCreateExportTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1018,11 +1002,7 @@ type CreateLogGroupInput struct { // The name of the log group to create. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` - metadataCreateLogGroupInput `json:"-" xml:"-"` -} - -type metadataCreateLogGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1036,11 +1016,7 @@ func (s CreateLogGroupInput) GoString() string { } type CreateLogGroupOutput struct { - metadataCreateLogGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateLogGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1060,11 +1036,7 @@ type CreateLogStreamInput struct { // The name of the log stream to create. LogStreamName *string `locationName:"logStreamName" min:"1" type:"string" required:"true"` - metadataCreateLogStreamInput `json:"-" xml:"-"` -} - -type metadataCreateLogStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1078,11 +1050,7 @@ func (s CreateLogStreamInput) GoString() string { } type CreateLogStreamOutput struct { - metadataCreateLogStreamOutput `json:"-" xml:"-"` -} - -type metadataCreateLogStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1099,11 +1067,7 @@ type DeleteDestinationInput struct { // The name of destination to delete. DestinationName *string `locationName:"destinationName" min:"1" type:"string" required:"true"` - metadataDeleteDestinationInput `json:"-" xml:"-"` -} - -type metadataDeleteDestinationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1117,11 +1081,7 @@ func (s DeleteDestinationInput) GoString() string { } type DeleteDestinationOutput struct { - metadataDeleteDestinationOutput `json:"-" xml:"-"` -} - -type metadataDeleteDestinationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1138,11 +1098,7 @@ type DeleteLogGroupInput struct { // The name of the log group to delete. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` - metadataDeleteLogGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteLogGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1156,11 +1112,7 @@ func (s DeleteLogGroupInput) GoString() string { } type DeleteLogGroupOutput struct { - metadataDeleteLogGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteLogGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1180,11 +1132,7 @@ type DeleteLogStreamInput struct { // The name of the log stream to delete. LogStreamName *string `locationName:"logStreamName" min:"1" type:"string" required:"true"` - metadataDeleteLogStreamInput `json:"-" xml:"-"` -} - -type metadataDeleteLogStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1198,11 +1146,7 @@ func (s DeleteLogStreamInput) GoString() string { } type DeleteLogStreamOutput struct { - metadataDeleteLogStreamOutput `json:"-" xml:"-"` -} - -type metadataDeleteLogStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1222,11 +1166,7 @@ type DeleteMetricFilterInput struct { // The name of the log group that is associated with the metric filter to delete. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` - metadataDeleteMetricFilterInput `json:"-" xml:"-"` -} - -type metadataDeleteMetricFilterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1240,11 +1180,7 @@ func (s DeleteMetricFilterInput) GoString() string { } type DeleteMetricFilterOutput struct { - metadataDeleteMetricFilterOutput `json:"-" xml:"-"` -} - -type metadataDeleteMetricFilterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1262,11 +1198,7 @@ type DeleteRetentionPolicyInput struct { // delete. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` - metadataDeleteRetentionPolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteRetentionPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1280,11 +1212,7 @@ func (s DeleteRetentionPolicyInput) GoString() string { } type DeleteRetentionPolicyOutput struct { - metadataDeleteRetentionPolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteRetentionPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1305,11 +1233,7 @@ type DeleteSubscriptionFilterInput struct { // to delete. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` - metadataDeleteSubscriptionFilterInput `json:"-" xml:"-"` -} - -type metadataDeleteSubscriptionFilterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1323,11 +1247,7 @@ func (s DeleteSubscriptionFilterInput) GoString() string { } type DeleteSubscriptionFilterOutput struct { - metadataDeleteSubscriptionFilterOutput `json:"-" xml:"-"` -} - -type metadataDeleteSubscriptionFilterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1353,11 +1273,7 @@ type DescribeDestinationsInput struct { // token expires after 24 hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeDestinationsInput `json:"-" xml:"-"` -} - -type metadataDescribeDestinationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1378,11 +1294,7 @@ type DescribeDestinationsOutput struct { // token expires after 24 hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeDestinationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDestinationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1413,11 +1325,7 @@ type DescribeExportTasksInput struct { // result in zero or one export task. TaskId *string `locationName:"taskId" min:"1" type:"string"` - metadataDescribeExportTasksInput `json:"-" xml:"-"` -} - -type metadataDescribeExportTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1439,11 +1347,7 @@ type DescribeExportTasksOutput struct { // token expires after 24 hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeExportTasksOutput `json:"-" xml:"-"` -} - -type metadataDescribeExportTasksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1470,11 +1374,7 @@ type DescribeLogGroupsInput struct { // request. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeLogGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeLogGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1496,11 +1396,7 @@ type DescribeLogGroupsOutput struct { // token expires after 24 hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeLogGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeLogGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1540,11 +1436,7 @@ type DescribeLogStreamsInput struct { // also contain a logStreamNamePrefix. OrderBy *string `locationName:"orderBy" type:"string" enum:"OrderBy"` - metadataDescribeLogStreamsInput `json:"-" xml:"-"` -} - -type metadataDescribeLogStreamsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1566,11 +1458,7 @@ type DescribeLogStreamsOutput struct { // token expires after 24 hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeLogStreamsOutput `json:"-" xml:"-"` -} - -type metadataDescribeLogStreamsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1600,11 +1488,7 @@ type DescribeMetricFiltersInput struct { // request. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeMetricFiltersInput `json:"-" xml:"-"` -} - -type metadataDescribeMetricFiltersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1625,11 +1509,7 @@ type DescribeMetricFiltersOutput struct { // token expires after 24 hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeMetricFiltersOutput `json:"-" xml:"-"` -} - -type metadataDescribeMetricFiltersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1658,11 +1538,7 @@ type DescribeSubscriptionFiltersInput struct { // token expires after 24 hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` - metadataDescribeSubscriptionFiltersInput `json:"-" xml:"-"` -} - -type metadataDescribeSubscriptionFiltersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1683,11 +1559,7 @@ type DescribeSubscriptionFiltersOutput struct { SubscriptionFilters []*SubscriptionFilter `locationName:"subscriptionFilters" type:"list"` - metadataDescribeSubscriptionFiltersOutput `json:"-" xml:"-"` -} - -type metadataDescribeSubscriptionFiltersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1723,11 +1595,7 @@ type Destination struct { // of a Kinesis stream). TargetArn *string `locationName:"targetArn" min:"1" type:"string"` - metadataDestination `json:"-" xml:"-"` -} - -type metadataDestination struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1771,11 +1639,7 @@ type ExportTask struct { // with a timestamp later than this time were not exported. To *int64 `locationName:"to" type:"long"` - metadataExportTask `json:"-" xml:"-"` -} - -type metadataExportTask struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1796,11 +1660,7 @@ type ExportTaskExecutionInfo struct { // A point in time when the export task got created. CreationTime *int64 `locationName:"creationTime" type:"long"` - metadataExportTaskExecutionInfo `json:"-" xml:"-"` -} - -type metadataExportTaskExecutionInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1821,11 +1681,7 @@ type ExportTaskStatus struct { // Status message related to the code. Message *string `locationName:"message" type:"string"` - metadataExportTaskStatus `json:"-" xml:"-"` -} - -type metadataExportTaskStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1872,11 +1728,7 @@ type FilterLogEventsInput struct { // If provided, events with a timestamp prior to this time will not be returned. StartTime *int64 `locationName:"startTime" type:"long"` - metadataFilterLogEventsInput `json:"-" xml:"-"` -} - -type metadataFilterLogEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1903,11 +1755,7 @@ type FilterLogEventsOutput struct { // still has more to be paginated. SearchedLogStreams []*SearchedLogStream `locationName:"searchedLogStreams" type:"list"` - metadataFilterLogEventsOutput `json:"-" xml:"-"` -} - -type metadataFilterLogEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1939,11 +1787,7 @@ type FilteredLogEvent struct { // 00:00:00 UTC. Timestamp *int64 `locationName:"timestamp" type:"long"` - metadataFilteredLogEvent `json:"-" xml:"-"` -} - -type metadataFilteredLogEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1985,11 +1829,7 @@ type GetLogEventsInput struct { // 00:00:00 UTC. StartTime *int64 `locationName:"startTime" type:"long"` - metadataGetLogEventsInput `json:"-" xml:"-"` -} - -type metadataGetLogEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2015,11 +1855,7 @@ type GetLogEventsOutput struct { // token expires after 24 hours. NextForwardToken *string `locationName:"nextForwardToken" min:"1" type:"string"` - metadataGetLogEventsOutput `json:"-" xml:"-"` -} - -type metadataGetLogEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2043,11 +1879,7 @@ type InputLogEvent struct { // 00:00:00 UTC. Timestamp *int64 `locationName:"timestamp" type:"long" required:"true"` - metadataInputLogEvent `json:"-" xml:"-"` -} - -type metadataInputLogEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2079,11 +1911,7 @@ type LogGroup struct { StoredBytes *int64 `locationName:"storedBytes" type:"long"` - metadataLogGroup `json:"-" xml:"-"` -} - -type metadataLogGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2125,11 +1953,7 @@ type LogStream struct { // obtained from the response of the previous request. UploadSequenceToken *string `locationName:"uploadSequenceToken" min:"1" type:"string"` - metadataLogStream `json:"-" xml:"-"` -} - -type metadataLogStream struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2161,11 +1985,7 @@ type MetricFilter struct { MetricTransformations []*MetricTransformation `locationName:"metricTransformations" min:"1" type:"list"` - metadataMetricFilter `json:"-" xml:"-"` -} - -type metadataMetricFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2185,11 +2005,7 @@ type MetricFilterMatchRecord struct { ExtractedValues map[string]*string `locationName:"extractedValues" type:"map"` - metadataMetricFilterMatchRecord `json:"-" xml:"-"` -} - -type metadataMetricFilterMatchRecord struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2216,11 +2032,7 @@ type MetricTransformation struct { // value in the log event. MetricValue *string `locationName:"metricValue" type:"string" required:"true"` - metadataMetricTransformation `json:"-" xml:"-"` -} - -type metadataMetricTransformation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2244,11 +2056,7 @@ type OutputLogEvent struct { // 00:00:00 UTC. Timestamp *int64 `locationName:"timestamp" type:"long"` - metadataOutputLogEvent `json:"-" xml:"-"` -} - -type metadataOutputLogEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2272,11 +2080,7 @@ type PutDestinationInput struct { // The ARN of an Amazon Kinesis stream to deliver matching log events to. TargetArn *string `locationName:"targetArn" min:"1" type:"string" required:"true"` - metadataPutDestinationInput `json:"-" xml:"-"` -} - -type metadataPutDestinationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2293,11 +2097,7 @@ type PutDestinationOutput struct { // A cross account destination that is the recipient of subscription log events. Destination *Destination `locationName:"destination" type:"structure"` - metadataPutDestinationOutput `json:"-" xml:"-"` -} - -type metadataPutDestinationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2318,11 +2118,7 @@ type PutDestinationPolicyInput struct { // A name for an existing destination. DestinationName *string `locationName:"destinationName" min:"1" type:"string" required:"true"` - metadataPutDestinationPolicyInput `json:"-" xml:"-"` -} - -type metadataPutDestinationPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2336,11 +2132,7 @@ func (s PutDestinationPolicyInput) GoString() string { } type PutDestinationPolicyOutput struct { - metadataPutDestinationPolicyOutput `json:"-" xml:"-"` -} - -type metadataPutDestinationPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2367,11 +2159,7 @@ type PutLogEventsInput struct { // request. SequenceToken *string `locationName:"sequenceToken" min:"1" type:"string"` - metadataPutLogEventsInput `json:"-" xml:"-"` -} - -type metadataPutLogEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2392,11 +2180,7 @@ type PutLogEventsOutput struct { RejectedLogEventsInfo *RejectedLogEventsInfo `locationName:"rejectedLogEventsInfo" type:"structure"` - metadataPutLogEventsOutput `json:"-" xml:"-"` -} - -type metadataPutLogEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2423,11 +2207,7 @@ type PutMetricFilterInput struct { // A collection of information needed to define how metric data gets emitted. MetricTransformations []*MetricTransformation `locationName:"metricTransformations" min:"1" type:"list" required:"true"` - metadataPutMetricFilterInput `json:"-" xml:"-"` -} - -type metadataPutMetricFilterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2441,11 +2221,7 @@ func (s PutMetricFilterInput) GoString() string { } type PutMetricFilterOutput struct { - metadataPutMetricFilterOutput `json:"-" xml:"-"` -} - -type metadataPutMetricFilterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2467,11 +2243,7 @@ type PutRetentionPolicyInput struct { // 365, 400, 545, 731, 1827, 3653. RetentionInDays *int64 `locationName:"retentionInDays" type:"integer" required:"true"` - metadataPutRetentionPolicyInput `json:"-" xml:"-"` -} - -type metadataPutRetentionPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2485,11 +2257,7 @@ func (s PutRetentionPolicyInput) GoString() string { } type PutRetentionPolicyOutput struct { - metadataPutRetentionPolicyOutput `json:"-" xml:"-"` -} - -type metadataPutRetentionPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2526,11 +2294,7 @@ type PutSubscriptionFilterInput struct { // an ARN of Destination) for cross-account delivery. RoleArn *string `locationName:"roleArn" min:"1" type:"string"` - metadataPutSubscriptionFilterInput `json:"-" xml:"-"` -} - -type metadataPutSubscriptionFilterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2544,11 +2308,7 @@ func (s PutSubscriptionFilterInput) GoString() string { } type PutSubscriptionFilterOutput struct { - metadataPutSubscriptionFilterOutput `json:"-" xml:"-"` -} - -type metadataPutSubscriptionFilterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2568,11 +2328,7 @@ type RejectedLogEventsInfo struct { TooOldLogEventEndIndex *int64 `locationName:"tooOldLogEventEndIndex" type:"integer"` - metadataRejectedLogEventsInfo `json:"-" xml:"-"` -} - -type metadataRejectedLogEventsInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2595,11 +2351,7 @@ type SearchedLogStream struct { // data exists to search by paginating further. SearchedCompletely *bool `locationName:"searchedCompletely" type:"boolean"` - metadataSearchedLogStream `json:"-" xml:"-"` -} - -type metadataSearchedLogStream struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2632,11 +2384,7 @@ type SubscriptionFilter struct { RoleArn *string `locationName:"roleArn" min:"1" type:"string"` - metadataSubscriptionFilter `json:"-" xml:"-"` -} - -type metadataSubscriptionFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2659,11 +2407,7 @@ type TestMetricFilterInput struct { // A list of log event messages to test. LogEventMessages []*string `locationName:"logEventMessages" min:"1" type:"list" required:"true"` - metadataTestMetricFilterInput `json:"-" xml:"-"` -} - -type metadataTestMetricFilterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2679,11 +2423,7 @@ func (s TestMetricFilterInput) GoString() string { type TestMetricFilterOutput struct { Matches []*MetricFilterMatchRecord `locationName:"matches" type:"list"` - metadataTestMetricFilterOutput `json:"-" xml:"-"` -} - -type metadataTestMetricFilterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/codecommit/api.go b/service/codecommit/api.go index f71468aa28f..2259323e41b 100644 --- a/service/codecommit/api.go +++ b/service/codecommit/api.go @@ -343,11 +343,7 @@ type BatchGetRepositoriesInput struct { // The names of the repositories to get information about. RepositoryNames []*string `locationName:"repositoryNames" type:"list" required:"true"` - metadataBatchGetRepositoriesInput `json:"-" xml:"-"` -} - -type metadataBatchGetRepositoriesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -368,11 +364,7 @@ type BatchGetRepositoriesOutput struct { // Returns a list of repository names for which information could not be found. RepositoriesNotFound []*string `locationName:"repositoriesNotFound" type:"list"` - metadataBatchGetRepositoriesOutput `json:"-" xml:"-"` -} - -type metadataBatchGetRepositoriesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -393,11 +385,7 @@ type BranchInfo struct { // The ID of the last commit made to the branch. CommitId *string `locationName:"commitId" type:"string"` - metadataBranchInfo `json:"-" xml:"-"` -} - -type metadataBranchInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -424,11 +412,7 @@ type CreateBranchInput struct { // The name of the repository in which you want to create the new branch. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"` - metadataCreateBranchInput `json:"-" xml:"-"` -} - -type metadataCreateBranchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -442,11 +426,7 @@ func (s CreateBranchInput) GoString() string { } type CreateBranchOutput struct { - metadataCreateBranchOutput `json:"-" xml:"-"` -} - -type metadataCreateBranchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -471,11 +451,7 @@ type CreateRepositoryInput struct { // is prohibited. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"` - metadataCreateRepositoryInput `json:"-" xml:"-"` -} - -type metadataCreateRepositoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -493,11 +469,7 @@ type CreateRepositoryOutput struct { // Information about the newly created repository. RepositoryMetadata *RepositoryMetadata `locationName:"repositoryMetadata" type:"structure"` - metadataCreateRepositoryOutput `json:"-" xml:"-"` -} - -type metadataCreateRepositoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -515,11 +487,7 @@ type DeleteRepositoryInput struct { // The name of the repository to delete. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"` - metadataDeleteRepositoryInput `json:"-" xml:"-"` -} - -type metadataDeleteRepositoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -537,11 +505,7 @@ type DeleteRepositoryOutput struct { // The ID of the repository that was deleted. RepositoryId *string `locationName:"repositoryId" type:"string"` - metadataDeleteRepositoryOutput `json:"-" xml:"-"` -} - -type metadataDeleteRepositoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -564,11 +528,7 @@ type GetBranchInput struct { // name. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"` - metadataGetBranchInput `json:"-" xml:"-"` -} - -type metadataGetBranchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -586,11 +546,7 @@ type GetBranchOutput struct { // The name of the branch. Branch *BranchInfo `locationName:"branch" type:"structure"` - metadataGetBranchOutput `json:"-" xml:"-"` -} - -type metadataGetBranchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -608,11 +564,7 @@ type GetRepositoryInput struct { // The name of the repository to get information about. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"` - metadataGetRepositoryInput `json:"-" xml:"-"` -} - -type metadataGetRepositoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -630,11 +582,7 @@ type GetRepositoryOutput struct { // Information about the repository. RepositoryMetadata *RepositoryMetadata `locationName:"repositoryMetadata" type:"structure"` - metadataGetRepositoryOutput `json:"-" xml:"-"` -} - -type metadataGetRepositoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -655,11 +603,7 @@ type ListBranchesInput struct { // The name of the repository that contains the branches. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"` - metadataListBranchesInput `json:"-" xml:"-"` -} - -type metadataListBranchesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -680,11 +624,7 @@ type ListBranchesOutput struct { // An enumeration token that returns the batch of the results. NextToken *string `locationName:"nextToken" type:"string"` - metadataListBranchesOutput `json:"-" xml:"-"` -} - -type metadataListBranchesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -711,11 +651,7 @@ type ListRepositoriesInput struct { // The criteria used to sort the results of a list repositories operation. SortBy *string `locationName:"sortBy" type:"string" enum:"SortByEnum"` - metadataListRepositoriesInput `json:"-" xml:"-"` -} - -type metadataListRepositoriesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -739,11 +675,7 @@ type ListRepositoriesOutput struct { // Lists the repositories called by the list repositories operation. Repositories []*RepositoryNameIdPair `locationName:"repositories" type:"list"` - metadataListRepositoriesOutput `json:"-" xml:"-"` -} - -type metadataListRepositoriesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -788,11 +720,7 @@ type RepositoryMetadata struct { // The repository's name. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"` - metadataRepositoryMetadata `json:"-" xml:"-"` -} - -type metadataRepositoryMetadata struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -815,11 +743,7 @@ type RepositoryNameIdPair struct { // name. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"` - metadataRepositoryNameIdPair `json:"-" xml:"-"` -} - -type metadataRepositoryNameIdPair struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -840,11 +764,7 @@ type UpdateDefaultBranchInput struct { // The name of the repository to set or change the default branch for. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"` - metadataUpdateDefaultBranchInput `json:"-" xml:"-"` -} - -type metadataUpdateDefaultBranchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -858,11 +778,7 @@ func (s UpdateDefaultBranchInput) GoString() string { } type UpdateDefaultBranchOutput struct { - metadataUpdateDefaultBranchOutput `json:"-" xml:"-"` -} - -type metadataUpdateDefaultBranchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -883,11 +799,7 @@ type UpdateRepositoryDescriptionInput struct { // The name of the repository to set or change the comment or description for. RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"` - metadataUpdateRepositoryDescriptionInput `json:"-" xml:"-"` -} - -type metadataUpdateRepositoryDescriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -901,11 +813,7 @@ func (s UpdateRepositoryDescriptionInput) GoString() string { } type UpdateRepositoryDescriptionOutput struct { - metadataUpdateRepositoryDescriptionOutput `json:"-" xml:"-"` -} - -type metadataUpdateRepositoryDescriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -930,11 +838,7 @@ type UpdateRepositoryNameInput struct { // name. OldName *string `locationName:"oldName" min:"1" type:"string" required:"true"` - metadataUpdateRepositoryNameInput `json:"-" xml:"-"` -} - -type metadataUpdateRepositoryNameInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -948,11 +852,7 @@ func (s UpdateRepositoryNameInput) GoString() string { } type UpdateRepositoryNameOutput struct { - metadataUpdateRepositoryNameOutput `json:"-" xml:"-"` -} - -type metadataUpdateRepositoryNameOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/codedeploy/api.go b/service/codedeploy/api.go index a15d2f2d8bd..05de1eaf25a 100644 --- a/service/codedeploy/api.go +++ b/service/codedeploy/api.go @@ -979,11 +979,7 @@ type AddTagsToOnPremisesInstancesInput struct { // Value-only tags are not allowed. Tags []*Tag `locationName:"tags" type:"list" required:"true"` - metadataAddTagsToOnPremisesInstancesInput `json:"-" xml:"-"` -} - -type metadataAddTagsToOnPremisesInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -997,11 +993,7 @@ func (s AddTagsToOnPremisesInstancesInput) GoString() string { } type AddTagsToOnPremisesInstancesOutput struct { - metadataAddTagsToOnPremisesInstancesOutput `json:"-" xml:"-"` -} - -type metadataAddTagsToOnPremisesInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1029,11 +1021,7 @@ type ApplicationInfo struct { // otherwise, false. LinkedToGitHub *bool `locationName:"linkedToGitHub" type:"boolean"` - metadataApplicationInfo `json:"-" xml:"-"` -} - -type metadataApplicationInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1054,11 +1042,7 @@ type AutoScalingGroup struct { // The Auto Scaling group name. Name *string `locationName:"name" type:"string"` - metadataAutoScalingGroup `json:"-" xml:"-"` -} - -type metadataAutoScalingGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1077,11 +1061,7 @@ type BatchGetApplicationsInput struct { // spaces. ApplicationNames []*string `locationName:"applicationNames" type:"list"` - metadataBatchGetApplicationsInput `json:"-" xml:"-"` -} - -type metadataBatchGetApplicationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1099,11 +1079,7 @@ type BatchGetApplicationsOutput struct { // Information about the applications. ApplicationsInfo []*ApplicationInfo `locationName:"applicationsInfo" type:"list"` - metadataBatchGetApplicationsOutput `json:"-" xml:"-"` -} - -type metadataBatchGetApplicationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1121,11 +1097,7 @@ type BatchGetDeploymentsInput struct { // A list of deployment IDs, with multiple deployment IDs separated by spaces. DeploymentIds []*string `locationName:"deploymentIds" type:"list"` - metadataBatchGetDeploymentsInput `json:"-" xml:"-"` -} - -type metadataBatchGetDeploymentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1143,11 +1115,7 @@ type BatchGetDeploymentsOutput struct { // Information about the deployments. DeploymentsInfo []*DeploymentInfo `locationName:"deploymentsInfo" type:"list"` - metadataBatchGetDeploymentsOutput `json:"-" xml:"-"` -} - -type metadataBatchGetDeploymentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1165,11 +1133,7 @@ type BatchGetOnPremisesInstancesInput struct { // The names of the on-premises instances to get information about. InstanceNames []*string `locationName:"instanceNames" type:"list"` - metadataBatchGetOnPremisesInstancesInput `json:"-" xml:"-"` -} - -type metadataBatchGetOnPremisesInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1187,11 +1151,7 @@ type BatchGetOnPremisesInstancesOutput struct { // Information about the on-premises instances. InstanceInfos []*InstanceInfo `locationName:"instanceInfos" type:"list"` - metadataBatchGetOnPremisesInstancesOutput `json:"-" xml:"-"` -} - -type metadataBatchGetOnPremisesInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1210,11 +1170,7 @@ type CreateApplicationInput struct { // IAM user or AWS account. ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"` - metadataCreateApplicationInput `json:"-" xml:"-"` -} - -type metadataCreateApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1232,11 +1188,7 @@ type CreateApplicationOutput struct { // A unique application ID. ApplicationId *string `locationName:"applicationId" type:"string"` - metadataCreateApplicationOutput `json:"-" xml:"-"` -} - -type metadataCreateApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1272,11 +1224,7 @@ type CreateDeploymentConfigInput struct { // FLEET_PERCENT and a value of 95. MinimumHealthyHosts *MinimumHealthyHosts `locationName:"minimumHealthyHosts" type:"structure"` - metadataCreateDeploymentConfigInput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1294,11 +1242,7 @@ type CreateDeploymentConfigOutput struct { // A unique deployment configuration ID. DeploymentConfigId *string `locationName:"deploymentConfigId" type:"string"` - metadataCreateDeploymentConfigOutput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentConfigOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1364,11 +1308,7 @@ type CreateDeploymentGroupInput struct { // when interacting with AWS services. ServiceRoleArn *string `locationName:"serviceRoleArn" type:"string" required:"true"` - metadataCreateDeploymentGroupInput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1386,11 +1326,7 @@ type CreateDeploymentGroupOutput struct { // A unique deployment group ID. DeploymentGroupId *string `locationName:"deploymentGroupId" type:"string"` - metadataCreateDeploymentGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1438,11 +1374,7 @@ type CreateDeploymentInput struct { // location. Revision *RevisionLocation `locationName:"revision" type:"structure"` - metadataCreateDeploymentInput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1460,11 +1392,7 @@ type CreateDeploymentOutput struct { // A unique deployment ID. DeploymentId *string `locationName:"deploymentId" type:"string"` - metadataCreateDeploymentOutput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1483,11 +1411,7 @@ type DeleteApplicationInput struct { // IAM user or AWS account. ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"` - metadataDeleteApplicationInput `json:"-" xml:"-"` -} - -type metadataDeleteApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1501,11 +1425,7 @@ func (s DeleteApplicationInput) GoString() string { } type DeleteApplicationOutput struct { - metadataDeleteApplicationOutput `json:"-" xml:"-"` -} - -type metadataDeleteApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1524,11 +1444,7 @@ type DeleteDeploymentConfigInput struct { // IAM user or AWS account. DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string" required:"true"` - metadataDeleteDeploymentConfigInput `json:"-" xml:"-"` -} - -type metadataDeleteDeploymentConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1542,11 +1458,7 @@ func (s DeleteDeploymentConfigInput) GoString() string { } type DeleteDeploymentConfigOutput struct { - metadataDeleteDeploymentConfigOutput `json:"-" xml:"-"` -} - -type metadataDeleteDeploymentConfigOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1568,11 +1480,7 @@ type DeleteDeploymentGroupInput struct { // The name of an existing deployment group for the specified application. DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string" required:"true"` - metadataDeleteDeploymentGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteDeploymentGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1595,11 +1503,7 @@ type DeleteDeploymentGroupOutput struct { // in the Auto Scaling group. HooksNotCleanedUp []*AutoScalingGroup `locationName:"hooksNotCleanedUp" type:"list"` - metadataDeleteDeploymentGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteDeploymentGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1626,11 +1530,7 @@ type DeploymentConfigInfo struct { // Information about the number or percentage of minimum healthy instances. MinimumHealthyHosts *MinimumHealthyHosts `locationName:"minimumHealthyHosts" type:"structure"` - metadataDeploymentConfigInfo `json:"-" xml:"-"` -} - -type metadataDeploymentConfigInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1673,11 +1573,7 @@ type DeploymentGroupInfo struct { // type and its location. TargetRevision *RevisionLocation `locationName:"targetRevision" type:"structure"` - metadataDeploymentGroupInfo `json:"-" xml:"-"` -} - -type metadataDeploymentGroupInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1751,11 +1647,7 @@ type DeploymentInfo struct { // The current state of the deployment as a whole. Status *string `locationName:"status" type:"string" enum:"DeploymentStatus"` - metadataDeploymentInfo `json:"-" xml:"-"` -} - -type metadataDeploymentInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1785,11 +1677,7 @@ type DeploymentOverview struct { // The number of instances that have succeeded in the deployment. Succeeded *int64 `type:"long"` - metadataDeploymentOverview `json:"-" xml:"-"` -} - -type metadataDeploymentOverview struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1807,11 +1695,7 @@ type DeregisterOnPremisesInstanceInput struct { // The name of the on-premises instance to deregister. InstanceName *string `locationName:"instanceName" type:"string" required:"true"` - metadataDeregisterOnPremisesInstanceInput `json:"-" xml:"-"` -} - -type metadataDeregisterOnPremisesInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1825,11 +1709,7 @@ func (s DeregisterOnPremisesInstanceInput) GoString() string { } type DeregisterOnPremisesInstanceOutput struct { - metadataDeregisterOnPremisesInstanceOutput `json:"-" xml:"-"` -} - -type metadataDeregisterOnPremisesInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1863,11 +1743,7 @@ type Diagnostics struct { // The name of the script. ScriptName *string `locationName:"scriptName" type:"string"` - metadataDiagnostics `json:"-" xml:"-"` -} - -type metadataDiagnostics struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1893,11 +1769,7 @@ type EC2TagFilter struct { // The tag filter value. Value *string `type:"string"` - metadataEC2TagFilter `json:"-" xml:"-"` -} - -type metadataEC2TagFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1938,11 +1810,7 @@ type ErrorInformation struct { // An accompanying error message. Message *string `locationName:"message" type:"string"` - metadataErrorInformation `json:"-" xml:"-"` -} - -type metadataErrorInformation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1972,11 +1840,7 @@ type GenericRevisionInfo struct { // When the revision was registered with AWS CodeDeploy. RegisterTime *time.Time `locationName:"registerTime" type:"timestamp" timestampFormat:"unix"` - metadataGenericRevisionInfo `json:"-" xml:"-"` -} - -type metadataGenericRevisionInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1995,11 +1859,7 @@ type GetApplicationInput struct { // IAM user or AWS account. ApplicationName *string `locationName:"applicationName" min:"1" type:"string" required:"true"` - metadataGetApplicationInput `json:"-" xml:"-"` -} - -type metadataGetApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2017,11 +1877,7 @@ type GetApplicationOutput struct { // Information about the application. Application *ApplicationInfo `locationName:"application" type:"structure"` - metadataGetApplicationOutput `json:"-" xml:"-"` -} - -type metadataGetApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2043,11 +1899,7 @@ type GetApplicationRevisionInput struct { // type and its location. Revision *RevisionLocation `locationName:"revision" type:"structure" required:"true"` - metadataGetApplicationRevisionInput `json:"-" xml:"-"` -} - -type metadataGetApplicationRevisionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2072,11 +1924,7 @@ type GetApplicationRevisionOutput struct { // General information about the revision. RevisionInfo *GenericRevisionInfo `locationName:"revisionInfo" type:"structure"` - metadataGetApplicationRevisionOutput `json:"-" xml:"-"` -} - -type metadataGetApplicationRevisionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2095,11 +1943,7 @@ type GetDeploymentConfigInput struct { // IAM user or AWS account. DeploymentConfigName *string `locationName:"deploymentConfigName" min:"1" type:"string" required:"true"` - metadataGetDeploymentConfigInput `json:"-" xml:"-"` -} - -type metadataGetDeploymentConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2117,11 +1961,7 @@ type GetDeploymentConfigOutput struct { // Information about the deployment configuration. DeploymentConfigInfo *DeploymentConfigInfo `locationName:"deploymentConfigInfo" type:"structure"` - metadataGetDeploymentConfigOutput `json:"-" xml:"-"` -} - -type metadataGetDeploymentConfigOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2143,11 +1983,7 @@ type GetDeploymentGroupInput struct { // The name of an existing deployment group for the specified application. DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string" required:"true"` - metadataGetDeploymentGroupInput `json:"-" xml:"-"` -} - -type metadataGetDeploymentGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2165,11 +2001,7 @@ type GetDeploymentGroupOutput struct { // Information about the deployment group. DeploymentGroupInfo *DeploymentGroupInfo `locationName:"deploymentGroupInfo" type:"structure"` - metadataGetDeploymentGroupOutput `json:"-" xml:"-"` -} - -type metadataGetDeploymentGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2188,11 +2020,7 @@ type GetDeploymentInput struct { // account. DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"` - metadataGetDeploymentInput `json:"-" xml:"-"` -} - -type metadataGetDeploymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2213,11 +2041,7 @@ type GetDeploymentInstanceInput struct { // The unique ID of an instance in the deployment's deployment group. InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - metadataGetDeploymentInstanceInput `json:"-" xml:"-"` -} - -type metadataGetDeploymentInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2235,11 +2059,7 @@ type GetDeploymentInstanceOutput struct { // Information about the instance. InstanceSummary *InstanceSummary `locationName:"instanceSummary" type:"structure"` - metadataGetDeploymentInstanceOutput `json:"-" xml:"-"` -} - -type metadataGetDeploymentInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2257,11 +2077,7 @@ type GetDeploymentOutput struct { // Information about the deployment. DeploymentInfo *DeploymentInfo `locationName:"deploymentInfo" type:"structure"` - metadataGetDeploymentOutput `json:"-" xml:"-"` -} - -type metadataGetDeploymentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2279,11 +2095,7 @@ type GetOnPremisesInstanceInput struct { // The name of the on-premises instance to get information about InstanceName *string `locationName:"instanceName" type:"string" required:"true"` - metadataGetOnPremisesInstanceInput `json:"-" xml:"-"` -} - -type metadataGetOnPremisesInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2301,11 +2113,7 @@ type GetOnPremisesInstanceOutput struct { // Information about the on-premises instance. InstanceInfo *InstanceInfo `locationName:"instanceInfo" type:"structure"` - metadataGetOnPremisesInstanceOutput `json:"-" xml:"-"` -} - -type metadataGetOnPremisesInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2331,11 +2139,7 @@ type GitHubLocation struct { // Specified as account/repository. Repository *string `locationName:"repository" type:"string"` - metadataGitHubLocation `json:"-" xml:"-"` -} - -type metadataGitHubLocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2369,11 +2173,7 @@ type InstanceInfo struct { // The tags that are currently associated with the on-premises instance. Tags []*Tag `locationName:"tags" type:"list"` - metadataInstanceInfo `json:"-" xml:"-"` -} - -type metadataInstanceInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2409,11 +2209,7 @@ type InstanceSummary struct { // deployment status is unknown for this instance. Status *string `locationName:"status" type:"string" enum:"InstanceStatus"` - metadataInstanceSummary `json:"-" xml:"-"` -} - -type metadataInstanceSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2450,11 +2246,7 @@ type LifecycleEvent struct { // lifecycle event is unknown. Status *string `locationName:"status" type:"string" enum:"LifecycleEventStatus"` - metadataLifecycleEvent `json:"-" xml:"-"` -} - -type metadataLifecycleEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2513,11 +2305,7 @@ type ListApplicationRevisionsInput struct { // If set to null, the results will be sorted in an arbitrary order. SortOrder *string `locationName:"sortOrder" type:"string" enum:"SortOrder"` - metadataListApplicationRevisionsInput `json:"-" xml:"-"` -} - -type metadataListApplicationRevisionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2541,11 +2329,7 @@ type ListApplicationRevisionsOutput struct { // A list of revision locations that contain the matching revisions. Revisions []*RevisionLocation `locationName:"revisions" type:"list"` - metadataListApplicationRevisionsOutput `json:"-" xml:"-"` -} - -type metadataListApplicationRevisionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2564,11 +2348,7 @@ type ListApplicationsInput struct { // which can be used to return the next set of applications in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListApplicationsInput `json:"-" xml:"-"` -} - -type metadataListApplicationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2591,11 +2371,7 @@ type ListApplicationsOutput struct { // applications call to return the next set of applications in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListApplicationsOutput `json:"-" xml:"-"` -} - -type metadataListApplicationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2615,11 +2391,7 @@ type ListDeploymentConfigsInput struct { // in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListDeploymentConfigsInput `json:"-" xml:"-"` -} - -type metadataListDeploymentConfigsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2644,11 +2416,7 @@ type ListDeploymentConfigsOutput struct { // in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListDeploymentConfigsOutput `json:"-" xml:"-"` -} - -type metadataListDeploymentConfigsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2672,11 +2440,7 @@ type ListDeploymentGroupsInput struct { // list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListDeploymentGroupsInput `json:"-" xml:"-"` -} - -type metadataListDeploymentGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2703,11 +2467,7 @@ type ListDeploymentGroupsOutput struct { // list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListDeploymentGroupsOutput `json:"-" xml:"-"` -} - -type metadataListDeploymentGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2741,11 +2501,7 @@ type ListDeploymentInstancesInput struct { // the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListDeploymentInstancesInput `json:"-" xml:"-"` -} - -type metadataListDeploymentInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2769,11 +2525,7 @@ type ListDeploymentInstancesOutput struct { // in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListDeploymentInstancesOutput `json:"-" xml:"-"` -} - -type metadataListDeploymentInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2812,11 +2564,7 @@ type ListDeploymentsInput struct { // which can be used to return the next set of deployments in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListDeploymentsInput `json:"-" xml:"-"` -} - -type metadataListDeploymentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2839,11 +2587,7 @@ type ListDeploymentsOutput struct { // deployments call to return the next set of deployments in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListDeploymentsOutput `json:"-" xml:"-"` -} - -type metadataListDeploymentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2875,11 +2619,7 @@ type ListOnPremisesInstancesInput struct { // on-premises instance names that are returned. TagFilters []*TagFilter `locationName:"tagFilters" type:"list"` - metadataListOnPremisesInstancesInput `json:"-" xml:"-"` -} - -type metadataListOnPremisesInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2903,11 +2643,7 @@ type ListOnPremisesInstancesOutput struct { // in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListOnPremisesInstancesOutput `json:"-" xml:"-"` -} - -type metadataListOnPremisesInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2942,11 +2678,7 @@ type MinimumHealthyHosts struct { // The minimum healthy instances value. Value *int64 `locationName:"value" type:"integer"` - metadataMinimumHealthyHosts `json:"-" xml:"-"` -} - -type metadataMinimumHealthyHosts struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2972,11 +2704,7 @@ type RegisterApplicationRevisionInput struct { // type and its location. Revision *RevisionLocation `locationName:"revision" type:"structure" required:"true"` - metadataRegisterApplicationRevisionInput `json:"-" xml:"-"` -} - -type metadataRegisterApplicationRevisionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2990,11 +2718,7 @@ func (s RegisterApplicationRevisionInput) GoString() string { } type RegisterApplicationRevisionOutput struct { - metadataRegisterApplicationRevisionOutput `json:"-" xml:"-"` -} - -type metadataRegisterApplicationRevisionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3015,11 +2739,7 @@ type RegisterOnPremisesInstanceInput struct { // The name of the on-premises instance to register. InstanceName *string `locationName:"instanceName" type:"string" required:"true"` - metadataRegisterOnPremisesInstanceInput `json:"-" xml:"-"` -} - -type metadataRegisterOnPremisesInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3033,11 +2753,7 @@ func (s RegisterOnPremisesInstanceInput) GoString() string { } type RegisterOnPremisesInstanceOutput struct { - metadataRegisterOnPremisesInstanceOutput `json:"-" xml:"-"` -} - -type metadataRegisterOnPremisesInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3058,11 +2774,7 @@ type RemoveTagsFromOnPremisesInstancesInput struct { // The tag key-value pairs to remove from the on-premises instances. Tags []*Tag `locationName:"tags" type:"list" required:"true"` - metadataRemoveTagsFromOnPremisesInstancesInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromOnPremisesInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3076,11 +2788,7 @@ func (s RemoveTagsFromOnPremisesInstancesInput) GoString() string { } type RemoveTagsFromOnPremisesInstancesOutput struct { - metadataRemoveTagsFromOnPremisesInstancesOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromOnPremisesInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3109,11 +2817,7 @@ type RevisionLocation struct { // Amazon S3. S3Location *S3Location `locationName:"s3Location" type:"structure"` - metadataRevisionLocation `json:"-" xml:"-"` -} - -type metadataRevisionLocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3156,11 +2860,7 @@ type S3Location struct { // by default. Version *string `locationName:"version" type:"string"` - metadataS3Location `json:"-" xml:"-"` -} - -type metadataS3Location struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3178,11 +2878,7 @@ type StopDeploymentInput struct { // The unique ID of a deployment. DeploymentId *string `locationName:"deploymentId" type:"string" required:"true"` - metadataStopDeploymentInput `json:"-" xml:"-"` -} - -type metadataStopDeploymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3205,11 +2901,7 @@ type StopDeploymentOutput struct { // An accompanying status message. StatusMessage *string `locationName:"statusMessage" type:"string"` - metadataStopDeploymentOutput `json:"-" xml:"-"` -} - -type metadataStopDeploymentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3230,11 +2922,7 @@ type Tag struct { // The tag's value. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3260,11 +2948,7 @@ type TagFilter struct { // The on-premises instance tag filter value. Value *string `type:"string"` - metadataTagFilter `json:"-" xml:"-"` -} - -type metadataTagFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3289,11 +2973,7 @@ type TimeRange struct { // Specify null to leave the time range's start time open-ended. Start *time.Time `locationName:"start" type:"timestamp" timestampFormat:"unix"` - metadataTimeRange `json:"-" xml:"-"` -} - -type metadataTimeRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3314,11 +2994,7 @@ type UpdateApplicationInput struct { // The new name that you want to change the application to. NewApplicationName *string `locationName:"newApplicationName" min:"1" type:"string"` - metadataUpdateApplicationInput `json:"-" xml:"-"` -} - -type metadataUpdateApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3332,11 +3008,7 @@ func (s UpdateApplicationInput) GoString() string { } type UpdateApplicationOutput struct { - metadataUpdateApplicationOutput `json:"-" xml:"-"` -} - -type metadataUpdateApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3379,11 +3051,7 @@ type UpdateDeploymentGroupInput struct { // A replacement service role's ARN, if you want to change it. ServiceRoleArn *string `locationName:"serviceRoleArn" type:"string"` - metadataUpdateDeploymentGroupInput `json:"-" xml:"-"` -} - -type metadataUpdateDeploymentGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3405,11 +3073,7 @@ type UpdateDeploymentGroupOutput struct { // lifecycle event hooks from the AWS account. HooksNotCleanedUp []*AutoScalingGroup `locationName:"hooksNotCleanedUp" type:"list"` - metadataUpdateDeploymentGroupOutput `json:"-" xml:"-"` -} - -type metadataUpdateDeploymentGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/codepipeline/api.go b/service/codepipeline/api.go index 394ff198821..eac271db1e6 100644 --- a/service/codepipeline/api.go +++ b/service/codepipeline/api.go @@ -686,11 +686,7 @@ type AWSSessionCredentials struct { // The token for the session. SessionToken *string `locationName:"sessionToken" type:"string" required:"true"` - metadataAWSSessionCredentials `json:"-" xml:"-"` -} - -type metadataAWSSessionCredentials struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -713,11 +709,7 @@ type AcknowledgeJobInput struct { // in the response. Nonce *string `locationName:"nonce" type:"string" required:"true"` - metadataAcknowledgeJobInput `json:"-" xml:"-"` -} - -type metadataAcknowledgeJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -735,11 +727,7 @@ type AcknowledgeJobOutput struct { // Whether the job worker has received the specified job. Status *string `locationName:"status" type:"string" enum:"JobStatus"` - metadataAcknowledgeJobOutput `json:"-" xml:"-"` -} - -type metadataAcknowledgeJobOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -766,11 +754,7 @@ type AcknowledgeThirdPartyJobInput struct { // in the response. Nonce *string `locationName:"nonce" type:"string" required:"true"` - metadataAcknowledgeThirdPartyJobInput `json:"-" xml:"-"` -} - -type metadataAcknowledgeThirdPartyJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -788,11 +772,7 @@ type AcknowledgeThirdPartyJobOutput struct { // The status information for the third party job, if any. Status *string `locationName:"status" type:"string" enum:"JobStatus"` - metadataAcknowledgeThirdPartyJobOutput `json:"-" xml:"-"` -} - -type metadataAcknowledgeThirdPartyJobOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -810,11 +790,7 @@ type ActionConfiguration struct { // The configuration data for the action. Configuration map[string]*string `locationName:"configuration" type:"map"` - metadataActionConfiguration `json:"-" xml:"-"` -} - -type metadataActionConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -864,11 +840,7 @@ type ActionConfigurationProperty struct { // The type of the configuration property. Type *string `locationName:"type" type:"string" enum:"ActionConfigurationPropertyType"` - metadataActionConfigurationProperty `json:"-" xml:"-"` -} - -type metadataActionConfigurationProperty struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -887,11 +859,7 @@ type ActionContext struct { // The name of the action within the context of a job. Name *string `locationName:"name" min:"1" type:"string"` - metadataActionContext `json:"-" xml:"-"` -} - -type metadataActionContext struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -930,11 +898,7 @@ type ActionDeclaration struct { // The order in which actions are run. RunOrder *int64 `locationName:"runOrder" min:"1" type:"integer"` - metadataActionDeclaration `json:"-" xml:"-"` -} - -type metadataActionDeclaration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -972,11 +936,7 @@ type ActionExecution struct { // A summary of the run of the action. Summary *string `locationName:"summary" type:"string"` - metadataActionExecution `json:"-" xml:"-"` -} - -type metadataActionExecution struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1003,11 +963,7 @@ type ActionRevision struct { // action. RevisionId *string `locationName:"revisionId" type:"string" required:"true"` - metadataActionRevision `json:"-" xml:"-"` -} - -type metadataActionRevision struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1039,11 +995,7 @@ type ActionState struct { // page. RevisionUrl *string `locationName:"revisionUrl" min:"1" type:"string"` - metadataActionState `json:"-" xml:"-"` -} - -type metadataActionState struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1073,11 +1025,7 @@ type ActionType struct { // The settings for the action type. Settings *ActionTypeSettings `locationName:"settings" type:"structure"` - metadataActionType `json:"-" xml:"-"` -} - -type metadataActionType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1109,11 +1057,7 @@ type ActionTypeId struct { // A string that identifies the action type. Version *string `locationName:"version" min:"1" type:"string" required:"true"` - metadataActionTypeId `json:"-" xml:"-"` -} - -type metadataActionTypeId struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1150,11 +1094,7 @@ type ActionTypeSettings struct { // and perform initial configuration of the action provided by that service. ThirdPartyConfigurationUrl *string `locationName:"thirdPartyConfigurationUrl" min:"1" type:"string"` - metadataActionTypeSettings `json:"-" xml:"-"` -} - -type metadataActionTypeSettings struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1180,11 +1120,7 @@ type Artifact struct { // a commit ID (GitHub) or a revision ID (Amazon S3). Revision *string `locationName:"revision" type:"string"` - metadataArtifact `json:"-" xml:"-"` -} - -type metadataArtifact struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1205,11 +1141,7 @@ type ArtifactDetails struct { // The minimum number of artifacts allowed for the action type. MinimumCount *int64 `locationName:"minimumCount" type:"integer" required:"true"` - metadataArtifactDetails `json:"-" xml:"-"` -} - -type metadataArtifactDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1230,11 +1162,7 @@ type ArtifactLocation struct { // The type of artifact in the location. Type *string `locationName:"type" type:"string" enum:"ArtifactLocationType"` - metadataArtifactLocation `json:"-" xml:"-"` -} - -type metadataArtifactLocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1263,11 +1191,7 @@ type ArtifactStore struct { // The type of the artifact store, such as S3. Type *string `locationName:"type" type:"string" required:"true" enum:"ArtifactStoreType"` - metadataArtifactStore `json:"-" xml:"-"` -} - -type metadataArtifactStore struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1288,11 +1212,7 @@ type BlockerDeclaration struct { // The type of the gate declaration. Type *string `locationName:"type" type:"string" required:"true" enum:"BlockerType"` - metadataBlockerDeclaration `json:"-" xml:"-"` -} - -type metadataBlockerDeclaration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1331,11 +1251,7 @@ type CreateCustomActionTypeInput struct { // This is required. Version *string `locationName:"version" min:"1" type:"string" required:"true"` - metadataCreateCustomActionTypeInput `json:"-" xml:"-"` -} - -type metadataCreateCustomActionTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1353,11 +1269,7 @@ type CreateCustomActionTypeOutput struct { // Returns information about the details of an action type. ActionType *ActionType `locationName:"actionType" type:"structure" required:"true"` - metadataCreateCustomActionTypeOutput `json:"-" xml:"-"` -} - -type metadataCreateCustomActionTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1375,11 +1287,7 @@ type CreatePipelineInput struct { // Represents the structure of actions and stages to be performed in the pipeline. Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure" required:"true"` - metadataCreatePipelineInput `json:"-" xml:"-"` -} - -type metadataCreatePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1397,11 +1305,7 @@ type CreatePipelineOutput struct { // Represents the structure of actions and stages to be performed in the pipeline. Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"` - metadataCreatePipelineOutput `json:"-" xml:"-"` -} - -type metadataCreatePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1422,11 +1326,7 @@ type CurrentRevision struct { // The revision ID of the current version of an artifact. Revision *string `locationName:"revision" type:"string" required:"true"` - metadataCurrentRevision `json:"-" xml:"-"` -} - -type metadataCurrentRevision struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1452,11 +1352,7 @@ type DeleteCustomActionTypeInput struct { // The version of the custom action to delete. Version *string `locationName:"version" min:"1" type:"string" required:"true"` - metadataDeleteCustomActionTypeInput `json:"-" xml:"-"` -} - -type metadataDeleteCustomActionTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1470,11 +1366,7 @@ func (s DeleteCustomActionTypeInput) GoString() string { } type DeleteCustomActionTypeOutput struct { - metadataDeleteCustomActionTypeOutput `json:"-" xml:"-"` -} - -type metadataDeleteCustomActionTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1492,11 +1384,7 @@ type DeletePipelineInput struct { // The name of the pipeline to be deleted. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataDeletePipelineInput `json:"-" xml:"-"` -} - -type metadataDeletePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1510,11 +1398,7 @@ func (s DeletePipelineInput) GoString() string { } type DeletePipelineOutput struct { - metadataDeletePipelineOutput `json:"-" xml:"-"` -} - -type metadataDeletePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1548,11 +1432,7 @@ type DisableStageTransitionInput struct { // in that stage (outbound). TransitionType *string `locationName:"transitionType" type:"string" required:"true" enum:"StageTransitionType"` - metadataDisableStageTransitionInput `json:"-" xml:"-"` -} - -type metadataDisableStageTransitionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1566,11 +1446,7 @@ func (s DisableStageTransitionInput) GoString() string { } type DisableStageTransitionOutput struct { - metadataDisableStageTransitionOutput `json:"-" xml:"-"` -} - -type metadataDisableStageTransitionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1598,11 +1474,7 @@ type EnableStageTransitionInput struct { // will be allowed to transition to the next stage (outbound). TransitionType *string `locationName:"transitionType" type:"string" required:"true" enum:"StageTransitionType"` - metadataEnableStageTransitionInput `json:"-" xml:"-"` -} - -type metadataEnableStageTransitionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1616,11 +1488,7 @@ func (s EnableStageTransitionInput) GoString() string { } type EnableStageTransitionOutput struct { - metadataEnableStageTransitionOutput `json:"-" xml:"-"` -} - -type metadataEnableStageTransitionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1642,11 +1510,7 @@ type EncryptionKey struct { // The type of AWS KMS key, such as a customer master key. Type *string `locationName:"type" type:"string" required:"true" enum:"EncryptionKeyType"` - metadataEncryptionKey `json:"-" xml:"-"` -} - -type metadataEncryptionKey struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1667,11 +1531,7 @@ type ErrorDetails struct { // The text of the error message. Message *string `locationName:"message" type:"string"` - metadataErrorDetails `json:"-" xml:"-"` -} - -type metadataErrorDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1698,11 +1558,7 @@ type ExecutionDetails struct { // The summary of the current status of the actions. Summary *string `locationName:"summary" type:"string"` - metadataExecutionDetails `json:"-" xml:"-"` -} - -type metadataExecutionDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1726,11 +1582,7 @@ type FailureDetails struct { // The type of the failure. Type *string `locationName:"type" type:"string" required:"true" enum:"FailureType"` - metadataFailureDetails `json:"-" xml:"-"` -} - -type metadataFailureDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1748,11 +1600,7 @@ type GetJobDetailsInput struct { // The unique system-generated ID for the job. JobId *string `locationName:"jobId" type:"string" required:"true"` - metadataGetJobDetailsInput `json:"-" xml:"-"` -} - -type metadataGetJobDetailsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1773,11 +1621,7 @@ type GetJobDetailsOutput struct { // again to obtain new credentials. JobDetails *JobDetails `locationName:"jobDetails" type:"structure"` - metadataGetJobDetailsOutput `json:"-" xml:"-"` -} - -type metadataGetJobDetailsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1800,11 +1644,7 @@ type GetPipelineInput struct { // to the most current version. Version *int64 `locationName:"version" min:"1" type:"integer"` - metadataGetPipelineInput `json:"-" xml:"-"` -} - -type metadataGetPipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1822,11 +1662,7 @@ type GetPipelineOutput struct { // Represents the structure of actions and stages to be performed in the pipeline. Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"` - metadataGetPipelineOutput `json:"-" xml:"-"` -} - -type metadataGetPipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1844,11 +1680,7 @@ type GetPipelineStateInput struct { // The name of the pipeline about which you want to get information. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataGetPipelineStateInput `json:"-" xml:"-"` -} - -type metadataGetPipelineStateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1881,11 +1713,7 @@ type GetPipelineStateOutput struct { // The date and time the pipeline was last updated, in timestamp format. Updated *time.Time `locationName:"updated" type:"timestamp" timestampFormat:"unix"` - metadataGetPipelineStateOutput `json:"-" xml:"-"` -} - -type metadataGetPipelineStateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1907,11 +1735,7 @@ type GetThirdPartyJobDetailsInput struct { // The unique system-generated ID used for identifying the job. JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"` - metadataGetThirdPartyJobDetailsInput `json:"-" xml:"-"` -} - -type metadataGetThirdPartyJobDetailsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1929,11 +1753,7 @@ type GetThirdPartyJobDetailsOutput struct { // The details of the job, including any protected values defined for the job. JobDetails *ThirdPartyJobDetails `locationName:"jobDetails" type:"structure"` - metadataGetThirdPartyJobDetailsOutput `json:"-" xml:"-"` -} - -type metadataGetThirdPartyJobDetailsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1958,11 +1778,7 @@ type InputArtifact struct { // turn consumed by different following actions. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataInputArtifact `json:"-" xml:"-"` -} - -type metadataInputArtifact struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1991,11 +1807,7 @@ type Job struct { // in the response. Nonce *string `locationName:"nonce" type:"string"` - metadataJob `json:"-" xml:"-"` -} - -type metadataJob struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2040,11 +1852,7 @@ type JobData struct { // Represents information about a pipeline to a job worker. PipelineContext *PipelineContext `locationName:"pipelineContext" type:"structure"` - metadataJobData `json:"-" xml:"-"` -} - -type metadataJobData struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2069,11 +1877,7 @@ type JobDetails struct { // The unique system-generated ID of the job. Id *string `locationName:"id" type:"string"` - metadataJobDetails `json:"-" xml:"-"` -} - -type metadataJobDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2095,11 +1899,7 @@ type ListActionTypesInput struct { // which can be used to return the next set of action types in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListActionTypesInput `json:"-" xml:"-"` -} - -type metadataListActionTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2122,11 +1922,7 @@ type ListActionTypesOutput struct { // to return the next set of action types in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListActionTypesOutput `json:"-" xml:"-"` -} - -type metadataListActionTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2145,11 +1941,7 @@ type ListPipelinesInput struct { // can be used to return the next set of pipelines in the list. NextToken *string `locationName:"nextToken" type:"string"` - metadataListPipelinesInput `json:"-" xml:"-"` -} - -type metadataListPipelinesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2172,11 +1964,7 @@ type ListPipelinesOutput struct { // The list of pipelines. Pipelines []*PipelineSummary `locationName:"pipelines" type:"list"` - metadataListPipelinesOutput `json:"-" xml:"-"` -} - -type metadataListPipelinesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2202,11 +1990,7 @@ type OutputArtifact struct { // Output artifact names must be unique within a pipeline. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataOutputArtifact `json:"-" xml:"-"` -} - -type metadataOutputArtifact struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2232,11 +2016,7 @@ type PipelineContext struct { // The stage of the pipeline. Stage *StageContext `locationName:"stage" type:"structure"` - metadataPipelineContext `json:"-" xml:"-"` -} - -type metadataPipelineContext struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2271,11 +2051,7 @@ type PipelineDeclaration struct { // of 1. This number is automatically incremented when a pipeline is updated. Version *int64 `locationName:"version" min:"1" type:"integer"` - metadataPipelineDeclaration `json:"-" xml:"-"` -} - -type metadataPipelineDeclaration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2302,11 +2078,7 @@ type PipelineSummary struct { // The version number of the pipeline. Version *int64 `locationName:"version" min:"1" type:"integer"` - metadataPipelineSummary `json:"-" xml:"-"` -} - -type metadataPipelineSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2333,11 +2105,7 @@ type PollForJobsInput struct { // Only jobs whose action configuration matches the mapped value will be returned. QueryParam map[string]*string `locationName:"queryParam" type:"map"` - metadataPollForJobsInput `json:"-" xml:"-"` -} - -type metadataPollForJobsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2355,11 +2123,7 @@ type PollForJobsOutput struct { // Information about the jobs to take action on. Jobs []*Job `locationName:"jobs" type:"list"` - metadataPollForJobsOutput `json:"-" xml:"-"` -} - -type metadataPollForJobsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2380,11 +2144,7 @@ type PollForThirdPartyJobsInput struct { // The maximum number of jobs to return in a poll for jobs call. MaxBatchSize *int64 `locationName:"maxBatchSize" min:"1" type:"integer"` - metadataPollForThirdPartyJobsInput `json:"-" xml:"-"` -} - -type metadataPollForThirdPartyJobsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2402,11 +2162,7 @@ type PollForThirdPartyJobsOutput struct { // Information about the jobs to take action on. Jobs []*ThirdPartyJob `locationName:"jobs" type:"list"` - metadataPollForThirdPartyJobsOutput `json:"-" xml:"-"` -} - -type metadataPollForThirdPartyJobsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2433,11 +2189,7 @@ type PutActionRevisionInput struct { // The name of the stage that contains the action that will act upon the revision. StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"` - metadataPutActionRevisionInput `json:"-" xml:"-"` -} - -type metadataPutActionRevisionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2458,11 +2210,7 @@ type PutActionRevisionOutput struct { // The ID of the current workflow state of the pipeline. PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"` - metadataPutActionRevisionOutput `json:"-" xml:"-"` -} - -type metadataPutActionRevisionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2484,11 +2232,7 @@ type PutJobFailureResultInput struct { // returned from PollForJobs. JobId *string `locationName:"jobId" type:"string" required:"true"` - metadataPutJobFailureResultInput `json:"-" xml:"-"` -} - -type metadataPutJobFailureResultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2502,11 +2246,7 @@ func (s PutJobFailureResultInput) GoString() string { } type PutJobFailureResultOutput struct { - metadataPutJobFailureResultOutput `json:"-" xml:"-"` -} - -type metadataPutJobFailureResultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2537,11 +2277,7 @@ type PutJobSuccessResultInput struct { // ID returned from PollForJobs. JobId *string `locationName:"jobId" type:"string" required:"true"` - metadataPutJobSuccessResultInput `json:"-" xml:"-"` -} - -type metadataPutJobSuccessResultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2555,11 +2291,7 @@ func (s PutJobSuccessResultInput) GoString() string { } type PutJobSuccessResultOutput struct { - metadataPutJobSuccessResultOutput `json:"-" xml:"-"` -} - -type metadataPutJobSuccessResultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2584,11 +2316,7 @@ type PutThirdPartyJobFailureResultInput struct { // The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs. JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"` - metadataPutThirdPartyJobFailureResultInput `json:"-" xml:"-"` -} - -type metadataPutThirdPartyJobFailureResultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2602,11 +2330,7 @@ func (s PutThirdPartyJobFailureResultInput) GoString() string { } type PutThirdPartyJobFailureResultOutput struct { - metadataPutThirdPartyJobFailureResultOutput `json:"-" xml:"-"` -} - -type metadataPutThirdPartyJobFailureResultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2640,11 +2364,7 @@ type PutThirdPartyJobSuccessResultInput struct { // from PollForThirdPartyJobs. JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"` - metadataPutThirdPartyJobSuccessResultInput `json:"-" xml:"-"` -} - -type metadataPutThirdPartyJobSuccessResultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2658,11 +2378,7 @@ func (s PutThirdPartyJobSuccessResultInput) GoString() string { } type PutThirdPartyJobSuccessResultOutput struct { - metadataPutThirdPartyJobSuccessResultOutput `json:"-" xml:"-"` -} - -type metadataPutThirdPartyJobSuccessResultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2684,11 +2400,7 @@ type S3ArtifactLocation struct { // the object in the bucket. ObjectKey *string `locationName:"objectKey" type:"string" required:"true"` - metadataS3ArtifactLocation `json:"-" xml:"-"` -} - -type metadataS3ArtifactLocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2706,11 +2418,7 @@ type StageContext struct { // The name of the stage. Name *string `locationName:"name" min:"1" type:"string"` - metadataStageContext `json:"-" xml:"-"` -} - -type metadataStageContext struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2734,11 +2442,7 @@ type StageDeclaration struct { // The name of the stage. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataStageDeclaration `json:"-" xml:"-"` -} - -type metadataStageDeclaration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2762,11 +2466,7 @@ type StageState struct { // The name of the stage. StageName *string `locationName:"stageName" min:"1" type:"string"` - metadataStageState `json:"-" xml:"-"` -} - -type metadataStageState struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2784,11 +2484,7 @@ type StartPipelineExecutionInput struct { // The name of the pipeline to start. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataStartPipelineExecutionInput `json:"-" xml:"-"` -} - -type metadataStartPipelineExecutionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2806,11 +2502,7 @@ type StartPipelineExecutionOutput struct { // The unique system-generated ID of the pipeline that was started. PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"` - metadataStartPipelineExecutionOutput `json:"-" xml:"-"` -} - -type metadataStartPipelineExecutionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2833,11 +2525,7 @@ type ThirdPartyJob struct { // The identifier used to identify the job in AWS CodePipeline. JobId *string `locationName:"jobId" type:"string"` - metadataThirdPartyJob `json:"-" xml:"-"` -} - -type metadataThirdPartyJob struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2887,11 +2575,7 @@ type ThirdPartyJobData struct { // Represents information about a pipeline to a job worker. PipelineContext *PipelineContext `locationName:"pipelineContext" type:"structure"` - metadataThirdPartyJobData `json:"-" xml:"-"` -} - -type metadataThirdPartyJobData struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2917,11 +2601,7 @@ type ThirdPartyJobDetails struct { // in the response. Nonce *string `locationName:"nonce" type:"string"` - metadataThirdPartyJobDetails `json:"-" xml:"-"` -} - -type metadataThirdPartyJobDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2950,11 +2630,7 @@ type TransitionState struct { // The ID of the user who last changed the transition state. LastChangedBy *string `locationName:"lastChangedBy" type:"string"` - metadataTransitionState `json:"-" xml:"-"` -} - -type metadataTransitionState struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2972,11 +2648,7 @@ type UpdatePipelineInput struct { // The name of the pipeline to be updated. Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure" required:"true"` - metadataUpdatePipelineInput `json:"-" xml:"-"` -} - -type metadataUpdatePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2994,11 +2666,7 @@ type UpdatePipelineOutput struct { // The structure of the updated pipeline. Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"` - metadataUpdatePipelineOutput `json:"-" xml:"-"` -} - -type metadataUpdatePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cognitoidentity/api.go b/service/cognitoidentity/api.go index 65d3e037205..fed5be7c85a 100644 --- a/service/cognitoidentity/api.go +++ b/service/cognitoidentity/api.go @@ -601,11 +601,7 @@ type CreateIdentityPoolInput struct { // Optional key:value pairs mapping provider names to provider app IDs. SupportedLoginProviders map[string]*string `type:"map"` - metadataCreateIdentityPoolInput `json:"-" xml:"-"` -} - -type metadataCreateIdentityPoolInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -632,11 +628,7 @@ type Credentials struct { // The Session Token portion of the credentials SessionToken *string `type:"string"` - metadataCredentials `json:"-" xml:"-"` -} - -type metadataCredentials struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -654,11 +646,7 @@ type DeleteIdentitiesInput struct { // A list of 1-60 identities that you want to delete. IdentityIdsToDelete []*string `min:"1" type:"list" required:"true"` - metadataDeleteIdentitiesInput `json:"-" xml:"-"` -} - -type metadataDeleteIdentitiesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -677,11 +665,7 @@ type DeleteIdentitiesOutput struct { // and IdentityId. UnprocessedIdentityIds []*UnprocessedIdentityId `type:"list"` - metadataDeleteIdentitiesOutput `json:"-" xml:"-"` -} - -type metadataDeleteIdentitiesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -699,11 +683,7 @@ type DeleteIdentityPoolInput struct { // An identity pool ID in the format REGION:GUID. IdentityPoolId *string `min:"1" type:"string" required:"true"` - metadataDeleteIdentityPoolInput `json:"-" xml:"-"` -} - -type metadataDeleteIdentityPoolInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -717,11 +697,7 @@ func (s DeleteIdentityPoolInput) GoString() string { } type DeleteIdentityPoolOutput struct { - metadataDeleteIdentityPoolOutput `json:"-" xml:"-"` -} - -type metadataDeleteIdentityPoolOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -739,11 +715,7 @@ type DescribeIdentityInput struct { // A unique identifier in the format REGION:GUID. IdentityId *string `min:"1" type:"string" required:"true"` - metadataDescribeIdentityInput `json:"-" xml:"-"` -} - -type metadataDescribeIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -761,11 +733,7 @@ type DescribeIdentityPoolInput struct { // An identity pool ID in the format REGION:GUID. IdentityPoolId *string `min:"1" type:"string" required:"true"` - metadataDescribeIdentityPoolInput `json:"-" xml:"-"` -} - -type metadataDescribeIdentityPoolInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -786,11 +754,7 @@ type GetCredentialsForIdentityInput struct { // A set of optional name-value pairs that map provider names to provider tokens. Logins map[string]*string `type:"map"` - metadataGetCredentialsForIdentityInput `json:"-" xml:"-"` -} - -type metadataGetCredentialsForIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -811,11 +775,7 @@ type GetCredentialsForIdentityOutput struct { // A unique identifier in the format REGION:GUID. IdentityId *string `min:"1" type:"string"` - metadataGetCredentialsForIdentityOutput `json:"-" xml:"-"` -} - -type metadataGetCredentialsForIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -843,11 +803,7 @@ type GetIdInput struct { // Digits: www.digits.com Logins map[string]*string `type:"map"` - metadataGetIdInput `json:"-" xml:"-"` -} - -type metadataGetIdInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -865,11 +821,7 @@ type GetIdOutput struct { // A unique identifier in the format REGION:GUID. IdentityId *string `min:"1" type:"string"` - metadataGetIdOutput `json:"-" xml:"-"` -} - -type metadataGetIdOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -887,11 +839,7 @@ type GetIdentityPoolRolesInput struct { // An identity pool ID in the format REGION:GUID. IdentityPoolId *string `min:"1" type:"string" required:"true"` - metadataGetIdentityPoolRolesInput `json:"-" xml:"-"` -} - -type metadataGetIdentityPoolRolesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -913,11 +861,7 @@ type GetIdentityPoolRolesOutput struct { // and unauthenticated roles are supported. Roles map[string]*string `type:"map"` - metadataGetIdentityPoolRolesOutput `json:"-" xml:"-"` -} - -type metadataGetIdentityPoolRolesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -959,11 +903,7 @@ type GetOpenIdTokenForDeveloperIdentityInput struct { // AWS resources for the token's duration. TokenDuration *int64 `min:"1" type:"long"` - metadataGetOpenIdTokenForDeveloperIdentityInput `json:"-" xml:"-"` -} - -type metadataGetOpenIdTokenForDeveloperIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -984,11 +924,7 @@ type GetOpenIdTokenForDeveloperIdentityOutput struct { // An OpenID token. Token *string `type:"string"` - metadataGetOpenIdTokenForDeveloperIdentityOutput `json:"-" xml:"-"` -} - -type metadataGetOpenIdTokenForDeveloperIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1012,11 +948,7 @@ type GetOpenIdTokenInput struct { // OpenId Connect provider, always include the id_token. Logins map[string]*string `type:"map"` - metadataGetOpenIdTokenInput `json:"-" xml:"-"` -} - -type metadataGetOpenIdTokenInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1038,11 +970,7 @@ type GetOpenIdTokenOutput struct { // An OpenID token, valid for 15 minutes. Token *string `type:"string"` - metadataGetOpenIdTokenOutput `json:"-" xml:"-"` -} - -type metadataGetOpenIdTokenOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1069,11 +997,7 @@ type IdentityDescription struct { // A set of optional name-value pairs that map provider names to provider tokens. Logins []*string `type:"list"` - metadataIdentityDescription `json:"-" xml:"-"` -} - -type metadataIdentityDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1106,11 +1030,7 @@ type IdentityPool struct { // Optional key:value pairs mapping provider names to provider app IDs. SupportedLoginProviders map[string]*string `type:"map"` - metadataIdentityPool `json:"-" xml:"-"` -} - -type metadataIdentityPool struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1131,11 +1051,7 @@ type IdentityPoolShortDescription struct { // A string that you provide. IdentityPoolName *string `min:"1" type:"string"` - metadataIdentityPoolShortDescription `json:"-" xml:"-"` -} - -type metadataIdentityPoolShortDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1164,11 +1080,7 @@ type ListIdentitiesInput struct { // A pagination token. NextToken *string `min:"1" type:"string"` - metadataListIdentitiesInput `json:"-" xml:"-"` -} - -type metadataListIdentitiesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1192,11 +1104,7 @@ type ListIdentitiesOutput struct { // A pagination token. NextToken *string `min:"1" type:"string"` - metadataListIdentitiesOutput `json:"-" xml:"-"` -} - -type metadataListIdentitiesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1217,11 +1125,7 @@ type ListIdentityPoolsInput struct { // A pagination token. NextToken *string `min:"1" type:"string"` - metadataListIdentityPoolsInput `json:"-" xml:"-"` -} - -type metadataListIdentityPoolsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1242,11 +1146,7 @@ type ListIdentityPoolsOutput struct { // A pagination token. NextToken *string `min:"1" type:"string"` - metadataListIdentityPoolsOutput `json:"-" xml:"-"` -} - -type metadataListIdentityPoolsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1283,11 +1183,7 @@ type LookupDeveloperIdentityInput struct { // results starting from the 11th match. NextToken *string `min:"1" type:"string"` - metadataLookupDeveloperIdentityInput `json:"-" xml:"-"` -} - -type metadataLookupDeveloperIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1318,11 +1214,7 @@ type LookupDeveloperIdentityOutput struct { // results starting from the 11th match. NextToken *string `min:"1" type:"string"` - metadataLookupDeveloperIdentityOutput `json:"-" xml:"-"` -} - -type metadataLookupDeveloperIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1353,11 +1245,7 @@ type MergeDeveloperIdentitiesInput struct { // User identifier for the source user. The value should be a DeveloperUserIdentifier. SourceUserIdentifier *string `min:"1" type:"string" required:"true"` - metadataMergeDeveloperIdentitiesInput `json:"-" xml:"-"` -} - -type metadataMergeDeveloperIdentitiesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1375,11 +1263,7 @@ type MergeDeveloperIdentitiesOutput struct { // A unique identifier in the format REGION:GUID. IdentityId *string `min:"1" type:"string"` - metadataMergeDeveloperIdentitiesOutput `json:"-" xml:"-"` -} - -type metadataMergeDeveloperIdentitiesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1402,11 +1286,7 @@ type SetIdentityPoolRolesInput struct { // Role ARN. Roles map[string]*string `type:"map" required:"true"` - metadataSetIdentityPoolRolesInput `json:"-" xml:"-"` -} - -type metadataSetIdentityPoolRolesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1420,11 +1300,7 @@ func (s SetIdentityPoolRolesInput) GoString() string { } type SetIdentityPoolRolesOutput struct { - metadataSetIdentityPoolRolesOutput `json:"-" xml:"-"` -} - -type metadataSetIdentityPoolRolesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1451,11 +1327,7 @@ type UnlinkDeveloperIdentityInput struct { // An identity pool ID in the format REGION:GUID. IdentityPoolId *string `min:"1" type:"string" required:"true"` - metadataUnlinkDeveloperIdentityInput `json:"-" xml:"-"` -} - -type metadataUnlinkDeveloperIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1469,11 +1341,7 @@ func (s UnlinkDeveloperIdentityInput) GoString() string { } type UnlinkDeveloperIdentityOutput struct { - metadataUnlinkDeveloperIdentityOutput `json:"-" xml:"-"` -} - -type metadataUnlinkDeveloperIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1497,11 +1365,7 @@ type UnlinkIdentityInput struct { // Provider names to unlink from this identity. LoginsToRemove []*string `type:"list" required:"true"` - metadataUnlinkIdentityInput `json:"-" xml:"-"` -} - -type metadataUnlinkIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1515,11 +1379,7 @@ func (s UnlinkIdentityInput) GoString() string { } type UnlinkIdentityOutput struct { - metadataUnlinkIdentityOutput `json:"-" xml:"-"` -} - -type metadataUnlinkIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1541,11 +1401,7 @@ type UnprocessedIdentityId struct { // A unique identifier in the format REGION:GUID. IdentityId *string `min:"1" type:"string"` - metadataUnprocessedIdentityId `json:"-" xml:"-"` -} - -type metadataUnprocessedIdentityId struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/cognitosync/api.go b/service/cognitosync/api.go index effbcb50bd3..9ac43169883 100644 --- a/service/cognitosync/api.go +++ b/service/cognitosync/api.go @@ -563,11 +563,7 @@ type BulkPublishInput struct { // created by Amazon Cognito. GUID generation is unique within a region. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataBulkPublishInput `json:"-" xml:"-"` -} - -type metadataBulkPublishInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -586,11 +582,7 @@ type BulkPublishOutput struct { // created by Amazon Cognito. GUID generation is unique within a region. IdentityPoolId *string `min:"1" type:"string"` - metadataBulkPublishOutput `json:"-" xml:"-"` -} - -type metadataBulkPublishOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -621,11 +613,7 @@ type CognitoStreams struct { // will also fail if StreamingStatus is DISABLED. StreamingStatus *string `type:"string" enum:"StreamingStatus"` - metadataCognitoStreams `json:"-" xml:"-"` -} - -type metadataCognitoStreams struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -667,11 +655,7 @@ type Dataset struct { // Number of records in this dataset. NumRecords *int64 `type:"long"` - metadataDataset `json:"-" xml:"-"` -} - -type metadataDataset struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -698,11 +682,7 @@ type DeleteDatasetInput struct { // created by Amazon Cognito. GUID generation is unique within a region. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataDeleteDatasetInput `json:"-" xml:"-"` -} - -type metadataDeleteDatasetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -724,11 +704,7 @@ type DeleteDatasetOutput struct { // hold up to 1MB of key-value pairs. Dataset *Dataset `type:"structure"` - metadataDeleteDatasetOutput `json:"-" xml:"-"` -} - -type metadataDeleteDatasetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -756,11 +732,7 @@ type DescribeDatasetInput struct { // created by Amazon Cognito. GUID generation is unique within a region. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataDescribeDatasetInput `json:"-" xml:"-"` -} - -type metadataDescribeDatasetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -782,11 +754,7 @@ type DescribeDatasetOutput struct { // hold up to 1MB of key-value pairs. Dataset *Dataset `type:"structure"` - metadataDescribeDatasetOutput `json:"-" xml:"-"` -} - -type metadataDescribeDatasetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -805,11 +773,7 @@ type DescribeIdentityPoolUsageInput struct { // created by Amazon Cognito. GUID generation is unique within a region. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataDescribeIdentityPoolUsageInput `json:"-" xml:"-"` -} - -type metadataDescribeIdentityPoolUsageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -827,11 +791,7 @@ type DescribeIdentityPoolUsageOutput struct { // Information about the usage of the identity pool. IdentityPoolUsage *IdentityPoolUsage `type:"structure"` - metadataDescribeIdentityPoolUsageOutput `json:"-" xml:"-"` -} - -type metadataDescribeIdentityPoolUsageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -854,11 +814,7 @@ type DescribeIdentityUsageInput struct { // created by Amazon Cognito. GUID generation is unique within a region. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataDescribeIdentityUsageInput `json:"-" xml:"-"` -} - -type metadataDescribeIdentityUsageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -876,11 +832,7 @@ type DescribeIdentityUsageOutput struct { // Usage information for the identity. IdentityUsage *IdentityUsage `type:"structure"` - metadataDescribeIdentityUsageOutput `json:"-" xml:"-"` -} - -type metadataDescribeIdentityUsageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -899,11 +851,7 @@ type GetBulkPublishDetailsInput struct { // created by Amazon Cognito. GUID generation is unique within a region. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataGetBulkPublishDetailsInput `json:"-" xml:"-"` -} - -type metadataGetBulkPublishDetailsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -945,11 +893,7 @@ type GetBulkPublishDetailsOutput struct { // created by Amazon Cognito. GUID generation is unique within a region. IdentityPoolId *string `min:"1" type:"string"` - metadataGetBulkPublishDetailsOutput `json:"-" xml:"-"` -} - -type metadataGetBulkPublishDetailsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -967,11 +911,7 @@ type GetCognitoEventsInput struct { // The Cognito Identity Pool ID for the request IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataGetCognitoEventsInput `json:"-" xml:"-"` -} - -type metadataGetCognitoEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -989,11 +929,7 @@ type GetCognitoEventsOutput struct { // The Cognito Events returned from the GetCognitoEvents request Events map[string]*string `type:"map"` - metadataGetCognitoEventsOutput `json:"-" xml:"-"` -} - -type metadataGetCognitoEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1013,11 +949,7 @@ type GetIdentityPoolConfigurationInput struct { // a configuration. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataGetIdentityPoolConfigurationInput `json:"-" xml:"-"` -} - -type metadataGetIdentityPoolConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1042,11 +974,7 @@ type GetIdentityPoolConfigurationOutput struct { // Options to apply to this identity pool for push synchronization. PushSync *PushSync `type:"structure"` - metadataGetIdentityPoolConfigurationOutput `json:"-" xml:"-"` -} - -type metadataGetIdentityPoolConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1074,11 +1002,7 @@ type IdentityPoolUsage struct { // Number of sync sessions for the identity pool. SyncSessionsCount *int64 `type:"long"` - metadataIdentityPoolUsage `json:"-" xml:"-"` -} - -type metadataIdentityPoolUsage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1110,11 +1034,7 @@ type IdentityUsage struct { // Date on which the identity was last modified. LastModifiedDate *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataIdentityUsage `json:"-" xml:"-"` -} - -type metadataIdentityUsage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1143,11 +1063,7 @@ type ListDatasetsInput struct { // A pagination token for obtaining the next page of results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` - metadataListDatasetsInput `json:"-" xml:"-"` -} - -type metadataListDatasetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1171,11 +1087,7 @@ type ListDatasetsOutput struct { // A pagination token for obtaining the next page of results. NextToken *string `type:"string"` - metadataListDatasetsOutput `json:"-" xml:"-"` -} - -type metadataListDatasetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1196,11 +1108,7 @@ type ListIdentityPoolUsageInput struct { // A pagination token for obtaining the next page of results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` - metadataListIdentityPoolUsageInput `json:"-" xml:"-"` -} - -type metadataListIdentityPoolUsageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1227,11 +1135,7 @@ type ListIdentityPoolUsageOutput struct { // A pagination token for obtaining the next page of results. NextToken *string `type:"string"` - metadataListIdentityPoolUsageOutput `json:"-" xml:"-"` -} - -type metadataListIdentityPoolUsageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1270,11 +1174,7 @@ type ListRecordsInput struct { // A token containing a session ID, identity ID, and expiration. SyncSessionToken *string `location:"querystring" locationName:"syncSessionToken" type:"string"` - metadataListRecordsInput `json:"-" xml:"-"` -} - -type metadataListRecordsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1316,11 +1216,7 @@ type ListRecordsOutput struct { // A token containing a session ID, identity ID, and expiration. SyncSessionToken *string `type:"string"` - metadataListRecordsOutput `json:"-" xml:"-"` -} - -type metadataListRecordsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1341,11 +1237,7 @@ type PushSync struct { // A role configured to allow Cognito to call SNS on behalf of the developer. RoleArn *string `min:"20" type:"string"` - metadataPushSync `json:"-" xml:"-"` -} - -type metadataPushSync struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1378,11 +1270,7 @@ type Record struct { // The value for the record. Value *string `type:"string"` - metadataRecord `json:"-" xml:"-"` -} - -type metadataRecord struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1412,11 +1300,7 @@ type RecordPatch struct { // The value associated with the record patch. Value *string `type:"string"` - metadataRecordPatch `json:"-" xml:"-"` -} - -type metadataRecordPatch struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1445,11 +1329,7 @@ type RegisterDeviceInput struct { // The push token. Token *string `type:"string" required:"true"` - metadataRegisterDeviceInput `json:"-" xml:"-"` -} - -type metadataRegisterDeviceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1467,11 +1347,7 @@ type RegisterDeviceOutput struct { // The unique ID generated for this device by Cognito. DeviceId *string `min:"1" type:"string"` - metadataRegisterDeviceOutput `json:"-" xml:"-"` -} - -type metadataRegisterDeviceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1494,11 +1370,7 @@ type SetCognitoEventsInput struct { // The Cognito Identity Pool to use when configuring Cognito Events IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataSetCognitoEventsInput `json:"-" xml:"-"` -} - -type metadataSetCognitoEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1512,11 +1384,7 @@ func (s SetCognitoEventsInput) GoString() string { } type SetCognitoEventsOutput struct { - metadataSetCognitoEventsOutput `json:"-" xml:"-"` -} - -type metadataSetCognitoEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1541,11 +1409,7 @@ type SetIdentityPoolConfigurationInput struct { // Options to apply to this identity pool for push synchronization. PushSync *PushSync `type:"structure"` - metadataSetIdentityPoolConfigurationInput `json:"-" xml:"-"` -} - -type metadataSetIdentityPoolConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1570,11 +1434,7 @@ type SetIdentityPoolConfigurationOutput struct { // Options to apply to this identity pool for push synchronization. PushSync *PushSync `type:"structure"` - metadataSetIdentityPoolConfigurationOutput `json:"-" xml:"-"` -} - -type metadataSetIdentityPoolConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1602,11 +1462,7 @@ type SubscribeToDatasetInput struct { // created by Amazon Cognito. The ID of the pool to which the identity belongs. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataSubscribeToDatasetInput `json:"-" xml:"-"` -} - -type metadataSubscribeToDatasetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1621,11 +1477,7 @@ func (s SubscribeToDatasetInput) GoString() string { // Response to a SubscribeToDataset request. type SubscribeToDatasetOutput struct { - metadataSubscribeToDatasetOutput `json:"-" xml:"-"` -} - -type metadataSubscribeToDatasetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1653,11 +1505,7 @@ type UnsubscribeFromDatasetInput struct { // created by Amazon Cognito. The ID of the pool to which this identity belongs. IdentityPoolId *string `location:"uri" locationName:"IdentityPoolId" min:"1" type:"string" required:"true"` - metadataUnsubscribeFromDatasetInput `json:"-" xml:"-"` -} - -type metadataUnsubscribeFromDatasetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1672,11 +1520,7 @@ func (s UnsubscribeFromDatasetInput) GoString() string { // Response to an UnsubscribeFromDataset request. type UnsubscribeFromDatasetOutput struct { - metadataUnsubscribeFromDatasetOutput `json:"-" xml:"-"` -} - -type metadataUnsubscribeFromDatasetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1718,11 +1562,7 @@ type UpdateRecordsInput struct { // dataset and identity. SyncSessionToken *string `type:"string" required:"true"` - metadataUpdateRecordsInput `json:"-" xml:"-"` -} - -type metadataUpdateRecordsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1740,11 +1580,7 @@ type UpdateRecordsOutput struct { // A list of records that have been updated. Records []*Record `type:"list"` - metadataUpdateRecordsOutput `json:"-" xml:"-"` -} - -type metadataUpdateRecordsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/configservice/api.go b/service/configservice/api.go index a779f183bb9..32d9b0f6c67 100644 --- a/service/configservice/api.go +++ b/service/configservice/api.go @@ -822,11 +822,7 @@ type Compliance struct { // with it, and it is noncompliant if any of these resources do not comply. ComplianceType *string `type:"string" enum:"ComplianceType"` - metadataCompliance `json:"-" xml:"-"` -} - -type metadataCompliance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -849,11 +845,7 @@ type ComplianceByConfigRule struct { // The name of the AWS Config rule. ConfigRuleName *string `min:"1" type:"string"` - metadataComplianceByConfigRule `json:"-" xml:"-"` -} - -type metadataComplianceByConfigRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -881,11 +873,7 @@ type ComplianceByResource struct { // The type of the AWS resource that was evaluated. ResourceType *string `min:"1" type:"string"` - metadataComplianceByResource `json:"-" xml:"-"` -} - -type metadataComplianceByResource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -908,11 +896,7 @@ type ComplianceContributorCount struct { // compliance of the item. CappedCount *int64 `type:"integer"` - metadataComplianceContributorCount `json:"-" xml:"-"` -} - -type metadataComplianceContributorCount struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -939,11 +923,7 @@ type ComplianceSummary struct { // to a maximum of 25 for rules and 100 for resources. NonCompliantResourceCount *ComplianceContributorCount `type:"structure"` - metadataComplianceSummary `json:"-" xml:"-"` -} - -type metadataComplianceSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -966,11 +946,7 @@ type ComplianceSummaryByResourceType struct { // The type of AWS resource. ResourceType *string `min:"1" type:"string"` - metadataComplianceSummaryByResourceType `json:"-" xml:"-"` -} - -type metadataComplianceSummaryByResourceType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1004,11 +980,7 @@ type ConfigExportDeliveryInfo struct { // The time that the next delivery occurs. NextDeliveryTime *time.Time `locationName:"nextDeliveryTime" type:"timestamp" timestampFormat:"unix"` - metadataConfigExportDeliveryInfo `json:"-" xml:"-"` -} - -type metadataConfigExportDeliveryInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1081,11 +1053,7 @@ type ConfigRule struct { // that cause the function to evaluate your AWS resources. Source *Source `type:"structure" required:"true"` - metadataConfigRule `json:"-" xml:"-"` -} - -type metadataConfigRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1131,11 +1099,7 @@ type ConfigRuleEvaluationStatus struct { // evaluate your AWS resources. LastSuccessfulInvocationTime *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataConfigRuleEvaluationStatus `json:"-" xml:"-"` -} - -type metadataConfigRuleEvaluationStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1155,11 +1119,7 @@ type ConfigSnapshotDeliveryProperties struct { // snapshots. DeliveryFrequency *string `locationName:"deliveryFrequency" type:"string" enum:"MaximumExecutionFrequency"` - metadataConfigSnapshotDeliveryProperties `json:"-" xml:"-"` -} - -type metadataConfigSnapshotDeliveryProperties struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1191,11 +1151,7 @@ type ConfigStreamDeliveryInfo struct { // The time from the last status change. LastStatusChangeTime *time.Time `locationName:"lastStatusChangeTime" type:"timestamp" timestampFormat:"unix"` - metadataConfigStreamDeliveryInfo `json:"-" xml:"-"` -} - -type metadataConfigStreamDeliveryInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1275,11 +1231,7 @@ type ConfigurationItem struct { // The version number of the resource configuration. Version *string `locationName:"version" type:"string"` - metadataConfigurationItem `json:"-" xml:"-"` -} - -type metadataConfigurationItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1309,11 +1261,7 @@ type ConfigurationRecorder struct { // associated with the account. RoleARN *string `locationName:"roleARN" type:"string"` - metadataConfigurationRecorder `json:"-" xml:"-"` -} - -type metadataConfigurationRecorder struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1352,11 +1300,7 @@ type ConfigurationRecorderStatus struct { // Specifies whether the recorder is currently recording or not. Recording *bool `locationName:"recording" type:"boolean"` - metadataConfigurationRecorderStatus `json:"-" xml:"-"` -} - -type metadataConfigurationRecorderStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1373,11 +1317,7 @@ type DeleteConfigRuleInput struct { // The name of the AWS Config rule that you want to delete. ConfigRuleName *string `min:"1" type:"string" required:"true"` - metadataDeleteConfigRuleInput `json:"-" xml:"-"` -} - -type metadataDeleteConfigRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1391,11 +1331,7 @@ func (s DeleteConfigRuleInput) GoString() string { } type DeleteConfigRuleOutput struct { - metadataDeleteConfigRuleOutput `json:"-" xml:"-"` -} - -type metadataDeleteConfigRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1414,11 +1350,7 @@ type DeleteDeliveryChannelInput struct { // The name of the delivery channel to delete. DeliveryChannelName *string `min:"1" type:"string" required:"true"` - metadataDeleteDeliveryChannelInput `json:"-" xml:"-"` -} - -type metadataDeleteDeliveryChannelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1432,11 +1364,7 @@ func (s DeleteDeliveryChannelInput) GoString() string { } type DeleteDeliveryChannelOutput struct { - metadataDeleteDeliveryChannelOutput `json:"-" xml:"-"` -} - -type metadataDeleteDeliveryChannelOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1454,11 +1382,7 @@ type DeliverConfigSnapshotInput struct { // The name of the delivery channel through which the snapshot is delivered. DeliveryChannelName *string `locationName:"deliveryChannelName" min:"1" type:"string" required:"true"` - metadataDeliverConfigSnapshotInput `json:"-" xml:"-"` -} - -type metadataDeliverConfigSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1476,11 +1400,7 @@ type DeliverConfigSnapshotOutput struct { // The ID of the snapshot that is being created. ConfigSnapshotId *string `locationName:"configSnapshotId" type:"string"` - metadataDeliverConfigSnapshotOutput `json:"-" xml:"-"` -} - -type metadataDeliverConfigSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1516,11 +1436,7 @@ type DeliveryChannel struct { // notifications to. SnsTopicARN *string `locationName:"snsTopicARN" type:"string"` - metadataDeliveryChannel `json:"-" xml:"-"` -} - -type metadataDeliveryChannel struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1552,11 +1468,7 @@ type DeliveryChannelStatus struct { // The name of the delivery channel. Name *string `locationName:"name" type:"string"` - metadataDeliveryChannelStatus `json:"-" xml:"-"` -} - -type metadataDeliveryChannelStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1580,11 +1492,7 @@ type DescribeComplianceByConfigRuleInput struct { // next page of results in a paginated response. NextToken *string `type:"string"` - metadataDescribeComplianceByConfigRuleInput `json:"-" xml:"-"` -} - -type metadataDescribeComplianceByConfigRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1605,11 +1513,7 @@ type DescribeComplianceByConfigRuleOutput struct { // in a paginated response. NextToken *string `type:"string"` - metadataDescribeComplianceByConfigRuleOutput `json:"-" xml:"-"` -} - -type metadataDescribeComplianceByConfigRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1645,11 +1549,7 @@ type DescribeComplianceByResourceInput struct { // type is an AWS account by specifying AWS::::Account. ResourceType *string `min:"1" type:"string"` - metadataDescribeComplianceByResourceInput `json:"-" xml:"-"` -} - -type metadataDescribeComplianceByResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1671,11 +1571,7 @@ type DescribeComplianceByResourceOutput struct { // in a paginated response. NextToken *string `type:"string"` - metadataDescribeComplianceByResourceOutput `json:"-" xml:"-"` -} - -type metadataDescribeComplianceByResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1694,11 +1590,7 @@ type DescribeConfigRuleEvaluationStatusInput struct { // all AWS managed Config rules that you use. ConfigRuleNames []*string `type:"list"` - metadataDescribeConfigRuleEvaluationStatusInput `json:"-" xml:"-"` -} - -type metadataDescribeConfigRuleEvaluationStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1715,11 +1607,7 @@ type DescribeConfigRuleEvaluationStatusOutput struct { // Status information about your AWS managed Config rules. ConfigRulesEvaluationStatus []*ConfigRuleEvaluationStatus `type:"list"` - metadataDescribeConfigRuleEvaluationStatusOutput `json:"-" xml:"-"` -} - -type metadataDescribeConfigRuleEvaluationStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1741,11 +1629,7 @@ type DescribeConfigRulesInput struct { // next page of results in a paginated response. NextToken *string `type:"string"` - metadataDescribeConfigRulesInput `json:"-" xml:"-"` -} - -type metadataDescribeConfigRulesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1766,11 +1650,7 @@ type DescribeConfigRulesOutput struct { // in a paginated response. NextToken *string `type:"string"` - metadataDescribeConfigRulesOutput `json:"-" xml:"-"` -} - -type metadataDescribeConfigRulesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1790,11 +1670,7 @@ type DescribeConfigurationRecorderStatusInput struct { // associated with the account. ConfigurationRecorderNames []*string `type:"list"` - metadataDescribeConfigurationRecorderStatusInput `json:"-" xml:"-"` -} - -type metadataDescribeConfigurationRecorderStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1812,11 +1688,7 @@ type DescribeConfigurationRecorderStatusOutput struct { // A list that contains status of the specified recorders. ConfigurationRecordersStatus []*ConfigurationRecorderStatus `type:"list"` - metadataDescribeConfigurationRecorderStatusOutput `json:"-" xml:"-"` -} - -type metadataDescribeConfigurationRecorderStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1834,11 +1706,7 @@ type DescribeConfigurationRecordersInput struct { // A list of configuration recorder names. ConfigurationRecorderNames []*string `type:"list"` - metadataDescribeConfigurationRecordersInput `json:"-" xml:"-"` -} - -type metadataDescribeConfigurationRecordersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1856,11 +1724,7 @@ type DescribeConfigurationRecordersOutput struct { // A list that contains the descriptions of the specified configuration recorders. ConfigurationRecorders []*ConfigurationRecorder `type:"list"` - metadataDescribeConfigurationRecordersOutput `json:"-" xml:"-"` -} - -type metadataDescribeConfigurationRecordersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1878,11 +1742,7 @@ type DescribeDeliveryChannelStatusInput struct { // A list of delivery channel names. DeliveryChannelNames []*string `type:"list"` - metadataDescribeDeliveryChannelStatusInput `json:"-" xml:"-"` -} - -type metadataDescribeDeliveryChannelStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1900,11 +1760,7 @@ type DescribeDeliveryChannelStatusOutput struct { // A list that contains the status of a specified delivery channel. DeliveryChannelsStatus []*DeliveryChannelStatus `type:"list"` - metadataDescribeDeliveryChannelStatusOutput `json:"-" xml:"-"` -} - -type metadataDescribeDeliveryChannelStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1922,11 +1778,7 @@ type DescribeDeliveryChannelsInput struct { // A list of delivery channel names. DeliveryChannelNames []*string `type:"list"` - metadataDescribeDeliveryChannelsInput `json:"-" xml:"-"` -} - -type metadataDescribeDeliveryChannelsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1944,11 +1796,7 @@ type DescribeDeliveryChannelsOutput struct { // A list that contains the descriptions of the specified delivery channel. DeliveryChannels []*DeliveryChannel `type:"list"` - metadataDescribeDeliveryChannelsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDeliveryChannelsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1983,11 +1831,7 @@ type Evaluation struct { // when AWS Config delivered the configuration snapshot that triggered the evaluation. OrderingTimestamp *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"` - metadataEvaluation `json:"-" xml:"-"` -} - -type metadataEvaluation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2025,11 +1869,7 @@ type EvaluationResult struct { // event that triggered the evaluation. ResultToken *string `type:"string"` - metadataEvaluationResult `json:"-" xml:"-"` -} - -type metadataEvaluationResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2054,11 +1894,7 @@ type EvaluationResultIdentifier struct { // snapshot, depending on which event triggered the evaluation. OrderingTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataEvaluationResultIdentifier `json:"-" xml:"-"` -} - -type metadataEvaluationResultIdentifier struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2083,11 +1919,7 @@ type EvaluationResultQualifier struct { // The type of AWS resource that was evaluated. ResourceType *string `min:"1" type:"string"` - metadataEvaluationResultQualifier `json:"-" xml:"-"` -} - -type metadataEvaluationResultQualifier struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2117,11 +1949,7 @@ type GetComplianceDetailsByConfigRuleInput struct { // next page of results in a paginated response. NextToken *string `type:"string"` - metadataGetComplianceDetailsByConfigRuleInput `json:"-" xml:"-"` -} - -type metadataGetComplianceDetailsByConfigRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2143,11 +1971,7 @@ type GetComplianceDetailsByConfigRuleOutput struct { // in a paginated response. NextToken *string `type:"string"` - metadataGetComplianceDetailsByConfigRuleOutput `json:"-" xml:"-"` -} - -type metadataGetComplianceDetailsByConfigRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2175,11 +1999,7 @@ type GetComplianceDetailsByResourceInput struct { // The type of the AWS resource for which you want compliance information. ResourceType *string `min:"1" type:"string" required:"true"` - metadataGetComplianceDetailsByResourceInput `json:"-" xml:"-"` -} - -type metadataGetComplianceDetailsByResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2200,11 +2020,7 @@ type GetComplianceDetailsByResourceOutput struct { // in a paginated response. NextToken *string `type:"string"` - metadataGetComplianceDetailsByResourceOutput `json:"-" xml:"-"` -} - -type metadataGetComplianceDetailsByResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2218,11 +2034,7 @@ func (s GetComplianceDetailsByResourceOutput) GoString() string { } type GetComplianceSummaryByConfigRuleInput struct { - metadataGetComplianceSummaryByConfigRuleInput `json:"-" xml:"-"` -} - -type metadataGetComplianceSummaryByConfigRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2240,11 +2052,7 @@ type GetComplianceSummaryByConfigRuleOutput struct { // noncompliant, up to a maximum of 25 for each. ComplianceSummary *ComplianceSummary `type:"structure"` - metadataGetComplianceSummaryByConfigRuleOutput `json:"-" xml:"-"` -} - -type metadataGetComplianceSummaryByConfigRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2266,11 +2074,7 @@ type GetComplianceSummaryByResourceTypeInput struct { // AWS::::Account. ResourceTypes []*string `type:"list"` - metadataGetComplianceSummaryByResourceTypeInput `json:"-" xml:"-"` -} - -type metadataGetComplianceSummaryByResourceTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2289,11 +2093,7 @@ type GetComplianceSummaryByResourceTypeOutput struct { // are returned for each resource type. The maximum number returned is 100. ComplianceSummariesByResourceType []*ComplianceSummaryByResourceType `type:"list"` - metadataGetComplianceSummaryByResourceTypeOutput `json:"-" xml:"-"` -} - -type metadataGetComplianceSummaryByResourceTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2336,11 +2136,7 @@ type GetResourceConfigHistoryInput struct { // The resource type. ResourceType *string `locationName:"resourceType" type:"string" required:"true" enum:"ResourceType"` - metadataGetResourceConfigHistoryInput `json:"-" xml:"-"` -} - -type metadataGetResourceConfigHistoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2362,11 +2158,7 @@ type GetResourceConfigHistoryOutput struct { // in a paginated response. NextToken *string `locationName:"nextToken" type:"string"` - metadataGetResourceConfigHistoryOutput `json:"-" xml:"-"` -} - -type metadataGetResourceConfigHistoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2406,11 +2198,7 @@ type ListDiscoveredResourcesInput struct { // The type of resources that you want AWS Config to list in the response. ResourceType *string `locationName:"resourceType" type:"string" required:"true" enum:"ResourceType"` - metadataListDiscoveredResourcesInput `json:"-" xml:"-"` -} - -type metadataListDiscoveredResourcesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2432,11 +2220,7 @@ type ListDiscoveredResourcesOutput struct { // the resource type, ID, and (if available) the custom resource name. ResourceIdentifiers []*ResourceIdentifier `locationName:"resourceIdentifiers" type:"list"` - metadataListDiscoveredResourcesOutput `json:"-" xml:"-"` -} - -type metadataListDiscoveredResourcesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2461,11 +2245,7 @@ type PutConfigRuleInput struct { // in the AWS Config Developer Guide. ConfigRule *ConfigRule `type:"structure" required:"true"` - metadataPutConfigRuleInput `json:"-" xml:"-"` -} - -type metadataPutConfigRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2479,11 +2259,7 @@ func (s PutConfigRuleInput) GoString() string { } type PutConfigRuleOutput struct { - metadataPutConfigRuleOutput `json:"-" xml:"-"` -} - -type metadataPutConfigRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2502,11 +2278,7 @@ type PutConfigurationRecorderInput struct { // made to the resources. ConfigurationRecorder *ConfigurationRecorder `type:"structure" required:"true"` - metadataPutConfigurationRecorderInput `json:"-" xml:"-"` -} - -type metadataPutConfigurationRecorderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2520,11 +2292,7 @@ func (s PutConfigurationRecorderInput) GoString() string { } type PutConfigurationRecorderOutput struct { - metadataPutConfigurationRecorderOutput `json:"-" xml:"-"` -} - -type metadataPutConfigurationRecorderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2543,11 +2311,7 @@ type PutDeliveryChannelInput struct { // information to an Amazon S3 bucket, and to an Amazon SNS topic. DeliveryChannel *DeliveryChannel `type:"structure" required:"true"` - metadataPutDeliveryChannelInput `json:"-" xml:"-"` -} - -type metadataPutDeliveryChannelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2561,11 +2325,7 @@ func (s PutDeliveryChannelInput) GoString() string { } type PutDeliveryChannelOutput struct { - metadataPutDeliveryChannelOutput `json:"-" xml:"-"` -} - -type metadataPutDeliveryChannelOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2588,11 +2348,7 @@ type PutEvaluationsInput struct { // Identifies the rule and the event that triggered the evaluation ResultToken *string `type:"string" required:"true"` - metadataPutEvaluationsInput `json:"-" xml:"-"` -} - -type metadataPutEvaluationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2609,11 +2365,7 @@ type PutEvaluationsOutput struct { // Requests that failed because of a client or server error. FailedEvaluations []*Evaluation `type:"list"` - metadataPutEvaluationsOutput `json:"-" xml:"-"` -} - -type metadataPutEvaluationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2644,11 +2396,7 @@ type RecordingGroup struct { // topic: Supported AWS Resource Types (http://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources). ResourceTypes []*string `locationName:"resourceTypes" type:"list"` - metadataRecordingGroup `json:"-" xml:"-"` -} - -type metadataRecordingGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2675,11 +2423,7 @@ type Relationship struct { // The resource type of the related resource. ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"` - metadataRelationship `json:"-" xml:"-"` -} - -type metadataRelationship struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2707,11 +2451,7 @@ type ResourceIdentifier struct { // The type of resource. ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"` - metadataResourceIdentifier `json:"-" xml:"-"` -} - -type metadataResourceIdentifier struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2750,11 +2490,7 @@ type Scope struct { // also specify a value for TagKey. TagValue *string `min:"1" type:"string"` - metadataScope `json:"-" xml:"-"` -} - -type metadataScope struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2784,11 +2520,7 @@ type Source struct { // Name (ARN) of the rule's AWS Lambda function. SourceIdentifier *string `min:"1" type:"string"` - metadataSource `json:"-" xml:"-"` -} - -type metadataSource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2815,11 +2547,7 @@ type SourceDetail struct { // you must use ConfigurationSnapshotDeliveryCompleted. MessageType *string `type:"string" enum:"MessageType"` - metadataSourceDetail `json:"-" xml:"-"` -} - -type metadataSourceDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2838,11 +2566,7 @@ type StartConfigurationRecorderInput struct { // to the resources. ConfigurationRecorderName *string `min:"1" type:"string" required:"true"` - metadataStartConfigurationRecorderInput `json:"-" xml:"-"` -} - -type metadataStartConfigurationRecorderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2856,11 +2580,7 @@ func (s StartConfigurationRecorderInput) GoString() string { } type StartConfigurationRecorderOutput struct { - metadataStartConfigurationRecorderOutput `json:"-" xml:"-"` -} - -type metadataStartConfigurationRecorderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2879,11 +2599,7 @@ type StopConfigurationRecorderInput struct { // to the resources. ConfigurationRecorderName *string `min:"1" type:"string" required:"true"` - metadataStopConfigurationRecorderInput `json:"-" xml:"-"` -} - -type metadataStopConfigurationRecorderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2897,11 +2613,7 @@ func (s StopConfigurationRecorderInput) GoString() string { } type StopConfigurationRecorderOutput struct { - metadataStopConfigurationRecorderOutput `json:"-" xml:"-"` -} - -type metadataStopConfigurationRecorderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/datapipeline/api.go b/service/datapipeline/api.go index 9bcbbcb17d2..f2377959c66 100644 --- a/service/datapipeline/api.go +++ b/service/datapipeline/api.go @@ -660,11 +660,7 @@ type ActivatePipelineInput struct { // from the last completed execution. StartTimestamp *time.Time `locationName:"startTimestamp" type:"timestamp" timestampFormat:"unix"` - metadataActivatePipelineInput `json:"-" xml:"-"` -} - -type metadataActivatePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -679,11 +675,7 @@ func (s ActivatePipelineInput) GoString() string { // Contains the output of ActivatePipeline. type ActivatePipelineOutput struct { - metadataActivatePipelineOutput `json:"-" xml:"-"` -} - -type metadataActivatePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -704,11 +696,7 @@ type AddTagsInput struct { // The tags to add, as key/value pairs. Tags []*Tag `locationName:"tags" type:"list" required:"true"` - metadataAddTagsInput `json:"-" xml:"-"` -} - -type metadataAddTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -723,11 +711,7 @@ func (s AddTagsInput) GoString() string { // Contains the output of AddTags. type AddTagsOutput struct { - metadataAddTagsOutput `json:"-" xml:"-"` -} - -type metadataAddTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -769,11 +753,7 @@ type CreatePipelineInput struct { // the AWS account or IAM user credentials. UniqueId *string `locationName:"uniqueId" min:"1" type:"string" required:"true"` - metadataCreatePipelineInput `json:"-" xml:"-"` -} - -type metadataCreatePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -792,11 +772,7 @@ type CreatePipelineOutput struct { // df-06372391ZG65EXAMPLE. PipelineId *string `locationName:"pipelineId" min:"1" type:"string" required:"true"` - metadataCreatePipelineOutput `json:"-" xml:"-"` -} - -type metadataCreatePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -819,11 +795,7 @@ type DeactivatePipelineInput struct { // The ID of the pipeline. PipelineId *string `locationName:"pipelineId" min:"1" type:"string" required:"true"` - metadataDeactivatePipelineInput `json:"-" xml:"-"` -} - -type metadataDeactivatePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -838,11 +810,7 @@ func (s DeactivatePipelineInput) GoString() string { // Contains the output of DeactivatePipeline. type DeactivatePipelineOutput struct { - metadataDeactivatePipelineOutput `json:"-" xml:"-"` -} - -type metadataDeactivatePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -860,11 +828,7 @@ type DeletePipelineInput struct { // The ID of the pipeline. PipelineId *string `locationName:"pipelineId" min:"1" type:"string" required:"true"` - metadataDeletePipelineInput `json:"-" xml:"-"` -} - -type metadataDeletePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -878,11 +842,7 @@ func (s DeletePipelineInput) GoString() string { } type DeletePipelineOutput struct { - metadataDeletePipelineOutput `json:"-" xml:"-"` -} - -type metadataDeletePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -914,11 +874,7 @@ type DescribeObjectsInput struct { // The ID of the pipeline that contains the object definitions. PipelineId *string `locationName:"pipelineId" min:"1" type:"string" required:"true"` - metadataDescribeObjectsInput `json:"-" xml:"-"` -} - -type metadataDescribeObjectsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -944,11 +900,7 @@ type DescribeObjectsOutput struct { // An array of object definitions. PipelineObjects []*PipelineObject `locationName:"pipelineObjects" type:"list" required:"true"` - metadataDescribeObjectsOutput `json:"-" xml:"-"` -} - -type metadataDescribeObjectsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -967,11 +919,7 @@ type DescribePipelinesInput struct { // in a single call. To obtain pipeline IDs, call ListPipelines. PipelineIds []*string `locationName:"pipelineIds" type:"list" required:"true"` - metadataDescribePipelinesInput `json:"-" xml:"-"` -} - -type metadataDescribePipelinesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -989,11 +937,7 @@ type DescribePipelinesOutput struct { // An array of descriptions for the specified pipelines. PipelineDescriptionList []*PipelineDescription `locationName:"pipelineDescriptionList" type:"list" required:"true"` - metadataDescribePipelinesOutput `json:"-" xml:"-"` -} - -type metadataDescribePipelinesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1017,11 +961,7 @@ type EvaluateExpressionInput struct { // The ID of the pipeline. PipelineId *string `locationName:"pipelineId" min:"1" type:"string" required:"true"` - metadataEvaluateExpressionInput `json:"-" xml:"-"` -} - -type metadataEvaluateExpressionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1039,11 +979,7 @@ type EvaluateExpressionOutput struct { // The evaluated expression. EvaluatedExpression *string `locationName:"evaluatedExpression" type:"string" required:"true"` - metadataEvaluateExpressionOutput `json:"-" xml:"-"` -} - -type metadataEvaluateExpressionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1069,11 +1005,7 @@ type Field struct { // The field value, expressed as a String. StringValue *string `locationName:"stringValue" type:"string"` - metadataField `json:"-" xml:"-"` -} - -type metadataField struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1096,11 +1028,7 @@ type GetPipelineDefinitionInput struct { // to use the last definition that was activated. Version *string `locationName:"version" type:"string"` - metadataGetPipelineDefinitionInput `json:"-" xml:"-"` -} - -type metadataGetPipelineDefinitionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1124,11 +1052,7 @@ type GetPipelineDefinitionOutput struct { // The objects defined in the pipeline. PipelineObjects []*PipelineObject `locationName:"pipelineObjects" type:"list"` - metadataGetPipelineDefinitionOutput `json:"-" xml:"-"` -} - -type metadataGetPipelineDefinitionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1157,11 +1081,7 @@ type InstanceIdentity struct { // the information provided in the instance identity document. Signature *string `locationName:"signature" type:"string"` - metadataInstanceIdentity `json:"-" xml:"-"` -} - -type metadataInstanceIdentity struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1182,11 +1102,7 @@ type ListPipelinesInput struct { // next set of results. Marker *string `locationName:"marker" type:"string"` - metadataListPipelinesInput `json:"-" xml:"-"` -} - -type metadataListPipelinesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1214,11 +1130,7 @@ type ListPipelinesOutput struct { // pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition. PipelineIdList []*PipelineIdName `locationName:"pipelineIdList" type:"list" required:"true"` - metadataListPipelinesOutput `json:"-" xml:"-"` -} - -type metadataListPipelinesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1257,11 +1169,7 @@ type Operator struct { // The value that the actual field value will be compared with. Values []*string `locationName:"values" type:"list"` - metadataOperator `json:"-" xml:"-"` -} - -type metadataOperator struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1282,11 +1190,7 @@ type ParameterAttribute struct { // The field value, expressed as a String. StringValue *string `locationName:"stringValue" type:"string" required:"true"` - metadataParameterAttribute `json:"-" xml:"-"` -} - -type metadataParameterAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1307,11 +1211,7 @@ type ParameterObject struct { // The ID of the parameter object. Id *string `locationName:"id" min:"1" type:"string" required:"true"` - metadataParameterObject `json:"-" xml:"-"` -} - -type metadataParameterObject struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1332,11 +1232,7 @@ type ParameterValue struct { // The field value, expressed as a String. StringValue *string `locationName:"stringValue" type:"string" required:"true"` - metadataParameterValue `json:"-" xml:"-"` -} - -type metadataParameterValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1371,11 +1267,7 @@ type PipelineDescription struct { // in the AWS Data Pipeline Developer Guide. Tags []*Tag `locationName:"tags" type:"list"` - metadataPipelineDescription `json:"-" xml:"-"` -} - -type metadataPipelineDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1397,11 +1289,7 @@ type PipelineIdName struct { // The name of the pipeline. Name *string `locationName:"name" min:"1" type:"string"` - metadataPipelineIdName `json:"-" xml:"-"` -} - -type metadataPipelineIdName struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1427,11 +1315,7 @@ type PipelineObject struct { // The name of the object. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataPipelineObject `json:"-" xml:"-"` -} - -type metadataPipelineObject struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1464,11 +1348,7 @@ type PollForTaskInput struct { // an exact, case-sensitive, match. WorkerGroup *string `locationName:"workerGroup" type:"string" required:"true"` - metadataPollForTaskInput `json:"-" xml:"-"` -} - -type metadataPollForTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1489,11 +1369,7 @@ type PollForTaskOutput struct { // in subsequent calls to ReportTaskProgress and SetTaskStatus. TaskObject *TaskObject `locationName:"taskObject" type:"structure"` - metadataPollForTaskOutput `json:"-" xml:"-"` -} - -type metadataPollForTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1521,11 +1397,7 @@ type PutPipelineDefinitionInput struct { // pipeline definition. PipelineObjects []*PipelineObject `locationName:"pipelineObjects" type:"list" required:"true"` - metadataPutPipelineDefinitionInput `json:"-" xml:"-"` -} - -type metadataPutPipelineDefinitionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1551,11 +1423,7 @@ type PutPipelineDefinitionOutput struct { // The validation warnings that are associated with the objects defined in pipelineObjects. ValidationWarnings []*ValidationWarning `locationName:"validationWarnings" type:"list"` - metadataPutPipelineDefinitionOutput `json:"-" xml:"-"` -} - -type metadataPutPipelineDefinitionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1574,11 +1442,7 @@ type Query struct { // selectors to match the query. Selectors []*Selector `locationName:"selectors" type:"list"` - metadataQuery `json:"-" xml:"-"` -} - -type metadataQuery struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1616,11 +1480,7 @@ type QueryObjectsInput struct { // values are: COMPONENT, INSTANCE, and ATTEMPT. Sphere *string `locationName:"sphere" type:"string" required:"true"` - metadataQueryObjectsInput `json:"-" xml:"-"` -} - -type metadataQueryObjectsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1647,11 +1507,7 @@ type QueryObjectsOutput struct { // null, there are no more results. Marker *string `locationName:"marker" type:"string"` - metadataQueryObjectsOutput `json:"-" xml:"-"` -} - -type metadataQueryObjectsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1672,11 +1528,7 @@ type RemoveTagsInput struct { // The keys of the tags to remove. TagKeys []*string `locationName:"tagKeys" type:"list" required:"true"` - metadataRemoveTagsInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1691,11 +1543,7 @@ func (s RemoveTagsInput) GoString() string { // Contains the output of RemoveTags. type RemoveTagsOutput struct { - metadataRemoveTagsOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1718,11 +1566,7 @@ type ReportTaskProgressInput struct { // the response for PollForTask. TaskId *string `locationName:"taskId" min:"1" type:"string" required:"true"` - metadataReportTaskProgressInput `json:"-" xml:"-"` -} - -type metadataReportTaskProgressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1741,11 +1585,7 @@ type ReportTaskProgressOutput struct { // task runner does not need to call SetTaskStatus for canceled tasks. Canceled *bool `locationName:"canceled" type:"boolean" required:"true"` - metadataReportTaskProgressOutput `json:"-" xml:"-"` -} - -type metadataReportTaskProgressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1777,11 +1617,7 @@ type ReportTaskRunnerHeartbeatInput struct { // match. WorkerGroup *string `locationName:"workerGroup" type:"string"` - metadataReportTaskRunnerHeartbeatInput `json:"-" xml:"-"` -} - -type metadataReportTaskRunnerHeartbeatInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1799,11 +1635,7 @@ type ReportTaskRunnerHeartbeatOutput struct { // Indicates whether the calling task runner should terminate. Terminate *bool `locationName:"terminate" type:"boolean" required:"true"` - metadataReportTaskRunnerHeartbeatOutput `json:"-" xml:"-"` -} - -type metadataReportTaskRunnerHeartbeatOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1829,11 +1661,7 @@ type Selector struct { // value. Operator *Operator `locationName:"operator" type:"structure"` - metadataSelector `json:"-" xml:"-"` -} - -type metadataSelector struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1859,11 +1687,7 @@ type SetStatusInput struct { // use PAUSE or RESUME. For instances, use TRY_CANCEL, RERUN, or MARK_FINISHED. Status *string `locationName:"status" type:"string" required:"true"` - metadataSetStatusInput `json:"-" xml:"-"` -} - -type metadataSetStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1877,11 +1701,7 @@ func (s SetStatusInput) GoString() string { } type SetStatusOutput struct { - metadataSetStatusOutput `json:"-" xml:"-"` -} - -type metadataSetStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1922,11 +1742,7 @@ type SetTaskStatusInput struct { // Preconditions use false. TaskStatus *string `locationName:"taskStatus" type:"string" required:"true" enum:"TaskStatus"` - metadataSetTaskStatusInput `json:"-" xml:"-"` -} - -type metadataSetTaskStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1941,11 +1757,7 @@ func (s SetTaskStatusInput) GoString() string { // Contains the output of SetTaskStatus. type SetTaskStatusOutput struct { - metadataSetTaskStatusOutput `json:"-" xml:"-"` -} - -type metadataSetTaskStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1974,11 +1786,7 @@ type Tag struct { // in the AWS Data Pipeline Developer Guide. Value *string `locationName:"value" type:"string" required:"true"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2008,11 +1816,7 @@ type TaskObject struct { // and ReportTaskProgress actions. TaskId *string `locationName:"taskId" min:"1" type:"string"` - metadataTaskObject `json:"-" xml:"-"` -} - -type metadataTaskObject struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2039,11 +1843,7 @@ type ValidatePipelineDefinitionInput struct { // The objects that define the pipeline changes to validate against the pipeline. PipelineObjects []*PipelineObject `locationName:"pipelineObjects" type:"list" required:"true"` - metadataValidatePipelineDefinitionInput `json:"-" xml:"-"` -} - -type metadataValidatePipelineDefinitionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2067,11 +1867,7 @@ type ValidatePipelineDefinitionOutput struct { // Any validation warnings that were found. ValidationWarnings []*ValidationWarning `locationName:"validationWarnings" type:"list"` - metadataValidatePipelineDefinitionOutput `json:"-" xml:"-"` -} - -type metadataValidatePipelineDefinitionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2094,11 +1890,7 @@ type ValidationError struct { // The identifier of the object that contains the validation error. Id *string `locationName:"id" min:"1" type:"string"` - metadataValidationError `json:"-" xml:"-"` -} - -type metadataValidationError struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2121,11 +1913,7 @@ type ValidationWarning struct { // A description of the validation warning. Warnings []*string `locationName:"warnings" type:"list"` - metadataValidationWarning `json:"-" xml:"-"` -} - -type metadataValidationWarning struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/devicefarm/api.go b/service/devicefarm/api.go index 3283b1e3717..4b7ed6b4e68 100644 --- a/service/devicefarm/api.go +++ b/service/devicefarm/api.go @@ -1017,11 +1017,7 @@ type AccountSettings struct { // Returns the unmetered devices you have purchased. UnmeteredDevices map[string]*int64 `locationName:"unmeteredDevices" type:"map"` - metadataAccountSettings `json:"-" xml:"-"` -} - -type metadataAccountSettings struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1087,11 +1083,7 @@ type Artifact struct { // to download the artifact's file. Url *string `locationName:"url" type:"string"` - metadataArtifact `json:"-" xml:"-"` -} - -type metadataArtifact struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1118,11 +1110,7 @@ type CPU struct { // The CPU's frequency. Frequency *string `locationName:"frequency" type:"string"` - metadataCPU `json:"-" xml:"-"` -} - -type metadataCPU struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1158,11 +1146,7 @@ type Counters struct { // The number of warned entities. Warned *int64 `locationName:"warned" type:"integer"` - metadataCounters `json:"-" xml:"-"` -} - -type metadataCounters struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1189,11 +1173,7 @@ type CreateDevicePoolInput struct { // The device pool's rules. Rules []*Rule `locationName:"rules" type:"list" required:"true"` - metadataCreateDevicePoolInput `json:"-" xml:"-"` -} - -type metadataCreateDevicePoolInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1211,11 +1191,7 @@ type CreateDevicePoolOutput struct { // The newly created device pool. DevicePool *DevicePool `locationName:"devicePool" type:"structure"` - metadataCreateDevicePoolOutput `json:"-" xml:"-"` -} - -type metadataCreateDevicePoolOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1233,11 +1209,7 @@ type CreateProjectInput struct { // The project's name. Name *string `locationName:"name" type:"string" required:"true"` - metadataCreateProjectInput `json:"-" xml:"-"` -} - -type metadataCreateProjectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1255,11 +1227,7 @@ type CreateProjectOutput struct { // The newly created project. Project *Project `locationName:"project" type:"structure"` - metadataCreateProjectOutput `json:"-" xml:"-"` -} - -type metadataCreateProjectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1314,11 +1282,7 @@ type CreateUploadInput struct { // an ArgumentException error. Type *string `locationName:"type" type:"string" required:"true" enum:"UploadType"` - metadataCreateUploadInput `json:"-" xml:"-"` -} - -type metadataCreateUploadInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1336,11 +1300,7 @@ type CreateUploadOutput struct { // The newly created upload. Upload *Upload `locationName:"upload" type:"structure"` - metadataCreateUploadOutput `json:"-" xml:"-"` -} - -type metadataCreateUploadOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1359,11 +1319,7 @@ type DeleteDevicePoolInput struct { // you wish to delete. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataDeleteDevicePoolInput `json:"-" xml:"-"` -} - -type metadataDeleteDevicePoolInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1378,11 +1334,7 @@ func (s DeleteDevicePoolInput) GoString() string { // Represents the result of a delete device pool request. type DeleteDevicePoolOutput struct { - metadataDeleteDevicePoolOutput `json:"-" xml:"-"` -} - -type metadataDeleteDevicePoolOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1401,11 +1353,7 @@ type DeleteProjectInput struct { // wish to delete. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataDeleteProjectInput `json:"-" xml:"-"` -} - -type metadataDeleteProjectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1420,11 +1368,7 @@ func (s DeleteProjectInput) GoString() string { // Represents the result of a delete project request. type DeleteProjectOutput struct { - metadataDeleteProjectOutput `json:"-" xml:"-"` -} - -type metadataDeleteProjectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1442,11 +1386,7 @@ type DeleteRunInput struct { // The Amazon Resource Name (ARN) for the run you wish to delete. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataDeleteRunInput `json:"-" xml:"-"` -} - -type metadataDeleteRunInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1461,11 +1401,7 @@ func (s DeleteRunInput) GoString() string { // Represents the result of a delete run request. type DeleteRunOutput struct { - metadataDeleteRunOutput `json:"-" xml:"-"` -} - -type metadataDeleteRunOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1484,11 +1420,7 @@ type DeleteUploadInput struct { // to delete. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataDeleteUploadInput `json:"-" xml:"-"` -} - -type metadataDeleteUploadInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1503,11 +1435,7 @@ func (s DeleteUploadInput) GoString() string { // Represents the result of a delete upload request. type DeleteUploadOutput struct { - metadataDeleteUploadOutput `json:"-" xml:"-"` -} - -type metadataDeleteUploadOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1577,11 +1505,7 @@ type Device struct { // in pixels. Resolution *Resolution `locationName:"resolution" type:"structure"` - metadataDevice `json:"-" xml:"-"` -} - -type metadataDevice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1609,11 +1533,7 @@ type DeviceMinutes struct { // resource to run tests. Unmetered *float64 `locationName:"unmetered" type:"double"` - metadataDeviceMinutes `json:"-" xml:"-"` -} - -type metadataDeviceMinutes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1649,11 +1569,7 @@ type DevicePool struct { // PRIVATE: A device pool that is created and managed by the device pool developer. Type *string `locationName:"type" type:"string" enum:"DevicePoolType"` - metadataDevicePool `json:"-" xml:"-"` -} - -type metadataDevicePool struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1677,11 +1593,7 @@ type DevicePoolCompatibilityResult struct { // Information about the compatibility. IncompatibilityMessages []*IncompatibilityMessage `locationName:"incompatibilityMessages" type:"list"` - metadataDevicePoolCompatibilityResult `json:"-" xml:"-"` -} - -type metadataDevicePoolCompatibilityResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1695,11 +1607,7 @@ func (s DevicePoolCompatibilityResult) GoString() string { } type GetAccountSettingsInput struct { - metadataGetAccountSettingsInput `json:"-" xml:"-"` -} - -type metadataGetAccountSettingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1716,11 +1624,7 @@ type GetAccountSettingsOutput struct { // A container for account-level settings within AWS Device Farm. AccountSettings *AccountSettings `locationName:"accountSettings" type:"structure"` - metadataGetAccountSettingsOutput `json:"-" xml:"-"` -} - -type metadataGetAccountSettingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1738,11 +1642,7 @@ type GetDeviceInput struct { // The device type's ARN. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataGetDeviceInput `json:"-" xml:"-"` -} - -type metadataGetDeviceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1760,11 +1660,7 @@ type GetDeviceOutput struct { // Represents a device type that an app is tested against. Device *Device `locationName:"device" type:"structure"` - metadataGetDeviceOutput `json:"-" xml:"-"` -} - -type metadataGetDeviceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1809,11 +1705,7 @@ type GetDevicePoolCompatibilityInput struct { // XCTEST: The XCode test type. TestType *string `locationName:"testType" type:"string" enum:"TestType"` - metadataGetDevicePoolCompatibilityInput `json:"-" xml:"-"` -} - -type metadataGetDevicePoolCompatibilityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1834,11 +1726,7 @@ type GetDevicePoolCompatibilityOutput struct { // Information about incompatible devices. IncompatibleDevices []*DevicePoolCompatibilityResult `locationName:"incompatibleDevices" type:"list"` - metadataGetDevicePoolCompatibilityOutput `json:"-" xml:"-"` -} - -type metadataGetDevicePoolCompatibilityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1856,11 +1744,7 @@ type GetDevicePoolInput struct { // The device pool's ARN. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataGetDevicePoolInput `json:"-" xml:"-"` -} - -type metadataGetDevicePoolInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1878,11 +1762,7 @@ type GetDevicePoolOutput struct { // Represents a collection of device types. DevicePool *DevicePool `locationName:"devicePool" type:"structure"` - metadataGetDevicePoolOutput `json:"-" xml:"-"` -} - -type metadataGetDevicePoolOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1900,11 +1780,7 @@ type GetJobInput struct { // The job's ARN. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataGetJobInput `json:"-" xml:"-"` -} - -type metadataGetJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1922,11 +1798,7 @@ type GetJobOutput struct { // Represents a device. Job *Job `locationName:"job" type:"structure"` - metadataGetJobOutput `json:"-" xml:"-"` -} - -type metadataGetJobOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1944,11 +1816,7 @@ type GetProjectInput struct { // The project's ARN. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataGetProjectInput `json:"-" xml:"-"` -} - -type metadataGetProjectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1967,11 +1835,7 @@ type GetProjectOutput struct { // tests. Project *Project `locationName:"project" type:"structure"` - metadataGetProjectOutput `json:"-" xml:"-"` -} - -type metadataGetProjectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1989,11 +1853,7 @@ type GetRunInput struct { // The run's ARN. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataGetRunInput `json:"-" xml:"-"` -} - -type metadataGetRunInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2011,11 +1871,7 @@ type GetRunOutput struct { // Represents an app on a set of devices with a specific test and configuration. Run *Run `locationName:"run" type:"structure"` - metadataGetRunOutput `json:"-" xml:"-"` -} - -type metadataGetRunOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2033,11 +1889,7 @@ type GetSuiteInput struct { // The suite's ARN. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataGetSuiteInput `json:"-" xml:"-"` -} - -type metadataGetSuiteInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2055,11 +1907,7 @@ type GetSuiteOutput struct { // Represents a collection of one or more tests. Suite *Suite `locationName:"suite" type:"structure"` - metadataGetSuiteOutput `json:"-" xml:"-"` -} - -type metadataGetSuiteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2077,11 +1925,7 @@ type GetTestInput struct { // The test's ARN. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataGetTestInput `json:"-" xml:"-"` -} - -type metadataGetTestInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2099,11 +1943,7 @@ type GetTestOutput struct { // Represents a condition that is evaluated. Test *Test `locationName:"test" type:"structure"` - metadataGetTestOutput `json:"-" xml:"-"` -} - -type metadataGetTestOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2121,11 +1961,7 @@ type GetUploadInput struct { // The upload's ARN. Arn *string `locationName:"arn" min:"32" type:"string" required:"true"` - metadataGetUploadInput `json:"-" xml:"-"` -} - -type metadataGetUploadInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2143,11 +1979,7 @@ type GetUploadOutput struct { // An app or a set of one or more tests to upload or that have been uploaded. Upload *Upload `locationName:"upload" type:"structure"` - metadataGetUploadOutput `json:"-" xml:"-"` -} - -type metadataGetUploadOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2178,11 +2010,7 @@ type IncompatibilityMessage struct { // PLATFORM: The platform (for example, Android or iOS). Type *string `locationName:"type" type:"string" enum:"DeviceAttribute"` - metadataIncompatibilityMessage `json:"-" xml:"-"` -} - -type metadataIncompatibilityMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2282,11 +2110,7 @@ type Job struct { // XCTEST: The XCode test type. Type *string `locationName:"type" type:"string" enum:"TestType"` - metadataJob `json:"-" xml:"-"` -} - -type metadataJob struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2316,11 +2140,7 @@ type ListArtifactsInput struct { // The artifacts are screenshots. Type *string `locationName:"type" type:"string" required:"true" enum:"ArtifactCategory"` - metadataListArtifactsInput `json:"-" xml:"-"` -} - -type metadataListArtifactsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2343,11 +2163,7 @@ type ListArtifactsOutput struct { // to this operation to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListArtifactsOutput `json:"-" xml:"-"` -} - -type metadataListArtifactsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2378,11 +2194,7 @@ type ListDevicePoolsInput struct { // PRIVATE: A device pool that is created and managed by the device pool developer. Type *string `locationName:"type" type:"string" enum:"DevicePoolType"` - metadataListDevicePoolsInput `json:"-" xml:"-"` -} - -type metadataListDevicePoolsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2405,11 +2217,7 @@ type ListDevicePoolsOutput struct { // to this operation to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListDevicePoolsOutput `json:"-" xml:"-"` -} - -type metadataListDevicePoolsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2431,11 +2239,7 @@ type ListDevicesInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListDevicesInput `json:"-" xml:"-"` -} - -type metadataListDevicesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2458,11 +2262,7 @@ type ListDevicesOutput struct { // to this operation to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListDevicesOutput `json:"-" xml:"-"` -} - -type metadataListDevicesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2484,11 +2284,7 @@ type ListJobsInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListJobsInput `json:"-" xml:"-"` -} - -type metadataListJobsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2511,11 +2307,7 @@ type ListJobsOutput struct { // to this operation to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListJobsOutput `json:"-" xml:"-"` -} - -type metadataListJobsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2537,11 +2329,7 @@ type ListProjectsInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListProjectsInput `json:"-" xml:"-"` -} - -type metadataListProjectsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2564,11 +2352,7 @@ type ListProjectsOutput struct { // Information about the projects. Projects []*Project `locationName:"projects" type:"list"` - metadataListProjectsOutput `json:"-" xml:"-"` -} - -type metadataListProjectsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2590,11 +2374,7 @@ type ListRunsInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListRunsInput `json:"-" xml:"-"` -} - -type metadataListRunsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2617,11 +2397,7 @@ type ListRunsOutput struct { // Information about the runs. Runs []*Run `locationName:"runs" type:"list"` - metadataListRunsOutput `json:"-" xml:"-"` -} - -type metadataListRunsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2643,11 +2419,7 @@ type ListSamplesInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListSamplesInput `json:"-" xml:"-"` -} - -type metadataListSamplesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2670,11 +2442,7 @@ type ListSamplesOutput struct { // Information about the samples. Samples []*Sample `locationName:"samples" type:"list"` - metadataListSamplesOutput `json:"-" xml:"-"` -} - -type metadataListSamplesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2696,11 +2464,7 @@ type ListSuitesInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListSuitesInput `json:"-" xml:"-"` -} - -type metadataListSuitesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2723,11 +2487,7 @@ type ListSuitesOutput struct { // Information about the suites. Suites []*Suite `locationName:"suites" type:"list"` - metadataListSuitesOutput `json:"-" xml:"-"` -} - -type metadataListSuitesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2749,11 +2509,7 @@ type ListTestsInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListTestsInput `json:"-" xml:"-"` -} - -type metadataListTestsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2776,11 +2532,7 @@ type ListTestsOutput struct { // Information about the tests. Tests []*Test `locationName:"tests" type:"list"` - metadataListTestsOutput `json:"-" xml:"-"` -} - -type metadataListTestsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2802,11 +2554,7 @@ type ListUniqueProblemsInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListUniqueProblemsInput `json:"-" xml:"-"` -} - -type metadataListUniqueProblemsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2845,11 +2593,7 @@ type ListUniqueProblemsOutput struct { // WARNED: A warning condition. UniqueProblems map[string][]*UniqueProblem `locationName:"uniqueProblems" type:"map"` - metadataListUniqueProblemsOutput `json:"-" xml:"-"` -} - -type metadataListUniqueProblemsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2871,11 +2615,7 @@ type ListUploadsInput struct { // which can be used to return the next set of items in the list. NextToken *string `locationName:"nextToken" min:"4" type:"string"` - metadataListUploadsInput `json:"-" xml:"-"` -} - -type metadataListUploadsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2898,11 +2638,7 @@ type ListUploadsOutput struct { // Information about the uploads. Uploads []*Upload `locationName:"uploads" type:"list"` - metadataListUploadsOutput `json:"-" xml:"-"` -} - -type metadataListUploadsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2926,11 +2662,7 @@ type Location struct { // The longitude. Longitude *float64 `locationName:"longitude" type:"double" required:"true"` - metadataLocation `json:"-" xml:"-"` -} - -type metadataLocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2982,11 +2714,7 @@ type Problem struct { // Information about the associated test. Test *ProblemDetail `locationName:"test" type:"structure"` - metadataProblem `json:"-" xml:"-"` -} - -type metadataProblem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3007,11 +2735,7 @@ type ProblemDetail struct { // The problem detail's name. Name *string `locationName:"name" type:"string"` - metadataProblemDetail `json:"-" xml:"-"` -} - -type metadataProblemDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3036,11 +2760,7 @@ type Project struct { // The project's name. Name *string `locationName:"name" type:"string"` - metadataProject `json:"-" xml:"-"` -} - -type metadataProject struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3068,11 +2788,7 @@ type Radios struct { // True if Wi-Fi is enabled at the beginning of the test; otherwise, false. Wifi *bool `locationName:"wifi" type:"boolean"` - metadataRadios `json:"-" xml:"-"` -} - -type metadataRadios struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3094,11 +2810,7 @@ type Resolution struct { // The screen resolution's width, expressed in pixels. Width *int64 `locationName:"width" type:"integer"` - metadataResolution `json:"-" xml:"-"` -} - -type metadataResolution struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3142,11 +2854,7 @@ type Rule struct { // The rule's value. Value *string `locationName:"value" type:"string"` - metadataRule `json:"-" xml:"-"` -} - -type metadataRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3262,11 +2970,7 @@ type Run struct { // XCTEST: The XCode test type. Type *string `locationName:"type" type:"string" enum:"TestType"` - metadataRun `json:"-" xml:"-"` -} - -type metadataRun struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3332,11 +3036,7 @@ type Sample struct { // to download the sample's file. Url *string `locationName:"url" type:"string"` - metadataSample `json:"-" xml:"-"` -} - -type metadataSample struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3376,11 +3076,7 @@ type ScheduleRunConfiguration struct { // Information about the radio states for the run. Radios *Radios `locationName:"radios" type:"structure"` - metadataScheduleRunConfiguration `json:"-" xml:"-"` -} - -type metadataScheduleRunConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3413,11 +3109,7 @@ type ScheduleRunInput struct { // Information about the test for the run to be scheduled. Test *ScheduleRunTest `locationName:"test" type:"structure" required:"true"` - metadataScheduleRunInput `json:"-" xml:"-"` -} - -type metadataScheduleRunInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3435,11 +3127,7 @@ type ScheduleRunOutput struct { // Information about the scheduled run. Run *Run `locationName:"run" type:"structure"` - metadataScheduleRunOutput `json:"-" xml:"-"` -} - -type metadataScheduleRunOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3487,11 +3175,7 @@ type ScheduleRunTest struct { // XCTEST: The XCode test type. Type *string `locationName:"type" type:"string" required:"true" enum:"TestType"` - metadataScheduleRunTest `json:"-" xml:"-"` -} - -type metadataScheduleRunTest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3588,11 +3272,7 @@ type Suite struct { // XCTEST: The XCode test type. Type *string `locationName:"type" type:"string" enum:"TestType"` - metadataSuite `json:"-" xml:"-"` -} - -type metadataSuite struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3689,11 +3369,7 @@ type Test struct { // XCTEST: The XCode test type. Type *string `locationName:"type" type:"string" enum:"TestType"` - metadataTest `json:"-" xml:"-"` -} - -type metadataTest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3714,11 +3390,7 @@ type UniqueProblem struct { // Information about the problems. Problems []*Problem `locationName:"problems" type:"list"` - metadataUniqueProblem `json:"-" xml:"-"` -} - -type metadataUniqueProblem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3748,11 +3420,7 @@ type UpdateDevicePoolInput struct { // update will replace the existing rules. Rules []*Rule `locationName:"rules" type:"list"` - metadataUpdateDevicePoolInput `json:"-" xml:"-"` -} - -type metadataUpdateDevicePoolInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3770,11 +3438,7 @@ type UpdateDevicePoolOutput struct { // Represents a collection of device types. DevicePool *DevicePool `locationName:"devicePool" type:"structure"` - metadataUpdateDevicePoolOutput `json:"-" xml:"-"` -} - -type metadataUpdateDevicePoolOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3795,11 +3459,7 @@ type UpdateProjectInput struct { // A string representing the new name of the project that you are updating. Name *string `locationName:"name" type:"string"` - metadataUpdateProjectInput `json:"-" xml:"-"` -} - -type metadataUpdateProjectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3818,11 +3478,7 @@ type UpdateProjectOutput struct { // tests. Project *Project `locationName:"project" type:"structure"` - metadataUpdateProjectOutput `json:"-" xml:"-"` -} - -type metadataUpdateProjectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3902,11 +3558,7 @@ type Upload struct { // PUT request. Url *string `locationName:"url" type:"string"` - metadataUpload `json:"-" xml:"-"` -} - -type metadataUpload struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/directconnect/api.go b/service/directconnect/api.go index 9e286a29f4a..e986cdf1780 100644 --- a/service/directconnect/api.go +++ b/service/directconnect/api.go @@ -645,11 +645,7 @@ type AllocateConnectionOnInterconnectInput struct { // Default: None Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` - metadataAllocateConnectionOnInterconnectInput `json:"-" xml:"-"` -} - -type metadataAllocateConnectionOnInterconnectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -679,11 +675,7 @@ type AllocatePrivateVirtualInterfaceInput struct { // Default: None OwnerAccount *string `locationName:"ownerAccount" type:"string" required:"true"` - metadataAllocatePrivateVirtualInterfaceInput `json:"-" xml:"-"` -} - -type metadataAllocatePrivateVirtualInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -713,11 +705,7 @@ type AllocatePublicVirtualInterfaceInput struct { // Default: None OwnerAccount *string `locationName:"ownerAccount" type:"string" required:"true"` - metadataAllocatePublicVirtualInterfaceInput `json:"-" xml:"-"` -} - -type metadataAllocatePublicVirtualInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -739,11 +727,7 @@ type ConfirmConnectionInput struct { // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` - metadataConfirmConnectionInput `json:"-" xml:"-"` -} - -type metadataConfirmConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -770,11 +754,7 @@ type ConfirmConnectionOutput struct { // the 'Rejected' state if it is deleted by the end customer. ConnectionState *string `locationName:"connectionState" type:"string" enum:"ConnectionState"` - metadataConfirmConnectionOutput `json:"-" xml:"-"` -} - -type metadataConfirmConnectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -805,11 +785,7 @@ type ConfirmPrivateVirtualInterfaceInput struct { // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"` - metadataConfirmPrivateVirtualInterfaceInput `json:"-" xml:"-"` -} - -type metadataConfirmPrivateVirtualInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -842,11 +818,7 @@ type ConfirmPrivateVirtualInterfaceOutput struct { // the 'Rejected' state. VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"` - metadataConfirmPrivateVirtualInterfaceOutput `json:"-" xml:"-"` -} - -type metadataConfirmPrivateVirtualInterfaceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -868,11 +840,7 @@ type ConfirmPublicVirtualInterfaceInput struct { // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"` - metadataConfirmPublicVirtualInterfaceInput `json:"-" xml:"-"` -} - -type metadataConfirmPublicVirtualInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -905,11 +873,7 @@ type ConfirmPublicVirtualInterfaceOutput struct { // the 'Rejected' state. VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"` - metadataConfirmPublicVirtualInterfaceOutput `json:"-" xml:"-"` -} - -type metadataConfirmPublicVirtualInterfaceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -981,11 +945,7 @@ type Connection struct { // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer"` - metadataConnection `json:"-" xml:"-"` -} - -type metadataConnection struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1003,11 +963,7 @@ type Connections struct { // A list of connections. Connections []*Connection `locationName:"connections" type:"list"` - metadataConnections `json:"-" xml:"-"` -} - -type metadataConnections struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1043,11 +999,7 @@ type CreateConnectionInput struct { // Default: None Location *string `locationName:"location" type:"string" required:"true"` - metadataCreateConnectionInput `json:"-" xml:"-"` -} - -type metadataCreateConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1085,11 +1037,7 @@ type CreateInterconnectInput struct { // Default: None Location *string `locationName:"location" type:"string" required:"true"` - metadataCreateInterconnectInput `json:"-" xml:"-"` -} - -type metadataCreateInterconnectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1116,11 +1064,7 @@ type CreatePrivateVirtualInterfaceInput struct { // Default: None NewPrivateVirtualInterface *NewPrivateVirtualInterface `locationName:"newPrivateVirtualInterface" type:"structure" required:"true"` - metadataCreatePrivateVirtualInterfaceInput `json:"-" xml:"-"` -} - -type metadataCreatePrivateVirtualInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1147,11 +1091,7 @@ type CreatePublicVirtualInterfaceInput struct { // Default: None NewPublicVirtualInterface *NewPublicVirtualInterface `locationName:"newPublicVirtualInterface" type:"structure" required:"true"` - metadataCreatePublicVirtualInterfaceInput `json:"-" xml:"-"` -} - -type metadataCreatePublicVirtualInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1173,11 +1113,7 @@ type DeleteConnectionInput struct { // Default: None ConnectionId *string `locationName:"connectionId" type:"string" required:"true"` - metadataDeleteConnectionInput `json:"-" xml:"-"` -} - -type metadataDeleteConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1197,11 +1133,7 @@ type DeleteInterconnectInput struct { // Example: dxcon-abc123 InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"` - metadataDeleteInterconnectInput `json:"-" xml:"-"` -} - -type metadataDeleteInterconnectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1224,11 +1156,7 @@ type DeleteInterconnectOutput struct { // has been deleted. InterconnectState *string `locationName:"interconnectState" type:"string" enum:"InterconnectState"` - metadataDeleteInterconnectOutput `json:"-" xml:"-"` -} - -type metadataDeleteInterconnectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1250,11 +1178,7 @@ type DeleteVirtualInterfaceInput struct { // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"` - metadataDeleteVirtualInterfaceInput `json:"-" xml:"-"` -} - -type metadataDeleteVirtualInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1287,11 +1211,7 @@ type DeleteVirtualInterfaceOutput struct { // the 'Rejected' state. VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"` - metadataDeleteVirtualInterfaceOutput `json:"-" xml:"-"` -} - -type metadataDeleteVirtualInterfaceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1313,11 +1233,7 @@ type DescribeConnectionsInput struct { // Default: None ConnectionId *string `locationName:"connectionId" type:"string"` - metadataDescribeConnectionsInput `json:"-" xml:"-"` -} - -type metadataDescribeConnectionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1339,11 +1255,7 @@ type DescribeConnectionsOnInterconnectInput struct { // Default: None InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"` - metadataDescribeConnectionsOnInterconnectInput `json:"-" xml:"-"` -} - -type metadataDescribeConnectionsOnInterconnectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1363,11 +1275,7 @@ type DescribeInterconnectsInput struct { // Example: dxcon-abc123 InterconnectId *string `locationName:"interconnectId" type:"string"` - metadataDescribeInterconnectsInput `json:"-" xml:"-"` -} - -type metadataDescribeInterconnectsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1385,11 +1293,7 @@ type DescribeInterconnectsOutput struct { // A list of interconnects. Interconnects []*Interconnect `locationName:"interconnects" type:"list"` - metadataDescribeInterconnectsOutput `json:"-" xml:"-"` -} - -type metadataDescribeInterconnectsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1403,11 +1307,7 @@ func (s DescribeInterconnectsOutput) GoString() string { } type DescribeLocationsInput struct { - metadataDescribeLocationsInput `json:"-" xml:"-"` -} - -type metadataDescribeLocationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1423,11 +1323,7 @@ func (s DescribeLocationsInput) GoString() string { type DescribeLocationsOutput struct { Locations []*Location `locationName:"locations" type:"list"` - metadataDescribeLocationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeLocationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1441,11 +1337,7 @@ func (s DescribeLocationsOutput) GoString() string { } type DescribeVirtualGatewaysInput struct { - metadataDescribeVirtualGatewaysInput `json:"-" xml:"-"` -} - -type metadataDescribeVirtualGatewaysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1463,11 +1355,7 @@ type DescribeVirtualGatewaysOutput struct { // A list of virtual private gateways. VirtualGateways []*VirtualGateway `locationName:"virtualGateways" type:"list"` - metadataDescribeVirtualGatewaysOutput `json:"-" xml:"-"` -} - -type metadataDescribeVirtualGatewaysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1496,11 +1384,7 @@ type DescribeVirtualInterfacesInput struct { // Default: None VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string"` - metadataDescribeVirtualInterfacesInput `json:"-" xml:"-"` -} - -type metadataDescribeVirtualInterfacesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1518,11 +1402,7 @@ type DescribeVirtualInterfacesOutput struct { // A list of virtual interfaces. VirtualInterfaces []*VirtualInterface `locationName:"virtualInterfaces" type:"list"` - metadataDescribeVirtualInterfacesOutput `json:"-" xml:"-"` -} - -type metadataDescribeVirtualInterfacesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1587,11 +1467,7 @@ type Interconnect struct { // Default: None Region *string `locationName:"region" type:"string"` - metadataInterconnect `json:"-" xml:"-"` -} - -type metadataInterconnect struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1614,11 +1490,7 @@ type Location struct { // partner name and the physical site of the lit building. LocationName *string `locationName:"locationName" type:"string"` - metadataLocation `json:"-" xml:"-"` -} - -type metadataLocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1669,11 +1541,7 @@ type NewPrivateVirtualInterface struct { // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` - metadataNewPrivateVirtualInterface `json:"-" xml:"-"` -} - -type metadataNewPrivateVirtualInterface struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1719,11 +1587,7 @@ type NewPrivateVirtualInterfaceAllocation struct { // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` - metadataNewPrivateVirtualInterfaceAllocation `json:"-" xml:"-"` -} - -type metadataNewPrivateVirtualInterfaceAllocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1772,11 +1636,7 @@ type NewPublicVirtualInterface struct { // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` - metadataNewPublicVirtualInterface `json:"-" xml:"-"` -} - -type metadataNewPublicVirtualInterface struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1826,11 +1686,7 @@ type NewPublicVirtualInterfaceAllocation struct { // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer" required:"true"` - metadataNewPublicVirtualInterfaceAllocation `json:"-" xml:"-"` -} - -type metadataNewPublicVirtualInterfaceAllocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1852,11 +1708,7 @@ type RouteFilterPrefix struct { // Example: 10.10.10.0/24,10.10.11.0/24 Cidr *string `locationName:"cidr" type:"string"` - metadataRouteFilterPrefix `json:"-" xml:"-"` -} - -type metadataRouteFilterPrefix struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1888,11 +1740,7 @@ type VirtualGateway struct { // over this gateway. VirtualGatewayState *string `locationName:"virtualGatewayState" type:"string"` - metadataVirtualGateway `json:"-" xml:"-"` -} - -type metadataVirtualGateway struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1998,11 +1846,7 @@ type VirtualInterface struct { // Example: 101 Vlan *int64 `locationName:"vlan" type:"integer"` - metadataVirtualInterface `json:"-" xml:"-"` -} - -type metadataVirtualInterface struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/directoryservice/api.go b/service/directoryservice/api.go index f6381e8995e..09dd3cd6f8d 100644 --- a/service/directoryservice/api.go +++ b/service/directoryservice/api.go @@ -514,11 +514,7 @@ type Attribute struct { // The value of the attribute. Value *string `type:"string"` - metadataAttribute `json:"-" xml:"-"` -} - -type metadataAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -543,11 +539,7 @@ type Computer struct { // The computer name. ComputerName *string `min:"1" type:"string"` - metadataComputer `json:"-" xml:"-"` -} - -type metadataComputer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -581,11 +573,7 @@ type ConnectDirectoryInput struct { // The size of the directory. Size *string `type:"string" required:"true" enum:"DirectorySize"` - metadataConnectDirectoryInput `json:"-" xml:"-"` -} - -type metadataConnectDirectoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -603,11 +591,7 @@ type ConnectDirectoryOutput struct { // The identifier of the new directory. DirectoryId *string `type:"string"` - metadataConnectDirectoryOutput `json:"-" xml:"-"` -} - -type metadataConnectDirectoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -631,11 +615,7 @@ type CreateAliasInput struct { // The identifier of the directory to create the alias for. DirectoryId *string `type:"string" required:"true"` - metadataCreateAliasInput `json:"-" xml:"-"` -} - -type metadataCreateAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -656,11 +636,7 @@ type CreateAliasOutput struct { // The identifier of the directory. DirectoryId *string `type:"string"` - metadataCreateAliasOutput `json:"-" xml:"-"` -} - -type metadataCreateAliasOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -693,11 +669,7 @@ type CreateComputerInput struct { // should generate a random, strong password to use for this parameter. Password *string `min:"8" type:"string" required:"true"` - metadataCreateComputerInput `json:"-" xml:"-"` -} - -type metadataCreateComputerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -715,11 +687,7 @@ type CreateComputerOutput struct { // A Computer object the represents the computer account. Computer *Computer `type:"structure"` - metadataCreateComputerOutput `json:"-" xml:"-"` -} - -type metadataCreateComputerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -755,11 +723,7 @@ type CreateDirectoryInput struct { // operation. VpcSettings *DirectoryVpcSettings `type:"structure"` - metadataCreateDirectoryInput `json:"-" xml:"-"` -} - -type metadataCreateDirectoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -777,11 +741,7 @@ type CreateDirectoryOutput struct { // The identifier of the directory that was created. DirectoryId *string `type:"string"` - metadataCreateDirectoryOutput `json:"-" xml:"-"` -} - -type metadataCreateDirectoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -802,11 +762,7 @@ type CreateSnapshotInput struct { // The descriptive name to apply to the snapshot. Name *string `type:"string"` - metadataCreateSnapshotInput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -824,11 +780,7 @@ type CreateSnapshotOutput struct { // The identifier of the snapshot that was created. SnapshotId *string `type:"string"` - metadataCreateSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -846,11 +798,7 @@ type DeleteDirectoryInput struct { // The identifier of the directory to delete. DirectoryId *string `type:"string" required:"true"` - metadataDeleteDirectoryInput `json:"-" xml:"-"` -} - -type metadataDeleteDirectoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -868,11 +816,7 @@ type DeleteDirectoryOutput struct { // The directory identifier. DirectoryId *string `type:"string"` - metadataDeleteDirectoryOutput `json:"-" xml:"-"` -} - -type metadataDeleteDirectoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -890,11 +834,7 @@ type DeleteSnapshotInput struct { // The identifier of the directory snapshot to be deleted. SnapshotId *string `type:"string" required:"true"` - metadataDeleteSnapshotInput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -912,11 +852,7 @@ type DeleteSnapshotOutput struct { // The identifier of the directory snapshot that was deleted. SnapshotId *string `type:"string"` - metadataDeleteSnapshotOutput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -946,11 +882,7 @@ type DescribeDirectoriesInput struct { // Pass null if this is the first call. NextToken *string `type:"string"` - metadataDescribeDirectoriesInput `json:"-" xml:"-"` -} - -type metadataDescribeDirectoriesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -978,11 +910,7 @@ type DescribeDirectoriesOutput struct { // set of items. NextToken *string `type:"string"` - metadataDescribeDirectoriesOutput `json:"-" xml:"-"` -} - -type metadataDescribeDirectoriesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1012,11 +940,7 @@ type DescribeSnapshotsInput struct { // and NextToken members. SnapshotIds []*string `type:"list"` - metadataDescribeSnapshotsInput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1043,11 +967,7 @@ type DescribeSnapshotsOutput struct { // operation have been exceeded. Snapshots []*Snapshot `type:"list"` - metadataDescribeSnapshotsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1080,11 +1000,7 @@ type DirectoryConnectSettings struct { // The identifier of the VPC that the AD Connector is created in. VpcId *string `type:"string" required:"true"` - metadataDirectoryConnectSettings `json:"-" xml:"-"` -} - -type metadataDirectoryConnectSettings struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1117,11 +1033,7 @@ type DirectoryConnectSettingsDescription struct { // The identifier of the VPC that the AD Connector is in. VpcId *string `type:"string"` - metadataDirectoryConnectSettingsDescription `json:"-" xml:"-"` -} - -type metadataDirectoryConnectSettingsDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1200,11 +1112,7 @@ type DirectoryDescription struct { // is a Simple AD directory. VpcSettings *DirectoryVpcSettingsDescription `type:"structure"` - metadataDirectoryDescription `json:"-" xml:"-"` -} - -type metadataDirectoryDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1237,11 +1145,7 @@ type DirectoryLimits struct { // Indicates if the connected directory limit has been reached. ConnectedDirectoriesLimitReached *bool `type:"boolean"` - metadataDirectoryLimits `json:"-" xml:"-"` -} - -type metadataDirectoryLimits struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1265,11 +1169,7 @@ type DirectoryVpcSettings struct { // The identifier of the VPC to create the Simple AD directory in. VpcId *string `type:"string" required:"true"` - metadataDirectoryVpcSettings `json:"-" xml:"-"` -} - -type metadataDirectoryVpcSettings struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1296,11 +1196,7 @@ type DirectoryVpcSettingsDescription struct { // The identifier of the VPC that the directory is in. VpcId *string `type:"string"` - metadataDirectoryVpcSettingsDescription `json:"-" xml:"-"` -} - -type metadataDirectoryVpcSettingsDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1318,11 +1214,7 @@ type DisableRadiusInput struct { // The identifier of the directory to disable MFA for. DirectoryId *string `type:"string" required:"true"` - metadataDisableRadiusInput `json:"-" xml:"-"` -} - -type metadataDisableRadiusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1337,11 +1229,7 @@ func (s DisableRadiusInput) GoString() string { // Contains the results of the DisableRadius operation. type DisableRadiusOutput struct { - metadataDisableRadiusOutput `json:"-" xml:"-"` -} - -type metadataDisableRadiusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1375,11 +1263,7 @@ type DisableSsoInput struct { // is not changed. UserName *string `min:"1" type:"string"` - metadataDisableSsoInput `json:"-" xml:"-"` -} - -type metadataDisableSsoInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1394,11 +1278,7 @@ func (s DisableSsoInput) GoString() string { // Contains the results of the DisableSso operation. type DisableSsoOutput struct { - metadataDisableSsoOutput `json:"-" xml:"-"` -} - -type metadataDisableSsoOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1419,11 +1299,7 @@ type EnableRadiusInput struct { // A RadiusSettings object that contains information about the RADIUS server. RadiusSettings *RadiusSettings `type:"structure" required:"true"` - metadataEnableRadiusInput `json:"-" xml:"-"` -} - -type metadataEnableRadiusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1438,11 +1314,7 @@ func (s EnableRadiusInput) GoString() string { // Contains the results of the EnableRadius operation. type EnableRadiusOutput struct { - metadataEnableRadiusOutput `json:"-" xml:"-"` -} - -type metadataEnableRadiusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1476,11 +1348,7 @@ type EnableSsoInput struct { // changed. UserName *string `min:"1" type:"string"` - metadataEnableSsoInput `json:"-" xml:"-"` -} - -type metadataEnableSsoInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1495,11 +1363,7 @@ func (s EnableSsoInput) GoString() string { // Contains the results of the EnableSso operation. type EnableSsoOutput struct { - metadataEnableSsoOutput `json:"-" xml:"-"` -} - -type metadataEnableSsoOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1514,11 +1378,7 @@ func (s EnableSsoOutput) GoString() string { // Contains the inputs for the GetDirectoryLimits operation. type GetDirectoryLimitsInput struct { - metadataGetDirectoryLimitsInput `json:"-" xml:"-"` -} - -type metadataGetDirectoryLimitsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1537,11 +1397,7 @@ type GetDirectoryLimitsOutput struct { // region. DirectoryLimits *DirectoryLimits `type:"structure"` - metadataGetDirectoryLimitsOutput `json:"-" xml:"-"` -} - -type metadataGetDirectoryLimitsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1559,11 +1415,7 @@ type GetSnapshotLimitsInput struct { // Contains the identifier of the directory to obtain the limits for. DirectoryId *string `type:"string" required:"true"` - metadataGetSnapshotLimitsInput `json:"-" xml:"-"` -} - -type metadataGetSnapshotLimitsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1582,11 +1434,7 @@ type GetSnapshotLimitsOutput struct { // specified directory. SnapshotLimits *SnapshotLimits `type:"structure"` - metadataGetSnapshotLimitsOutput `json:"-" xml:"-"` -} - -type metadataGetSnapshotLimitsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1631,11 +1479,7 @@ type RadiusSettings struct { // Not currently used. UseSameUsername *bool `type:"boolean"` - metadataRadiusSettings `json:"-" xml:"-"` -} - -type metadataRadiusSettings struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1653,11 +1497,7 @@ type RestoreFromSnapshotInput struct { // The identifier of the snapshot to restore from. SnapshotId *string `type:"string" required:"true"` - metadataRestoreFromSnapshotInput `json:"-" xml:"-"` -} - -type metadataRestoreFromSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1672,11 +1512,7 @@ func (s RestoreFromSnapshotInput) GoString() string { // Contains the results of the RestoreFromSnapshot operation. type RestoreFromSnapshotOutput struct { - metadataRestoreFromSnapshotOutput `json:"-" xml:"-"` -} - -type metadataRestoreFromSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1709,11 +1545,7 @@ type Snapshot struct { // The snapshot type. Type *string `type:"string" enum:"SnapshotType"` - metadataSnapshot `json:"-" xml:"-"` -} - -type metadataSnapshot struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1737,11 +1569,7 @@ type SnapshotLimits struct { // Indicates if the manual snapshot limit has been reached. ManualSnapshotsLimitReached *bool `type:"boolean"` - metadataSnapshotLimits `json:"-" xml:"-"` -} - -type metadataSnapshotLimits struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1762,11 +1590,7 @@ type UpdateRadiusInput struct { // A RadiusSettings object that contains information about the RADIUS server. RadiusSettings *RadiusSettings `type:"structure" required:"true"` - metadataUpdateRadiusInput `json:"-" xml:"-"` -} - -type metadataUpdateRadiusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1781,11 +1605,7 @@ func (s UpdateRadiusInput) GoString() string { // Contains the results of the UpdateRadius operation. type UpdateRadiusOutput struct { - metadataUpdateRadiusOutput `json:"-" xml:"-"` -} - -type metadataUpdateRadiusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/dynamodb/api.go b/service/dynamodb/api.go index 02e9e3be082..f8e8bce0142 100644 --- a/service/dynamodb/api.go +++ b/service/dynamodb/api.go @@ -693,11 +693,7 @@ type AttributeDefinition struct { // The data type for the attribute. AttributeType *string `type:"string" required:"true" enum:"ScalarAttributeType"` - metadataAttributeDefinition `json:"-" xml:"-"` -} - -type metadataAttributeDefinition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -748,11 +744,7 @@ type AttributeValue struct { // A String Set data type. SS []*string `type:"list"` - metadataAttributeValue `json:"-" xml:"-"` -} - -type metadataAttributeValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -849,11 +841,7 @@ type AttributeValueUpdate struct { // attribute is a set; duplicate values are not allowed. Value *AttributeValue `type:"structure"` - metadataAttributeValueUpdate `json:"-" xml:"-"` -} - -type metadataAttributeValueUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -967,11 +955,7 @@ type BatchGetItemInput struct { // NONE - No ConsumedCapacity details are included in the response. ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` - metadataBatchGetItemInput `json:"-" xml:"-"` -} - -type metadataBatchGetItemInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1022,11 +1006,7 @@ type BatchGetItemOutput struct { // UnprocessedKeys map. UnprocessedKeys map[string]*KeysAndAttributes `min:"1" type:"map"` - metadataBatchGetItemOutput `json:"-" xml:"-"` -} - -type metadataBatchGetItemOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1092,11 +1072,7 @@ type BatchWriteItemInput struct { // (the default), no statistics are returned. ReturnItemCollectionMetrics *string `type:"string" enum:"ReturnItemCollectionMetrics"` - metadataBatchWriteItemInput `json:"-" xml:"-"` -} - -type metadataBatchWriteItemInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1172,11 +1148,7 @@ type BatchWriteItemOutput struct { // empty UnprocessedItems map. UnprocessedItems map[string][]*WriteRequest `min:"1" type:"map"` - metadataBatchWriteItemOutput `json:"-" xml:"-"` -} - -type metadataBatchWriteItemOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1195,11 +1167,7 @@ type Capacity struct { // The total number of capacity units consumed on a table or an index. CapacityUnits *float64 `type:"double"` - metadataCapacity `json:"-" xml:"-"` -} - -type metadataCapacity struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1373,11 +1341,7 @@ type Condition struct { // in the Amazon DynamoDB Developer Guide. ComparisonOperator *string `type:"string" required:"true" enum:"ComparisonOperator"` - metadataCondition `json:"-" xml:"-"` -} - -type metadataCondition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1412,11 +1376,7 @@ type ConsumedCapacity struct { // The name of the table that was affected by the operation. TableName *string `min:"3" type:"string"` - metadataConsumedCapacity `json:"-" xml:"-"` -} - -type metadataConsumedCapacity struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1450,11 +1410,7 @@ type CreateGlobalSecondaryIndexAction struct { // in the Amazon DynamoDB Developer Guide. ProvisionedThroughput *ProvisionedThroughput `type:"structure" required:"true"` - metadataCreateGlobalSecondaryIndexAction `json:"-" xml:"-"` -} - -type metadataCreateGlobalSecondaryIndexAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1593,11 +1549,7 @@ type CreateTableInput struct { // The name of the table to create. TableName *string `min:"3" type:"string" required:"true"` - metadataCreateTableInput `json:"-" xml:"-"` -} - -type metadataCreateTableInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1615,11 +1567,7 @@ type CreateTableOutput struct { // Represents the properties of a table. TableDescription *TableDescription `type:"structure"` - metadataCreateTableOutput `json:"-" xml:"-"` -} - -type metadataCreateTableOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1637,11 +1585,7 @@ type DeleteGlobalSecondaryIndexAction struct { // The name of the global secondary index to be deleted. IndexName *string `min:"3" type:"string" required:"true"` - metadataDeleteGlobalSecondaryIndexAction `json:"-" xml:"-"` -} - -type metadataDeleteGlobalSecondaryIndexAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1995,11 +1939,7 @@ type DeleteItemInput struct { // The name of the table from which to delete the item. TableName *string `min:"3" type:"string" required:"true"` - metadataDeleteItemInput `json:"-" xml:"-"` -} - -type metadataDeleteItemInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2048,11 +1988,7 @@ type DeleteItemOutput struct { // precision or accuracy of the estimate. ItemCollectionMetrics *ItemCollectionMetrics `type:"structure"` - metadataDeleteItemOutput `json:"-" xml:"-"` -} - -type metadataDeleteItemOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2072,11 +2008,7 @@ type DeleteRequest struct { // specified, and their data types must match those of the table's key schema. Key map[string]*AttributeValue `type:"map" required:"true"` - metadataDeleteRequest `json:"-" xml:"-"` -} - -type metadataDeleteRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2094,11 +2026,7 @@ type DeleteTableInput struct { // The name of the table to delete. TableName *string `min:"3" type:"string" required:"true"` - metadataDeleteTableInput `json:"-" xml:"-"` -} - -type metadataDeleteTableInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2116,11 +2044,7 @@ type DeleteTableOutput struct { // Represents the properties of a table. TableDescription *TableDescription `type:"structure"` - metadataDeleteTableOutput `json:"-" xml:"-"` -} - -type metadataDeleteTableOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2138,11 +2062,7 @@ type DescribeTableInput struct { // The name of the table to describe. TableName *string `min:"3" type:"string" required:"true"` - metadataDescribeTableInput `json:"-" xml:"-"` -} - -type metadataDescribeTableInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2160,11 +2080,7 @@ type DescribeTableOutput struct { // Represents the properties of a table. Table *TableDescription `type:"structure"` - metadataDescribeTableOutput `json:"-" xml:"-"` -} - -type metadataDescribeTableOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2377,11 +2293,7 @@ type ExpectedAttributeValue struct { // attribute is a set; duplicate values are not allowed. Value *AttributeValue `type:"structure"` - metadataExpectedAttributeValue `json:"-" xml:"-"` -} - -type metadataExpectedAttributeValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2497,11 +2409,7 @@ type GetItemInput struct { // The name of the table containing the requested item. TableName *string `min:"3" type:"string" required:"true"` - metadataGetItemInput `json:"-" xml:"-"` -} - -type metadataGetItemInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2527,11 +2435,7 @@ type GetItemOutput struct { // A map of attribute names to AttributeValue objects, as specified by AttributesToGet. Item map[string]*AttributeValue `type:"map"` - metadataGetItemOutput `json:"-" xml:"-"` -} - -type metadataGetItemOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2567,11 +2471,7 @@ type GlobalSecondaryIndex struct { // in the Amazon DynamoDB Developer Guide. ProvisionedThroughput *ProvisionedThroughput `type:"structure" required:"true"` - metadataGlobalSecondaryIndex `json:"-" xml:"-"` -} - -type metadataGlobalSecondaryIndex struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2636,11 +2536,7 @@ type GlobalSecondaryIndexDescription struct { // of read and write capacity units, along with data about increases and decreases. ProvisionedThroughput *ProvisionedThroughputDescription `type:"structure"` - metadataGlobalSecondaryIndexDescription `json:"-" xml:"-"` -} - -type metadataGlobalSecondaryIndexDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2682,11 +2578,7 @@ type GlobalSecondaryIndexUpdate struct { // throughput settings to be applied to that index. Update *UpdateGlobalSecondaryIndexAction `type:"structure"` - metadataGlobalSecondaryIndexUpdate `json:"-" xml:"-"` -} - -type metadataGlobalSecondaryIndexUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2719,11 +2611,7 @@ type ItemCollectionMetrics struct { // precision or accuracy of the estimate. SizeEstimateRangeGB []*float64 `type:"list"` - metadataItemCollectionMetrics `json:"-" xml:"-"` -} - -type metadataItemCollectionMetrics struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2750,11 +2638,7 @@ type KeySchemaElement struct { // The attribute data, consisting of the data type and the attribute value itself. KeyType *string `type:"string" required:"true" enum:"KeyType"` - metadataKeySchemaElement `json:"-" xml:"-"` -} - -type metadataKeySchemaElement struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2838,11 +2722,7 @@ type KeysAndAttributes struct { // ProjectionExpression replaces the legacy AttributesToGet parameter. ProjectionExpression *string `type:"string"` - metadataKeysAndAttributes `json:"-" xml:"-"` -} - -type metadataKeysAndAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2866,11 +2746,7 @@ type ListTablesInput struct { // the limit is 100. Limit *int64 `min:"1" type:"integer"` - metadataListTablesInput `json:"-" xml:"-"` -} - -type metadataListTablesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2901,11 +2777,7 @@ type ListTablesOutput struct { // and obtain the next page of results. TableNames []*string `type:"list"` - metadataListTablesOutput `json:"-" xml:"-"` -} - -type metadataListTablesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2933,11 +2805,7 @@ type LocalSecondaryIndex struct { // attributes, which are automatically projected. Projection *Projection `type:"structure" required:"true"` - metadataLocalSecondaryIndex `json:"-" xml:"-"` -} - -type metadataLocalSecondaryIndex struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2976,11 +2844,7 @@ type LocalSecondaryIndexDescription struct { // attributes, which are automatically projected. Projection *Projection `type:"structure"` - metadataLocalSecondaryIndexDescription `json:"-" xml:"-"` -} - -type metadataLocalSecondaryIndexDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3015,11 +2879,7 @@ type Projection struct { // ALL - All of the table attributes are projected into the index. ProjectionType *string `type:"string" enum:"ProjectionType"` - metadataProjection `json:"-" xml:"-"` -} - -type metadataProjection struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3051,11 +2911,7 @@ type ProvisionedThroughput struct { // in the Amazon DynamoDB Developer Guide. WriteCapacityUnits *int64 `min:"1" type:"long" required:"true"` - metadataProvisionedThroughput `json:"-" xml:"-"` -} - -type metadataProvisionedThroughput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3093,11 +2949,7 @@ type ProvisionedThroughputDescription struct { // a ThrottlingException. WriteCapacityUnits *int64 `min:"1" type:"long"` - metadataProvisionedThroughputDescription `json:"-" xml:"-"` -} - -type metadataProvisionedThroughputDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3465,11 +3317,7 @@ type PutItemInput struct { // The name of the table to contain the item. TableName *string `min:"3" type:"string" required:"true"` - metadataPutItemInput `json:"-" xml:"-"` -} - -type metadataPutItemInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3518,11 +3366,7 @@ type PutItemOutput struct { // precision or accuracy of the estimate. ItemCollectionMetrics *ItemCollectionMetrics `type:"structure"` - metadataPutItemOutput `json:"-" xml:"-"` -} - -type metadataPutItemOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3544,11 +3388,7 @@ type PutRequest struct { // key schema for the table, their types must match the index key schema. Item map[string]*AttributeValue `type:"map" required:"true"` - metadataPutRequest `json:"-" xml:"-"` -} - -type metadataPutRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4040,11 +3880,7 @@ type QueryInput struct { // The name of the table containing the requested items. TableName *string `min:"3" type:"string" required:"true"` - metadataQueryInput `json:"-" xml:"-"` -} - -type metadataQueryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4102,11 +3938,7 @@ type QueryOutput struct { // as Count. ScannedCount *int64 `type:"integer"` - metadataQueryOutput `json:"-" xml:"-"` -} - -type metadataQueryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4408,11 +4240,7 @@ type ScanInput struct { // If you specify TotalSegments, you must also specify Segment. TotalSegments *int64 `min:"1" type:"integer"` - metadataScanInput `json:"-" xml:"-"` -} - -type metadataScanInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4469,11 +4297,7 @@ type ScanOutput struct { // as Count. ScannedCount *int64 `type:"integer"` - metadataScanOutput `json:"-" xml:"-"` -} - -type metadataScanOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4514,11 +4338,7 @@ type StreamSpecification struct { // written to the stream. StreamViewType *string `type:"string" enum:"StreamViewType"` - metadataStreamSpecification `json:"-" xml:"-"` -} - -type metadataStreamSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4713,11 +4533,7 @@ type TableDescription struct { // ACTIVE - The table is ready for use. TableStatus *string `type:"string" enum:"TableStatus"` - metadataTableDescription `json:"-" xml:"-"` -} - -type metadataTableDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4744,11 +4560,7 @@ type UpdateGlobalSecondaryIndexAction struct { // in the Amazon DynamoDB Developer Guide. ProvisionedThroughput *ProvisionedThroughput `type:"structure" required:"true"` - metadataUpdateGlobalSecondaryIndexAction `json:"-" xml:"-"` -} - -type metadataUpdateGlobalSecondaryIndexAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5275,11 +5087,7 @@ type UpdateItemInput struct { // UpdateExpression replaces the legacy AttributeUpdates parameter. UpdateExpression *string `type:"string"` - metadataUpdateItemInput `json:"-" xml:"-"` -} - -type metadataUpdateItemInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5313,11 +5121,7 @@ type UpdateItemOutput struct { // returned in the response. ItemCollectionMetrics *ItemCollectionMetrics `type:"structure"` - metadataUpdateItemOutput `json:"-" xml:"-"` -} - -type metadataUpdateItemOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5369,11 +5173,7 @@ type UpdateTableInput struct { // The name of the table to be updated. TableName *string `min:"3" type:"string" required:"true"` - metadataUpdateTableInput `json:"-" xml:"-"` -} - -type metadataUpdateTableInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5391,11 +5191,7 @@ type UpdateTableOutput struct { // Represents the properties of a table. TableDescription *TableDescription `type:"structure"` - metadataUpdateTableOutput `json:"-" xml:"-"` -} - -type metadataUpdateTableOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5419,11 +5215,7 @@ type WriteRequest struct { // A request to perform a PutItem operation. PutRequest *PutRequest `type:"structure"` - metadataWriteRequest `json:"-" xml:"-"` -} - -type metadataWriteRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/dynamodbstreams/api.go b/service/dynamodbstreams/api.go index 5da1710fd3b..d82c07aa551 100644 --- a/service/dynamodbstreams/api.go +++ b/service/dynamodbstreams/api.go @@ -159,11 +159,7 @@ type DescribeStreamInput struct { // The Amazon Resource Name (ARN) for the stream. StreamArn *string `min:"37" type:"string" required:"true"` - metadataDescribeStreamInput `json:"-" xml:"-"` -} - -type metadataDescribeStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -184,11 +180,7 @@ type DescribeStreamOutput struct { // shards. StreamDescription *StreamDescription `type:"structure"` - metadataDescribeStreamOutput `json:"-" xml:"-"` -} - -type metadataDescribeStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -211,11 +203,7 @@ type GetRecordsInput struct { // This iterator can be used to access the stream records in this shard. ShardIterator *string `min:"1" type:"string" required:"true"` - metadataGetRecordsInput `json:"-" xml:"-"` -} - -type metadataGetRecordsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -238,11 +226,7 @@ type GetRecordsOutput struct { // The stream records from the shard, which were retrieved using the shard iterator. Records []*Record `type:"list"` - metadataGetRecordsOutput `json:"-" xml:"-"` -} - -type metadataGetRecordsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -285,11 +269,7 @@ type GetShardIteratorInput struct { // The Amazon Resource Name (ARN) for the stream. StreamArn *string `min:"37" type:"string" required:"true"` - metadataGetShardIteratorInput `json:"-" xml:"-"` -} - -type metadataGetShardIteratorInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -309,11 +289,7 @@ type GetShardIteratorOutput struct { // record in a shard. ShardIterator *string `min:"1" type:"string"` - metadataGetShardIteratorOutput `json:"-" xml:"-"` -} - -type metadataGetShardIteratorOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -340,11 +316,7 @@ type ListStreamsInput struct { // table name are returned. TableName *string `min:"3" type:"string"` - metadataListStreamsInput `json:"-" xml:"-"` -} - -type metadataListStreamsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -374,11 +346,7 @@ type ListStreamsOutput struct { // A list of stream descriptors associated with the current account and endpoint. Streams []*Stream `type:"list"` - metadataListStreamsOutput `json:"-" xml:"-"` -} - -type metadataListStreamsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -420,11 +388,7 @@ type Record struct { // The version number of the stream record format. Currently, this is 1.0. EventVersion *string `locationName:"eventVersion" type:"string"` - metadataRecord `json:"-" xml:"-"` -} - -type metadataRecord struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -446,11 +410,7 @@ type SequenceNumberRange struct { // The first sequence number. StartingSequenceNumber *string `min:"21" type:"string"` - metadataSequenceNumberRange `json:"-" xml:"-"` -} - -type metadataSequenceNumberRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -474,11 +434,7 @@ type Shard struct { // The system-generated identifier for this shard. ShardId *string `min:"28" type:"string"` - metadataShard `json:"-" xml:"-"` -} - -type metadataShard struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -513,11 +469,7 @@ type Stream struct { // The DynamoDB table with which the stream is associated. TableName *string `min:"3" type:"string"` - metadataStream `json:"-" xml:"-"` -} - -type metadataStream struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -598,11 +550,7 @@ type StreamDescription struct { // The DynamoDB table with which the stream is associated. TableName *string `min:"3" type:"string"` - metadataStreamDescription `json:"-" xml:"-"` -} - -type metadataStreamDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -645,11 +593,7 @@ type StreamRecord struct { // NEW_AND_OLD_IMAGES — both the new and the old item images of the item. StreamViewType *string `type:"string" enum:"StreamViewType"` - metadataStreamRecord `json:"-" xml:"-"` -} - -type metadataStreamRecord struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/ec2/api.go b/service/ec2/api.go index 084d4d57353..3d1ec8f3e39 100644 --- a/service/ec2/api.go +++ b/service/ec2/api.go @@ -6630,11 +6630,7 @@ type AcceptVpcPeeringConnectionInput struct { // The ID of the VPC peering connection. VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` - metadataAcceptVpcPeeringConnectionInput `json:"-" xml:"-"` -} - -type metadataAcceptVpcPeeringConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6651,11 +6647,7 @@ type AcceptVpcPeeringConnectionOutput struct { // Information about the VPC peering connection. VpcPeeringConnection *VpcPeeringConnection `locationName:"vpcPeeringConnection" type:"structure"` - metadataAcceptVpcPeeringConnectionOutput `json:"-" xml:"-"` -} - -type metadataAcceptVpcPeeringConnectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6676,11 +6668,7 @@ type AccountAttribute struct { // One or more values for the account attribute. AttributeValues []*AccountAttributeValue `locationName:"attributeValueSet" locationNameList:"item" type:"list"` - metadataAccountAttribute `json:"-" xml:"-"` -} - -type metadataAccountAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6698,11 +6686,7 @@ type AccountAttributeValue struct { // The value of the attribute. AttributeValue *string `locationName:"attributeValue" type:"string"` - metadataAccountAttributeValue `json:"-" xml:"-"` -} - -type metadataAccountAttributeValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6726,11 +6710,7 @@ type ActiveInstance struct { // The ID of the Spot instance request. SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"` - metadataActiveInstance `json:"-" xml:"-"` -} - -type metadataActiveInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6771,11 +6751,7 @@ type Address struct { // The Elastic IP address. PublicIp *string `locationName:"publicIp" type:"string"` - metadataAddress `json:"-" xml:"-"` -} - -type metadataAddress struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6800,11 +6776,7 @@ type AllocateAddressInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataAllocateAddressInput `json:"-" xml:"-"` -} - -type metadataAllocateAddressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6829,11 +6801,7 @@ type AllocateAddressOutput struct { // The Elastic IP address. PublicIp *string `locationName:"publicIp" type:"string"` - metadataAllocateAddressOutput `json:"-" xml:"-"` -} - -type metadataAllocateAddressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6871,11 +6839,7 @@ type AllocateHostsInput struct { // parameters. Quantity *int64 `locationName:"quantity" type:"integer" required:"true"` - metadataAllocateHostsInput `json:"-" xml:"-"` -} - -type metadataAllocateHostsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6893,11 +6857,7 @@ type AllocateHostsOutput struct { // an instance onto a specific host. HostIds []*string `locationName:"hostIdSet" locationNameList:"item" type:"list"` - metadataAllocateHostsOutput `json:"-" xml:"-"` -} - -type metadataAllocateHostsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6930,11 +6890,7 @@ type AssignPrivateIpAddressesInput struct { // You can't specify this parameter when also specifying private IP addresses. SecondaryPrivateIpAddressCount *int64 `locationName:"secondaryPrivateIpAddressCount" type:"integer"` - metadataAssignPrivateIpAddressesInput `json:"-" xml:"-"` -} - -type metadataAssignPrivateIpAddressesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6948,11 +6904,7 @@ func (s AssignPrivateIpAddressesInput) GoString() string { } type AssignPrivateIpAddressesOutput struct { - metadataAssignPrivateIpAddressesOutput `json:"-" xml:"-"` -} - -type metadataAssignPrivateIpAddressesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7001,11 +6953,7 @@ type AssociateAddressInput struct { // The Elastic IP address. This is required for EC2-Classic. PublicIp *string `type:"string"` - metadataAssociateAddressInput `json:"-" xml:"-"` -} - -type metadataAssociateAddressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7023,11 +6971,7 @@ type AssociateAddressOutput struct { // with an instance. AssociationId *string `locationName:"associationId" type:"string"` - metadataAssociateAddressOutput `json:"-" xml:"-"` -} - -type metadataAssociateAddressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7054,11 +6998,7 @@ type AssociateDhcpOptionsInput struct { // The ID of the VPC. VpcId *string `type:"string" required:"true"` - metadataAssociateDhcpOptionsInput `json:"-" xml:"-"` -} - -type metadataAssociateDhcpOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7072,11 +7012,7 @@ func (s AssociateDhcpOptionsInput) GoString() string { } type AssociateDhcpOptionsOutput struct { - metadataAssociateDhcpOptionsOutput `json:"-" xml:"-"` -} - -type metadataAssociateDhcpOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7102,11 +7038,7 @@ type AssociateRouteTableInput struct { // The ID of the subnet. SubnetId *string `locationName:"subnetId" type:"string" required:"true"` - metadataAssociateRouteTableInput `json:"-" xml:"-"` -} - -type metadataAssociateRouteTableInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7123,11 +7055,7 @@ type AssociateRouteTableOutput struct { // The route table association ID (needed to disassociate the route table). AssociationId *string `locationName:"associationId" type:"string"` - metadataAssociateRouteTableOutput `json:"-" xml:"-"` -} - -type metadataAssociateRouteTableOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7157,11 +7085,7 @@ type AttachClassicLinkVpcInput struct { // The ID of a ClassicLink-enabled VPC. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataAttachClassicLinkVpcInput `json:"-" xml:"-"` -} - -type metadataAttachClassicLinkVpcInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7178,11 +7102,7 @@ type AttachClassicLinkVpcOutput struct { // Returns true if the request succeeds; otherwise, it returns an error. Return *bool `locationName:"return" type:"boolean"` - metadataAttachClassicLinkVpcOutput `json:"-" xml:"-"` -} - -type metadataAttachClassicLinkVpcOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7208,11 +7128,7 @@ type AttachInternetGatewayInput struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataAttachInternetGatewayInput `json:"-" xml:"-"` -} - -type metadataAttachInternetGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7226,11 +7142,7 @@ func (s AttachInternetGatewayInput) GoString() string { } type AttachInternetGatewayOutput struct { - metadataAttachInternetGatewayOutput `json:"-" xml:"-"` -} - -type metadataAttachInternetGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7259,11 +7171,7 @@ type AttachNetworkInterfaceInput struct { // The ID of the network interface. NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` - metadataAttachNetworkInterfaceInput `json:"-" xml:"-"` -} - -type metadataAttachNetworkInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7280,11 +7188,7 @@ type AttachNetworkInterfaceOutput struct { // The ID of the network interface attachment. AttachmentId *string `locationName:"attachmentId" type:"string"` - metadataAttachNetworkInterfaceOutput `json:"-" xml:"-"` -} - -type metadataAttachNetworkInterfaceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7314,11 +7218,7 @@ type AttachVolumeInput struct { // Availability Zone. VolumeId *string `type:"string" required:"true"` - metadataAttachVolumeInput `json:"-" xml:"-"` -} - -type metadataAttachVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7344,11 +7244,7 @@ type AttachVpnGatewayInput struct { // The ID of the virtual private gateway. VpnGatewayId *string `type:"string" required:"true"` - metadataAttachVpnGatewayInput `json:"-" xml:"-"` -} - -type metadataAttachVpnGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7365,11 +7261,7 @@ type AttachVpnGatewayOutput struct { // Information about the attachment. VpcAttachment *VpcAttachment `locationName:"attachment" type:"structure"` - metadataAttachVpnGatewayOutput `json:"-" xml:"-"` -} - -type metadataAttachVpnGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7387,11 +7279,7 @@ type AttributeBooleanValue struct { // Valid values are true or false. Value *bool `locationName:"value" type:"boolean"` - metadataAttributeBooleanValue `json:"-" xml:"-"` -} - -type metadataAttributeBooleanValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7409,11 +7297,7 @@ type AttributeValue struct { // Valid values are case-sensitive and vary by action. Value *string `locationName:"value" type:"string"` - metadataAttributeValue `json:"-" xml:"-"` -} - -type metadataAttributeValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7466,11 +7350,7 @@ type AuthorizeSecurityGroupEgressInput struct { // For the ICMP code number, use -1 to specify all ICMP codes for the ICMP type. ToPort *int64 `locationName:"toPort" type:"integer"` - metadataAuthorizeSecurityGroupEgressInput `json:"-" xml:"-"` -} - -type metadataAuthorizeSecurityGroupEgressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7484,11 +7364,7 @@ func (s AuthorizeSecurityGroupEgressInput) GoString() string { } type AuthorizeSecurityGroupEgressOutput struct { - metadataAuthorizeSecurityGroupEgressOutput `json:"-" xml:"-"` -} - -type metadataAuthorizeSecurityGroupEgressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7550,11 +7426,7 @@ type AuthorizeSecurityGroupIngressInput struct { // For the ICMP code number, use -1 to specify all ICMP codes for the ICMP type. ToPort *int64 `type:"integer"` - metadataAuthorizeSecurityGroupIngressInput `json:"-" xml:"-"` -} - -type metadataAuthorizeSecurityGroupIngressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7568,11 +7440,7 @@ func (s AuthorizeSecurityGroupIngressInput) GoString() string { } type AuthorizeSecurityGroupIngressOutput struct { - metadataAuthorizeSecurityGroupIngressOutput `json:"-" xml:"-"` -} - -type metadataAuthorizeSecurityGroupIngressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7599,11 +7467,7 @@ type AvailabilityZone struct { // The name of the Availability Zone. ZoneName *string `locationName:"zoneName" type:"string"` - metadataAvailabilityZone `json:"-" xml:"-"` -} - -type metadataAvailabilityZone struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7621,11 +7485,7 @@ type AvailabilityZoneMessage struct { // The message about the Availability Zone. Message *string `locationName:"message" type:"string"` - metadataAvailabilityZoneMessage `json:"-" xml:"-"` -} - -type metadataAvailabilityZoneMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7645,11 +7505,7 @@ type AvailableCapacity struct { // The number of vCPUs available on the Dedicated host. AvailableVCpus *int64 `locationName:"availableVCpus" type:"integer"` - metadataAvailableCapacity `json:"-" xml:"-"` -} - -type metadataAvailableCapacity struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7665,11 +7521,7 @@ func (s AvailableCapacity) GoString() string { type BlobAttributeValue struct { Value []byte `locationName:"value" type:"blob"` - metadataBlobAttributeValue `json:"-" xml:"-"` -} - -type metadataBlobAttributeValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7707,11 +7559,7 @@ type BlockDeviceMapping struct { // for the AMI. VirtualName *string `locationName:"virtualName" type:"string"` - metadataBlockDeviceMapping `json:"-" xml:"-"` -} - -type metadataBlockDeviceMapping struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7745,11 +7593,7 @@ type BundleInstanceInput struct { // a bucket that belongs to someone else, Amazon EC2 returns an error. Storage *Storage `type:"structure" required:"true"` - metadataBundleInstanceInput `json:"-" xml:"-"` -} - -type metadataBundleInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7766,11 +7610,7 @@ type BundleInstanceOutput struct { // Information about the bundle task. BundleTask *BundleTask `locationName:"bundleInstanceTask" type:"structure"` - metadataBundleInstanceOutput `json:"-" xml:"-"` -} - -type metadataBundleInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7809,11 +7649,7 @@ type BundleTask struct { // The time of the most recent update for the task. UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" timestampFormat:"iso8601"` - metadataBundleTask `json:"-" xml:"-"` -} - -type metadataBundleTask struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7834,11 +7670,7 @@ type BundleTaskError struct { // The error message. Message *string `locationName:"message" type:"string"` - metadataBundleTaskError `json:"-" xml:"-"` -} - -type metadataBundleTaskError struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7861,11 +7693,7 @@ type CancelBundleTaskInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataCancelBundleTaskInput `json:"-" xml:"-"` -} - -type metadataCancelBundleTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7882,11 +7710,7 @@ type CancelBundleTaskOutput struct { // Information about the bundle task. BundleTask *BundleTask `locationName:"bundleInstanceTask" type:"structure"` - metadataCancelBundleTaskOutput `json:"-" xml:"-"` -} - -type metadataCancelBundleTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7912,11 +7736,7 @@ type CancelConversionTaskInput struct { // The reason for canceling the conversion task. ReasonMessage *string `locationName:"reasonMessage" type:"string"` - metadataCancelConversionTaskInput `json:"-" xml:"-"` -} - -type metadataCancelConversionTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7930,11 +7750,7 @@ func (s CancelConversionTaskInput) GoString() string { } type CancelConversionTaskOutput struct { - metadataCancelConversionTaskOutput `json:"-" xml:"-"` -} - -type metadataCancelConversionTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7951,11 +7767,7 @@ type CancelExportTaskInput struct { // The ID of the export task. This is the ID returned by CreateInstanceExportTask. ExportTaskId *string `locationName:"exportTaskId" type:"string" required:"true"` - metadataCancelExportTaskInput `json:"-" xml:"-"` -} - -type metadataCancelExportTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7969,11 +7781,7 @@ func (s CancelExportTaskInput) GoString() string { } type CancelExportTaskOutput struct { - metadataCancelExportTaskOutput `json:"-" xml:"-"` -} - -type metadataCancelExportTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7999,11 +7807,7 @@ type CancelImportTaskInput struct { // The ID of the import image or import snapshot task to be canceled. ImportTaskId *string `type:"string"` - metadataCancelImportTaskInput `json:"-" xml:"-"` -} - -type metadataCancelImportTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8026,11 +7830,7 @@ type CancelImportTaskOutput struct { // The current state of the task being canceled. State *string `locationName:"state" type:"string"` - metadataCancelImportTaskOutput `json:"-" xml:"-"` -} - -type metadataCancelImportTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8047,11 +7847,7 @@ type CancelReservedInstancesListingInput struct { // The ID of the Reserved instance listing. ReservedInstancesListingId *string `locationName:"reservedInstancesListingId" type:"string" required:"true"` - metadataCancelReservedInstancesListingInput `json:"-" xml:"-"` -} - -type metadataCancelReservedInstancesListingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8068,11 +7864,7 @@ type CancelReservedInstancesListingOutput struct { // The Reserved instance listing. ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"` - metadataCancelReservedInstancesListingOutput `json:"-" xml:"-"` -} - -type metadataCancelReservedInstancesListingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8093,11 +7885,7 @@ type CancelSpotFleetRequestsError struct { // The description for the error code. Message *string `locationName:"message" type:"string" required:"true"` - metadataCancelSpotFleetRequestsError `json:"-" xml:"-"` -} - -type metadataCancelSpotFleetRequestsError struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8118,11 +7906,7 @@ type CancelSpotFleetRequestsErrorItem struct { // The ID of the Spot fleet request. SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - metadataCancelSpotFleetRequestsErrorItem `json:"-" xml:"-"` -} - -type metadataCancelSpotFleetRequestsErrorItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8150,11 +7934,7 @@ type CancelSpotFleetRequestsInput struct { // canceled successfully. TerminateInstances *bool `locationName:"terminateInstances" type:"boolean" required:"true"` - metadataCancelSpotFleetRequestsInput `json:"-" xml:"-"` -} - -type metadataCancelSpotFleetRequestsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8175,11 +7955,7 @@ type CancelSpotFleetRequestsOutput struct { // Information about the Spot fleet requests that are not successfully canceled. UnsuccessfulFleetRequests []*CancelSpotFleetRequestsErrorItem `locationName:"unsuccessfulFleetRequestSet" locationNameList:"item" type:"list"` - metadataCancelSpotFleetRequestsOutput `json:"-" xml:"-"` -} - -type metadataCancelSpotFleetRequestsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8203,11 +7979,7 @@ type CancelSpotFleetRequestsSuccessItem struct { // The ID of the Spot fleet request. SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - metadataCancelSpotFleetRequestsSuccessItem `json:"-" xml:"-"` -} - -type metadataCancelSpotFleetRequestsSuccessItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8231,11 +8003,7 @@ type CancelSpotInstanceRequestsInput struct { // One or more Spot instance request IDs. SpotInstanceRequestIds []*string `locationName:"SpotInstanceRequestId" locationNameList:"SpotInstanceRequestId" type:"list" required:"true"` - metadataCancelSpotInstanceRequestsInput `json:"-" xml:"-"` -} - -type metadataCancelSpotInstanceRequestsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8253,11 +8021,7 @@ type CancelSpotInstanceRequestsOutput struct { // One or more Spot instance requests. CancelledSpotInstanceRequests []*CancelledSpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"` - metadataCancelSpotInstanceRequestsOutput `json:"-" xml:"-"` -} - -type metadataCancelSpotInstanceRequestsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8278,11 +8042,7 @@ type CancelledSpotInstanceRequest struct { // The state of the Spot instance request. State *string `locationName:"state" type:"string" enum:"CancelSpotInstanceRequestState"` - metadataCancelledSpotInstanceRequest `json:"-" xml:"-"` -} - -type metadataCancelledSpotInstanceRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8309,11 +8069,7 @@ type ClassicLinkInstance struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataClassicLinkInstance `json:"-" xml:"-"` -} - -type metadataClassicLinkInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8340,11 +8096,7 @@ type ClientData struct { // The time that the disk upload starts. UploadStart *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataClientData `json:"-" xml:"-"` -} - -type metadataClientData struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8370,11 +8122,7 @@ type ConfirmProductInstanceInput struct { // The product code. This must be a product code that you own. ProductCode *string `type:"string" required:"true"` - metadataConfirmProductInstanceInput `json:"-" xml:"-"` -} - -type metadataConfirmProductInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8396,11 +8144,7 @@ type ConfirmProductInstanceOutput struct { // is owned by the requester and associated with the specified instance. Return *bool `locationName:"return" type:"boolean"` - metadataConfirmProductInstanceOutput `json:"-" xml:"-"` -} - -type metadataConfirmProductInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8439,11 +8183,7 @@ type ConversionTask struct { // Any tags assigned to the task. Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - metadataConversionTask `json:"-" xml:"-"` -} - -type metadataConversionTask struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8480,11 +8220,7 @@ type CopyImageInput struct { // The name of the region that contains the AMI to copy. SourceRegion *string `type:"string" required:"true"` - metadataCopyImageInput `json:"-" xml:"-"` -} - -type metadataCopyImageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8501,11 +8237,7 @@ type CopyImageOutput struct { // The ID of the new AMI. ImageId *string `locationName:"imageId" type:"string"` - metadataCopyImageOutput `json:"-" xml:"-"` -} - -type metadataCopyImageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8577,11 +8309,7 @@ type CopySnapshotInput struct { // The ID of the EBS snapshot to copy. SourceSnapshotId *string `type:"string" required:"true"` - metadataCopySnapshotInput `json:"-" xml:"-"` -} - -type metadataCopySnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8598,11 +8326,7 @@ type CopySnapshotOutput struct { // The ID of the new snapshot. SnapshotId *string `locationName:"snapshotId" type:"string"` - metadataCopySnapshotOutput `json:"-" xml:"-"` -} - -type metadataCopySnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8634,11 +8358,7 @@ type CreateCustomerGatewayInput struct { // The type of VPN connection that this customer gateway supports (ipsec.1). Type *string `type:"string" required:"true" enum:"GatewayType"` - metadataCreateCustomerGatewayInput `json:"-" xml:"-"` -} - -type metadataCreateCustomerGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8655,11 +8375,7 @@ type CreateCustomerGatewayOutput struct { // Information about the customer gateway. CustomerGateway *CustomerGateway `locationName:"customerGateway" type:"structure"` - metadataCreateCustomerGatewayOutput `json:"-" xml:"-"` -} - -type metadataCreateCustomerGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8682,11 +8398,7 @@ type CreateDhcpOptionsInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataCreateDhcpOptionsInput `json:"-" xml:"-"` -} - -type metadataCreateDhcpOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8703,11 +8415,7 @@ type CreateDhcpOptionsOutput struct { // A set of DHCP options. DhcpOptions *DhcpOptions `locationName:"dhcpOptions" type:"structure"` - metadataCreateDhcpOptionsOutput `json:"-" xml:"-"` -} - -type metadataCreateDhcpOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8741,11 +8449,7 @@ type CreateFlowLogsInput struct { // The type of traffic to log. TrafficType *string `type:"string" required:"true" enum:"TrafficType"` - metadataCreateFlowLogsInput `json:"-" xml:"-"` -} - -type metadataCreateFlowLogsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8769,11 +8473,7 @@ type CreateFlowLogsOutput struct { // Information about the flow logs that could not be created successfully. Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` - metadataCreateFlowLogsOutput `json:"-" xml:"-"` -} - -type metadataCreateFlowLogsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8816,11 +8516,7 @@ type CreateImageInput struct { // system integrity on the created image can't be guaranteed. NoReboot *bool `locationName:"noReboot" type:"boolean"` - metadataCreateImageInput `json:"-" xml:"-"` -} - -type metadataCreateImageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8837,11 +8533,7 @@ type CreateImageOutput struct { // The ID of the new AMI. ImageId *string `locationName:"imageId" type:"string"` - metadataCreateImageOutput `json:"-" xml:"-"` -} - -type metadataCreateImageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8868,11 +8560,7 @@ type CreateInstanceExportTaskInput struct { // The target virtualization environment. TargetEnvironment *string `locationName:"targetEnvironment" type:"string" enum:"ExportEnvironment"` - metadataCreateInstanceExportTaskInput `json:"-" xml:"-"` -} - -type metadataCreateInstanceExportTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8889,11 +8577,7 @@ type CreateInstanceExportTaskOutput struct { // Information about the instance export task. ExportTask *ExportTask `locationName:"exportTask" type:"structure"` - metadataCreateInstanceExportTaskOutput `json:"-" xml:"-"` -} - -type metadataCreateInstanceExportTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8913,11 +8597,7 @@ type CreateInternetGatewayInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataCreateInternetGatewayInput `json:"-" xml:"-"` -} - -type metadataCreateInternetGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8934,11 +8614,7 @@ type CreateInternetGatewayOutput struct { // Information about the Internet gateway. InternetGateway *InternetGateway `locationName:"internetGateway" type:"structure"` - metadataCreateInternetGatewayOutput `json:"-" xml:"-"` -} - -type metadataCreateInternetGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8963,11 +8639,7 @@ type CreateKeyPairInput struct { // Constraints: Up to 255 ASCII characters KeyName *string `type:"string" required:"true"` - metadataCreateKeyPairInput `json:"-" xml:"-"` -} - -type metadataCreateKeyPairInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8991,11 +8663,7 @@ type CreateKeyPairOutput struct { // The name of the key pair. KeyName *string `locationName:"keyName" type:"string"` - metadataCreateKeyPairOutput `json:"-" xml:"-"` -} - -type metadataCreateKeyPairOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9044,11 +8712,7 @@ type CreateNetworkAclEntryInput struct { // Constraints: Positive integer from 1 to 32766 RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"` - metadataCreateNetworkAclEntryInput `json:"-" xml:"-"` -} - -type metadataCreateNetworkAclEntryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9062,11 +8726,7 @@ func (s CreateNetworkAclEntryInput) GoString() string { } type CreateNetworkAclEntryOutput struct { - metadataCreateNetworkAclEntryOutput `json:"-" xml:"-"` -} - -type metadataCreateNetworkAclEntryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9089,11 +8749,7 @@ type CreateNetworkAclInput struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataCreateNetworkAclInput `json:"-" xml:"-"` -} - -type metadataCreateNetworkAclInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9110,11 +8766,7 @@ type CreateNetworkAclOutput struct { // Information about the network ACL. NetworkAcl *NetworkAcl `locationName:"networkAcl" type:"structure"` - metadataCreateNetworkAclOutput `json:"-" xml:"-"` -} - -type metadataCreateNetworkAclOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9163,11 +8815,7 @@ type CreateNetworkInterfaceInput struct { // The ID of the subnet to associate with the network interface. SubnetId *string `locationName:"subnetId" type:"string" required:"true"` - metadataCreateNetworkInterfaceInput `json:"-" xml:"-"` -} - -type metadataCreateNetworkInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9184,11 +8832,7 @@ type CreateNetworkInterfaceOutput struct { // Information about the network interface. NetworkInterface *NetworkInterface `locationName:"networkInterface" type:"structure"` - metadataCreateNetworkInterfaceOutput `json:"-" xml:"-"` -} - -type metadataCreateNetworkInterfaceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9216,11 +8860,7 @@ type CreatePlacementGroupInput struct { // The placement strategy. Strategy *string `locationName:"strategy" type:"string" required:"true" enum:"PlacementStrategy"` - metadataCreatePlacementGroupInput `json:"-" xml:"-"` -} - -type metadataCreatePlacementGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9234,11 +8874,7 @@ func (s CreatePlacementGroupInput) GoString() string { } type CreatePlacementGroupOutput struct { - metadataCreatePlacementGroupOutput `json:"-" xml:"-"` -} - -type metadataCreatePlacementGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9270,11 +8906,7 @@ type CreateReservedInstancesListingInput struct { // The ID of the active Reserved instance. ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string" required:"true"` - metadataCreateReservedInstancesListingInput `json:"-" xml:"-"` -} - -type metadataCreateReservedInstancesListingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9291,11 +8923,7 @@ type CreateReservedInstancesListingOutput struct { // Information about the Reserved instance listing. ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"` - metadataCreateReservedInstancesListingOutput `json:"-" xml:"-"` -} - -type metadataCreateReservedInstancesListingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9336,11 +8964,7 @@ type CreateRouteInput struct { // The ID of a VPC peering connection. VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` - metadataCreateRouteInput `json:"-" xml:"-"` -} - -type metadataCreateRouteInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9357,11 +8981,7 @@ type CreateRouteOutput struct { // Returns true if the request succeeds; otherwise, it returns an error. Return *bool `locationName:"return" type:"boolean"` - metadataCreateRouteOutput `json:"-" xml:"-"` -} - -type metadataCreateRouteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9384,11 +9004,7 @@ type CreateRouteTableInput struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataCreateRouteTableInput `json:"-" xml:"-"` -} - -type metadataCreateRouteTableInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9405,11 +9021,7 @@ type CreateRouteTableOutput struct { // Information about the route table. RouteTable *RouteTable `locationName:"routeTable" type:"structure"` - metadataCreateRouteTableOutput `json:"-" xml:"-"` -} - -type metadataCreateRouteTableOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9450,11 +9062,7 @@ type CreateSecurityGroupInput struct { // [EC2-VPC] The ID of the VPC. Required for EC2-VPC. VpcId *string `type:"string"` - metadataCreateSecurityGroupInput `json:"-" xml:"-"` -} - -type metadataCreateSecurityGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9471,11 +9079,7 @@ type CreateSecurityGroupOutput struct { // The ID of the security group. GroupId *string `locationName:"groupId" type:"string"` - metadataCreateSecurityGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateSecurityGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9501,11 +9105,7 @@ type CreateSnapshotInput struct { // The ID of the EBS volume. VolumeId *string `type:"string" required:"true"` - metadataCreateSnapshotInput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9532,11 +9132,7 @@ type CreateSpotDatafeedSubscriptionInput struct { // A prefix for the data feed file names. Prefix *string `locationName:"prefix" type:"string"` - metadataCreateSpotDatafeedSubscriptionInput `json:"-" xml:"-"` -} - -type metadataCreateSpotDatafeedSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9554,11 +9150,7 @@ type CreateSpotDatafeedSubscriptionOutput struct { // The Spot instance data feed subscription. SpotDatafeedSubscription *SpotDatafeedSubscription `locationName:"spotDatafeedSubscription" type:"structure"` - metadataCreateSpotDatafeedSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataCreateSpotDatafeedSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9590,11 +9182,7 @@ type CreateSubnetInput struct { // The ID of the VPC. VpcId *string `type:"string" required:"true"` - metadataCreateSubnetInput `json:"-" xml:"-"` -} - -type metadataCreateSubnetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9611,11 +9199,7 @@ type CreateSubnetOutput struct { // Information about the subnet. Subnet *Subnet `locationName:"subnet" type:"structure"` - metadataCreateSubnetOutput `json:"-" xml:"-"` -} - -type metadataCreateSubnetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9643,11 +9227,7 @@ type CreateTagsInput struct { // the value to an empty string. Tags []*Tag `locationName:"Tag" locationNameList:"item" type:"list" required:"true"` - metadataCreateTagsInput `json:"-" xml:"-"` -} - -type metadataCreateTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9661,11 +9241,7 @@ func (s CreateTagsInput) GoString() string { } type CreateTagsOutput struct { - metadataCreateTagsOutput `json:"-" xml:"-"` -} - -type metadataCreateTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9733,11 +9309,7 @@ type CreateVolumeInput struct { // Default: standard VolumeType *string `type:"string" enum:"VolumeType"` - metadataCreateVolumeInput `json:"-" xml:"-"` -} - -type metadataCreateVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9761,11 +9333,7 @@ type CreateVolumePermission struct { // list of create volume permissions. UserId *string `locationName:"userId" type:"string"` - metadataCreateVolumePermission `json:"-" xml:"-"` -} - -type metadataCreateVolumePermission struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9788,11 +9356,7 @@ type CreateVolumePermissionModifications struct { // volume permissions. Remove []*CreateVolumePermission `locationNameList:"item" type:"list"` - metadataCreateVolumePermissionModifications `json:"-" xml:"-"` -} - -type metadataCreateVolumePermissionModifications struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9831,11 +9395,7 @@ type CreateVpcEndpointInput struct { // The ID of the VPC in which the endpoint will be used. VpcId *string `type:"string" required:"true"` - metadataCreateVpcEndpointInput `json:"-" xml:"-"` -} - -type metadataCreateVpcEndpointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9856,11 +9416,7 @@ type CreateVpcEndpointOutput struct { // Information about the endpoint. VpcEndpoint *VpcEndpoint `locationName:"vpcEndpoint" type:"structure"` - metadataCreateVpcEndpointOutput `json:"-" xml:"-"` -} - -type metadataCreateVpcEndpointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9895,11 +9451,7 @@ type CreateVpcInput struct { // Default: default InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"` - metadataCreateVpcInput `json:"-" xml:"-"` -} - -type metadataCreateVpcInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9916,11 +9468,7 @@ type CreateVpcOutput struct { // Information about the VPC. Vpc *Vpc `locationName:"vpc" type:"structure"` - metadataCreateVpcOutput `json:"-" xml:"-"` -} - -type metadataCreateVpcOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9951,11 +9499,7 @@ type CreateVpcPeeringConnectionInput struct { // The ID of the requester VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataCreateVpcPeeringConnectionInput `json:"-" xml:"-"` -} - -type metadataCreateVpcPeeringConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9972,11 +9516,7 @@ type CreateVpcPeeringConnectionOutput struct { // Information about the VPC peering connection. VpcPeeringConnection *VpcPeeringConnection `locationName:"vpcPeeringConnection" type:"structure"` - metadataCreateVpcPeeringConnectionOutput `json:"-" xml:"-"` -} - -type metadataCreateVpcPeeringConnectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10012,11 +9552,7 @@ type CreateVpnConnectionInput struct { // The ID of the virtual private gateway. VpnGatewayId *string `type:"string" required:"true"` - metadataCreateVpnConnectionInput `json:"-" xml:"-"` -} - -type metadataCreateVpnConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10033,11 +9569,7 @@ type CreateVpnConnectionOutput struct { // Information about the VPN connection. VpnConnection *VpnConnection `locationName:"vpnConnection" type:"structure"` - metadataCreateVpnConnectionOutput `json:"-" xml:"-"` -} - -type metadataCreateVpnConnectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10057,11 +9589,7 @@ type CreateVpnConnectionRouteInput struct { // The ID of the VPN connection. VpnConnectionId *string `type:"string" required:"true"` - metadataCreateVpnConnectionRouteInput `json:"-" xml:"-"` -} - -type metadataCreateVpnConnectionRouteInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10075,11 +9603,7 @@ func (s CreateVpnConnectionRouteInput) GoString() string { } type CreateVpnConnectionRouteOutput struct { - metadataCreateVpnConnectionRouteOutput `json:"-" xml:"-"` -} - -type metadataCreateVpnConnectionRouteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10105,11 +9629,7 @@ type CreateVpnGatewayInput struct { // The type of VPN connection this virtual private gateway supports. Type *string `type:"string" required:"true" enum:"GatewayType"` - metadataCreateVpnGatewayInput `json:"-" xml:"-"` -} - -type metadataCreateVpnGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10126,11 +9646,7 @@ type CreateVpnGatewayOutput struct { // Information about the virtual private gateway. VpnGateway *VpnGateway `locationName:"vpnGateway" type:"structure"` - metadataCreateVpnGatewayOutput `json:"-" xml:"-"` -} - -type metadataCreateVpnGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10165,11 +9681,7 @@ type CustomerGateway struct { // The type of VPN connection the customer gateway supports (ipsec.1). Type *string `locationName:"type" type:"string"` - metadataCustomerGateway `json:"-" xml:"-"` -} - -type metadataCustomerGateway struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10192,11 +9704,7 @@ type DeleteCustomerGatewayInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataDeleteCustomerGatewayInput `json:"-" xml:"-"` -} - -type metadataDeleteCustomerGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10210,11 +9718,7 @@ func (s DeleteCustomerGatewayInput) GoString() string { } type DeleteCustomerGatewayOutput struct { - metadataDeleteCustomerGatewayOutput `json:"-" xml:"-"` -} - -type metadataDeleteCustomerGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10237,11 +9741,7 @@ type DeleteDhcpOptionsInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataDeleteDhcpOptionsInput `json:"-" xml:"-"` -} - -type metadataDeleteDhcpOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10255,11 +9755,7 @@ func (s DeleteDhcpOptionsInput) GoString() string { } type DeleteDhcpOptionsOutput struct { - metadataDeleteDhcpOptionsOutput `json:"-" xml:"-"` -} - -type metadataDeleteDhcpOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10276,11 +9772,7 @@ type DeleteFlowLogsInput struct { // One or more flow log IDs. FlowLogIds []*string `locationName:"FlowLogId" locationNameList:"item" type:"list" required:"true"` - metadataDeleteFlowLogsInput `json:"-" xml:"-"` -} - -type metadataDeleteFlowLogsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10297,11 +9789,7 @@ type DeleteFlowLogsOutput struct { // Information about the flow logs that could not be deleted successfully. Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` - metadataDeleteFlowLogsOutput `json:"-" xml:"-"` -} - -type metadataDeleteFlowLogsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10324,11 +9812,7 @@ type DeleteInternetGatewayInput struct { // The ID of the Internet gateway. InternetGatewayId *string `locationName:"internetGatewayId" type:"string" required:"true"` - metadataDeleteInternetGatewayInput `json:"-" xml:"-"` -} - -type metadataDeleteInternetGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10342,11 +9826,7 @@ func (s DeleteInternetGatewayInput) GoString() string { } type DeleteInternetGatewayOutput struct { - metadataDeleteInternetGatewayOutput `json:"-" xml:"-"` -} - -type metadataDeleteInternetGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10369,11 +9849,7 @@ type DeleteKeyPairInput struct { // The name of the key pair. KeyName *string `type:"string" required:"true"` - metadataDeleteKeyPairInput `json:"-" xml:"-"` -} - -type metadataDeleteKeyPairInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10387,11 +9863,7 @@ func (s DeleteKeyPairInput) GoString() string { } type DeleteKeyPairOutput struct { - metadataDeleteKeyPairOutput `json:"-" xml:"-"` -} - -type metadataDeleteKeyPairOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10420,11 +9892,7 @@ type DeleteNetworkAclEntryInput struct { // The rule number of the entry to delete. RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"` - metadataDeleteNetworkAclEntryInput `json:"-" xml:"-"` -} - -type metadataDeleteNetworkAclEntryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10438,11 +9906,7 @@ func (s DeleteNetworkAclEntryInput) GoString() string { } type DeleteNetworkAclEntryOutput struct { - metadataDeleteNetworkAclEntryOutput `json:"-" xml:"-"` -} - -type metadataDeleteNetworkAclEntryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10465,11 +9929,7 @@ type DeleteNetworkAclInput struct { // The ID of the network ACL. NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"` - metadataDeleteNetworkAclInput `json:"-" xml:"-"` -} - -type metadataDeleteNetworkAclInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10483,11 +9943,7 @@ func (s DeleteNetworkAclInput) GoString() string { } type DeleteNetworkAclOutput struct { - metadataDeleteNetworkAclOutput `json:"-" xml:"-"` -} - -type metadataDeleteNetworkAclOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10510,11 +9966,7 @@ type DeleteNetworkInterfaceInput struct { // The ID of the network interface. NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` - metadataDeleteNetworkInterfaceInput `json:"-" xml:"-"` -} - -type metadataDeleteNetworkInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10528,11 +9980,7 @@ func (s DeleteNetworkInterfaceInput) GoString() string { } type DeleteNetworkInterfaceOutput struct { - metadataDeleteNetworkInterfaceOutput `json:"-" xml:"-"` -} - -type metadataDeleteNetworkInterfaceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10555,11 +10003,7 @@ type DeletePlacementGroupInput struct { // The name of the placement group. GroupName *string `locationName:"groupName" type:"string" required:"true"` - metadataDeletePlacementGroupInput `json:"-" xml:"-"` -} - -type metadataDeletePlacementGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10573,11 +10017,7 @@ func (s DeletePlacementGroupInput) GoString() string { } type DeletePlacementGroupOutput struct { - metadataDeletePlacementGroupOutput `json:"-" xml:"-"` -} - -type metadataDeletePlacementGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10604,11 +10044,7 @@ type DeleteRouteInput struct { // The ID of the route table. RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` - metadataDeleteRouteInput `json:"-" xml:"-"` -} - -type metadataDeleteRouteInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10622,11 +10058,7 @@ func (s DeleteRouteInput) GoString() string { } type DeleteRouteOutput struct { - metadataDeleteRouteOutput `json:"-" xml:"-"` -} - -type metadataDeleteRouteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10649,11 +10081,7 @@ type DeleteRouteTableInput struct { // The ID of the route table. RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` - metadataDeleteRouteTableInput `json:"-" xml:"-"` -} - -type metadataDeleteRouteTableInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10667,11 +10095,7 @@ func (s DeleteRouteTableInput) GoString() string { } type DeleteRouteTableOutput struct { - metadataDeleteRouteTableOutput `json:"-" xml:"-"` -} - -type metadataDeleteRouteTableOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10698,11 +10122,7 @@ type DeleteSecurityGroupInput struct { // either the security group name or the security group ID. GroupName *string `type:"string"` - metadataDeleteSecurityGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteSecurityGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10716,11 +10136,7 @@ func (s DeleteSecurityGroupInput) GoString() string { } type DeleteSecurityGroupOutput struct { - metadataDeleteSecurityGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteSecurityGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10743,11 +10159,7 @@ type DeleteSnapshotInput struct { // The ID of the EBS snapshot. SnapshotId *string `type:"string" required:"true"` - metadataDeleteSnapshotInput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10761,11 +10173,7 @@ func (s DeleteSnapshotInput) GoString() string { } type DeleteSnapshotOutput struct { - metadataDeleteSnapshotOutput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10786,11 +10194,7 @@ type DeleteSpotDatafeedSubscriptionInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataDeleteSpotDatafeedSubscriptionInput `json:"-" xml:"-"` -} - -type metadataDeleteSpotDatafeedSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10804,11 +10208,7 @@ func (s DeleteSpotDatafeedSubscriptionInput) GoString() string { } type DeleteSpotDatafeedSubscriptionOutput struct { - metadataDeleteSpotDatafeedSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataDeleteSpotDatafeedSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10831,11 +10231,7 @@ type DeleteSubnetInput struct { // The ID of the subnet. SubnetId *string `type:"string" required:"true"` - metadataDeleteSubnetInput `json:"-" xml:"-"` -} - -type metadataDeleteSubnetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10849,11 +10245,7 @@ func (s DeleteSubnetInput) GoString() string { } type DeleteSubnetOutput struct { - metadataDeleteSubnetOutput `json:"-" xml:"-"` -} - -type metadataDeleteSubnetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10882,11 +10274,7 @@ type DeleteTagsInput struct { // string as the value, we delete the key only if its value is an empty string. Tags []*Tag `locationName:"tag" locationNameList:"item" type:"list"` - metadataDeleteTagsInput `json:"-" xml:"-"` -} - -type metadataDeleteTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10900,11 +10288,7 @@ func (s DeleteTagsInput) GoString() string { } type DeleteTagsOutput struct { - metadataDeleteTagsOutput `json:"-" xml:"-"` -} - -type metadataDeleteTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10927,11 +10311,7 @@ type DeleteVolumeInput struct { // The ID of the volume. VolumeId *string `type:"string" required:"true"` - metadataDeleteVolumeInput `json:"-" xml:"-"` -} - -type metadataDeleteVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10945,11 +10325,7 @@ func (s DeleteVolumeInput) GoString() string { } type DeleteVolumeOutput struct { - metadataDeleteVolumeOutput `json:"-" xml:"-"` -} - -type metadataDeleteVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10972,11 +10348,7 @@ type DeleteVpcEndpointsInput struct { // One or more endpoint IDs. VpcEndpointIds []*string `locationName:"VpcEndpointId" locationNameList:"item" type:"list" required:"true"` - metadataDeleteVpcEndpointsInput `json:"-" xml:"-"` -} - -type metadataDeleteVpcEndpointsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10993,11 +10365,7 @@ type DeleteVpcEndpointsOutput struct { // Information about the endpoints that were not successfully deleted. Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` - metadataDeleteVpcEndpointsOutput `json:"-" xml:"-"` -} - -type metadataDeleteVpcEndpointsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11020,11 +10388,7 @@ type DeleteVpcInput struct { // The ID of the VPC. VpcId *string `type:"string" required:"true"` - metadataDeleteVpcInput `json:"-" xml:"-"` -} - -type metadataDeleteVpcInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11038,11 +10402,7 @@ func (s DeleteVpcInput) GoString() string { } type DeleteVpcOutput struct { - metadataDeleteVpcOutput `json:"-" xml:"-"` -} - -type metadataDeleteVpcOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11065,11 +10425,7 @@ type DeleteVpcPeeringConnectionInput struct { // The ID of the VPC peering connection. VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string" required:"true"` - metadataDeleteVpcPeeringConnectionInput `json:"-" xml:"-"` -} - -type metadataDeleteVpcPeeringConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11086,11 +10442,7 @@ type DeleteVpcPeeringConnectionOutput struct { // Returns true if the request succeeds; otherwise, it returns an error. Return *bool `locationName:"return" type:"boolean"` - metadataDeleteVpcPeeringConnectionOutput `json:"-" xml:"-"` -} - -type metadataDeleteVpcPeeringConnectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11113,11 +10465,7 @@ type DeleteVpnConnectionInput struct { // The ID of the VPN connection. VpnConnectionId *string `type:"string" required:"true"` - metadataDeleteVpnConnectionInput `json:"-" xml:"-"` -} - -type metadataDeleteVpnConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11131,11 +10479,7 @@ func (s DeleteVpnConnectionInput) GoString() string { } type DeleteVpnConnectionOutput struct { - metadataDeleteVpnConnectionOutput `json:"-" xml:"-"` -} - -type metadataDeleteVpnConnectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11155,11 +10499,7 @@ type DeleteVpnConnectionRouteInput struct { // The ID of the VPN connection. VpnConnectionId *string `type:"string" required:"true"` - metadataDeleteVpnConnectionRouteInput `json:"-" xml:"-"` -} - -type metadataDeleteVpnConnectionRouteInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11173,11 +10513,7 @@ func (s DeleteVpnConnectionRouteInput) GoString() string { } type DeleteVpnConnectionRouteOutput struct { - metadataDeleteVpnConnectionRouteOutput `json:"-" xml:"-"` -} - -type metadataDeleteVpnConnectionRouteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11200,11 +10536,7 @@ type DeleteVpnGatewayInput struct { // The ID of the virtual private gateway. VpnGatewayId *string `type:"string" required:"true"` - metadataDeleteVpnGatewayInput `json:"-" xml:"-"` -} - -type metadataDeleteVpnGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11218,11 +10550,7 @@ func (s DeleteVpnGatewayInput) GoString() string { } type DeleteVpnGatewayOutput struct { - metadataDeleteVpnGatewayOutput `json:"-" xml:"-"` -} - -type metadataDeleteVpnGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11245,11 +10573,7 @@ type DeregisterImageInput struct { // The ID of the AMI. ImageId *string `type:"string" required:"true"` - metadataDeregisterImageInput `json:"-" xml:"-"` -} - -type metadataDeregisterImageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11263,11 +10587,7 @@ func (s DeregisterImageInput) GoString() string { } type DeregisterImageOutput struct { - metadataDeregisterImageOutput `json:"-" xml:"-"` -} - -type metadataDeregisterImageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11290,11 +10610,7 @@ type DescribeAccountAttributesInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataDescribeAccountAttributesInput `json:"-" xml:"-"` -} - -type metadataDescribeAccountAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11311,11 +10627,7 @@ type DescribeAccountAttributesOutput struct { // Information about one or more account attributes. AccountAttributes []*AccountAttribute `locationName:"accountAttributeSet" locationNameList:"item" type:"list"` - metadataDescribeAccountAttributesOutput `json:"-" xml:"-"` -} - -type metadataDescribeAccountAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11368,11 +10680,7 @@ type DescribeAddressesInput struct { // Default: Describes all your Elastic IP addresses. PublicIps []*string `locationName:"PublicIp" locationNameList:"PublicIp" type:"list"` - metadataDescribeAddressesInput `json:"-" xml:"-"` -} - -type metadataDescribeAddressesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11389,11 +10697,7 @@ type DescribeAddressesOutput struct { // Information about one or more Elastic IP addresses. Addresses []*Address `locationName:"addressesSet" locationNameList:"item" type:"list"` - metadataDescribeAddressesOutput `json:"-" xml:"-"` -} - -type metadataDescribeAddressesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11429,11 +10733,7 @@ type DescribeAvailabilityZonesInput struct { // The names of one or more Availability Zones. ZoneNames []*string `locationName:"ZoneName" locationNameList:"ZoneName" type:"list"` - metadataDescribeAvailabilityZonesInput `json:"-" xml:"-"` -} - -type metadataDescribeAvailabilityZonesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11450,11 +10750,7 @@ type DescribeAvailabilityZonesOutput struct { // Information about one or more Availability Zones. AvailabilityZones []*AvailabilityZone `locationName:"availabilityZoneInfo" locationNameList:"item" type:"list"` - metadataDescribeAvailabilityZonesOutput `json:"-" xml:"-"` -} - -type metadataDescribeAvailabilityZonesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11504,11 +10800,7 @@ type DescribeBundleTasksInput struct { // update-time - The time of the most recent update for the task. Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - metadataDescribeBundleTasksInput `json:"-" xml:"-"` -} - -type metadataDescribeBundleTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11525,11 +10817,7 @@ type DescribeBundleTasksOutput struct { // Information about one or more bundle tasks. BundleTasks []*BundleTask `locationName:"bundleInstanceTasksSet" locationNameList:"item" type:"list"` - metadataDescribeBundleTasksOutput `json:"-" xml:"-"` -} - -type metadataDescribeBundleTasksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11586,11 +10874,7 @@ type DescribeClassicLinkInstancesInput struct { // The token to retrieve the next page of results. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeClassicLinkInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeClassicLinkInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11611,11 +10895,7 @@ type DescribeClassicLinkInstancesOutput struct { // when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeClassicLinkInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeClassicLinkInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11641,11 +10921,7 @@ type DescribeConversionTasksInput struct { // One or more filters. Filters []*Filter `locationName:"filter" locationNameList:"Filter" type:"list"` - metadataDescribeConversionTasksInput `json:"-" xml:"-"` -} - -type metadataDescribeConversionTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11662,11 +10938,7 @@ type DescribeConversionTasksOutput struct { // Information about the conversion tasks. ConversionTasks []*ConversionTask `locationName:"conversionTasks" locationNameList:"item" type:"list"` - metadataDescribeConversionTasksOutput `json:"-" xml:"-"` -} - -type metadataDescribeConversionTasksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11720,11 +10992,7 @@ type DescribeCustomerGatewaysInput struct { // independent of the tag-key filter. Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - metadataDescribeCustomerGatewaysInput `json:"-" xml:"-"` -} - -type metadataDescribeCustomerGatewaysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11741,11 +11009,7 @@ type DescribeCustomerGatewaysOutput struct { // Information about one or more customer gateways. CustomerGateways []*CustomerGateway `locationName:"customerGatewaySet" locationNameList:"item" type:"list"` - metadataDescribeCustomerGatewaysOutput `json:"-" xml:"-"` -} - -type metadataDescribeCustomerGatewaysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11791,11 +11055,7 @@ type DescribeDhcpOptionsInput struct { // independent of the tag-key filter. Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - metadataDescribeDhcpOptionsInput `json:"-" xml:"-"` -} - -type metadataDescribeDhcpOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11812,11 +11072,7 @@ type DescribeDhcpOptionsOutput struct { // Information about one or more DHCP options sets. DhcpOptions []*DhcpOptions `locationName:"dhcpOptionsSet" locationNameList:"item" type:"list"` - metadataDescribeDhcpOptionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDhcpOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11833,11 +11089,7 @@ type DescribeExportTasksInput struct { // One or more export task IDs. ExportTaskIds []*string `locationName:"exportTaskId" locationNameList:"ExportTaskId" type:"list"` - metadataDescribeExportTasksInput `json:"-" xml:"-"` -} - -type metadataDescribeExportTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11854,11 +11106,7 @@ type DescribeExportTasksOutput struct { // Information about the export tasks. ExportTasks []*ExportTask `locationName:"exportTaskSet" locationNameList:"item" type:"list"` - metadataDescribeExportTasksOutput `json:"-" xml:"-"` -} - -type metadataDescribeExportTasksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11898,11 +11146,7 @@ type DescribeFlowLogsInput struct { // The token to retrieve the next page of results. NextToken *string `type:"string"` - metadataDescribeFlowLogsInput `json:"-" xml:"-"` -} - -type metadataDescribeFlowLogsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11923,11 +11167,7 @@ type DescribeFlowLogsOutput struct { // when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeFlowLogsOutput `json:"-" xml:"-"` -} - -type metadataDescribeFlowLogsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11972,11 +11212,7 @@ type DescribeHostsInput struct { // The token to retrieve the next page of results. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeHostsInput `json:"-" xml:"-"` -} - -type metadataDescribeHostsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11997,11 +11233,7 @@ type DescribeHostsOutput struct { // when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeHostsOutput `json:"-" xml:"-"` -} - -type metadataDescribeHostsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12018,11 +11250,7 @@ type DescribeIdFormatInput struct { // The type of resource. Resource *string `type:"string"` - metadataDescribeIdFormatInput `json:"-" xml:"-"` -} - -type metadataDescribeIdFormatInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12039,11 +11267,7 @@ type DescribeIdFormatOutput struct { // Information about the ID format for the resource. Statuses []*IdFormat `locationName:"statusSet" locationNameList:"item" type:"list"` - metadataDescribeIdFormatOutput `json:"-" xml:"-"` -} - -type metadataDescribeIdFormatOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12073,11 +11297,7 @@ type DescribeImageAttributeInput struct { // The ID of the AMI. ImageId *string `type:"string" required:"true"` - metadataDescribeImageAttributeInput `json:"-" xml:"-"` -} - -type metadataDescribeImageAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12116,11 +11336,7 @@ type DescribeImageAttributeOutput struct { // The value to use for a resource attribute. SriovNetSupport *AttributeValue `locationName:"sriovNetSupport" type:"structure"` - metadataDescribeImageAttributeOutput `json:"-" xml:"-"` -} - -type metadataDescribeImageAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12227,11 +11443,7 @@ type DescribeImagesInput struct { // you have launch permissions, regardless of ownership. Owners []*string `locationName:"Owner" locationNameList:"Owner" type:"list"` - metadataDescribeImagesInput `json:"-" xml:"-"` -} - -type metadataDescribeImagesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12248,11 +11460,7 @@ type DescribeImagesOutput struct { // Information about one or more images. Images []*Image `locationName:"imagesSet" locationNameList:"item" type:"list"` - metadataDescribeImagesOutput `json:"-" xml:"-"` -} - -type metadataDescribeImagesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12284,11 +11492,7 @@ type DescribeImportImageTasksInput struct { // A token that indicates the next page of results. NextToken *string `type:"string"` - metadataDescribeImportImageTasksInput `json:"-" xml:"-"` -} - -type metadataDescribeImportImageTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12310,11 +11514,7 @@ type DescribeImportImageTasksOutput struct { // there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeImportImageTasksOutput `json:"-" xml:"-"` -} - -type metadataDescribeImportImageTasksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12346,11 +11546,7 @@ type DescribeImportSnapshotTasksInput struct { // A token that indicates the next page of results. NextToken *string `type:"string"` - metadataDescribeImportSnapshotTasksInput `json:"-" xml:"-"` -} - -type metadataDescribeImportSnapshotTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12372,11 +11568,7 @@ type DescribeImportSnapshotTasksOutput struct { // there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeImportSnapshotTasksOutput `json:"-" xml:"-"` -} - -type metadataDescribeImportSnapshotTasksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12402,11 +11594,7 @@ type DescribeInstanceAttributeInput struct { // The ID of the instance. InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - metadataDescribeInstanceAttributeInput `json:"-" xml:"-"` -} - -type metadataDescribeInstanceAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12467,11 +11655,7 @@ type DescribeInstanceAttributeOutput struct { // The Base64-encoded MIME user data. UserData *AttributeValue `locationName:"userData" type:"structure"` - metadataDescribeInstanceAttributeOutput `json:"-" xml:"-"` -} - -type metadataDescribeInstanceAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12552,11 +11736,7 @@ type DescribeInstanceStatusInput struct { // The token to retrieve the next page of results. NextToken *string `type:"string"` - metadataDescribeInstanceStatusInput `json:"-" xml:"-"` -} - -type metadataDescribeInstanceStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12577,11 +11757,7 @@ type DescribeInstanceStatusOutput struct { // when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeInstanceStatusOutput `json:"-" xml:"-"` -} - -type metadataDescribeInstanceStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12842,11 +12018,7 @@ type DescribeInstancesInput struct { // The token to request the next page of results. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12867,11 +12039,7 @@ type DescribeInstancesOutput struct { // Zero or more reservations. Reservations []*Reservation `locationName:"reservationSet" locationNameList:"item" type:"list"` - metadataDescribeInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12918,11 +12086,7 @@ type DescribeInternetGatewaysInput struct { // Default: Describes all your Internet gateways. InternetGatewayIds []*string `locationName:"internetGatewayId" locationNameList:"item" type:"list"` - metadataDescribeInternetGatewaysInput `json:"-" xml:"-"` -} - -type metadataDescribeInternetGatewaysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12939,11 +12103,7 @@ type DescribeInternetGatewaysOutput struct { // Information about one or more Internet gateways. InternetGateways []*InternetGateway `locationName:"internetGatewaySet" locationNameList:"item" type:"list"` - metadataDescribeInternetGatewaysOutput `json:"-" xml:"-"` -} - -type metadataDescribeInternetGatewaysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12975,11 +12135,7 @@ type DescribeKeyPairsInput struct { // Default: Describes all your key pairs. KeyNames []*string `locationName:"KeyName" locationNameList:"KeyName" type:"list"` - metadataDescribeKeyPairsInput `json:"-" xml:"-"` -} - -type metadataDescribeKeyPairsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -12996,11 +12152,7 @@ type DescribeKeyPairsOutput struct { // Information about one or more key pairs. KeyPairs []*KeyPairInfo `locationName:"keySet" locationNameList:"item" type:"list"` - metadataDescribeKeyPairsOutput `json:"-" xml:"-"` -} - -type metadataDescribeKeyPairsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13039,11 +12191,7 @@ type DescribeMovingAddressesInput struct { // One or more Elastic IP addresses. PublicIps []*string `locationName:"publicIp" locationNameList:"item" type:"list"` - metadataDescribeMovingAddressesInput `json:"-" xml:"-"` -} - -type metadataDescribeMovingAddressesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13064,11 +12212,7 @@ type DescribeMovingAddressesOutput struct { // when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeMovingAddressesOutput `json:"-" xml:"-"` -} - -type metadataDescribeMovingAddressesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13142,11 +12286,7 @@ type DescribeNetworkAclsInput struct { // Default: Describes all your network ACLs. NetworkAclIds []*string `locationName:"NetworkAclId" locationNameList:"item" type:"list"` - metadataDescribeNetworkAclsInput `json:"-" xml:"-"` -} - -type metadataDescribeNetworkAclsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13163,11 +12303,7 @@ type DescribeNetworkAclsOutput struct { // Information about one or more network ACLs. NetworkAcls []*NetworkAcl `locationName:"networkAclSet" locationNameList:"item" type:"list"` - metadataDescribeNetworkAclsOutput `json:"-" xml:"-"` -} - -type metadataDescribeNetworkAclsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13193,11 +12329,7 @@ type DescribeNetworkInterfaceAttributeInput struct { // The ID of the network interface. NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` - metadataDescribeNetworkInterfaceAttributeInput `json:"-" xml:"-"` -} - -type metadataDescribeNetworkInterfaceAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13226,11 +12358,7 @@ type DescribeNetworkInterfaceAttributeOutput struct { // Indicates whether source/destination checking is enabled. SourceDestCheck *AttributeBooleanValue `locationName:"sourceDestCheck" type:"structure"` - metadataDescribeNetworkInterfaceAttributeOutput `json:"-" xml:"-"` -} - -type metadataDescribeNetworkInterfaceAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13356,11 +12484,7 @@ type DescribeNetworkInterfacesInput struct { // Default: Describes all your network interfaces. NetworkInterfaceIds []*string `locationName:"NetworkInterfaceId" locationNameList:"item" type:"list"` - metadataDescribeNetworkInterfacesInput `json:"-" xml:"-"` -} - -type metadataDescribeNetworkInterfacesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13377,11 +12501,7 @@ type DescribeNetworkInterfacesOutput struct { // Information about one or more network interfaces. NetworkInterfaces []*NetworkInterface `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"` - metadataDescribeNetworkInterfacesOutput `json:"-" xml:"-"` -} - -type metadataDescribeNetworkInterfacesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13416,11 +12536,7 @@ type DescribePlacementGroupsInput struct { // Default: Describes all your placement groups, or only those otherwise specified. GroupNames []*string `locationName:"groupName" type:"list"` - metadataDescribePlacementGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribePlacementGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13437,11 +12553,7 @@ type DescribePlacementGroupsOutput struct { // One or more placement groups. PlacementGroups []*PlacementGroup `locationName:"placementGroupSet" locationNameList:"item" type:"list"` - metadataDescribePlacementGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribePlacementGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13483,11 +12595,7 @@ type DescribePrefixListsInput struct { // One or more prefix list IDs. PrefixListIds []*string `locationName:"PrefixListId" locationNameList:"item" type:"list"` - metadataDescribePrefixListsInput `json:"-" xml:"-"` -} - -type metadataDescribePrefixListsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13508,11 +12616,7 @@ type DescribePrefixListsOutput struct { // All available prefix lists. PrefixLists []*PrefixList `locationName:"prefixListSet" locationNameList:"item" type:"list"` - metadataDescribePrefixListsOutput `json:"-" xml:"-"` -} - -type metadataDescribePrefixListsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13542,11 +12646,7 @@ type DescribeRegionsInput struct { // The names of one or more regions. RegionNames []*string `locationName:"RegionName" locationNameList:"RegionName" type:"list"` - metadataDescribeRegionsInput `json:"-" xml:"-"` -} - -type metadataDescribeRegionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13563,11 +12663,7 @@ type DescribeRegionsOutput struct { // Information about one or more regions. Regions []*Region `locationName:"regionInfo" locationNameList:"item" type:"list"` - metadataDescribeRegionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeRegionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13648,11 +12744,7 @@ type DescribeReservedInstancesInput struct { // specified. ReservedInstancesIds []*string `locationName:"ReservedInstancesId" locationNameList:"ReservedInstancesId" type:"list"` - metadataDescribeReservedInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13684,11 +12776,7 @@ type DescribeReservedInstancesListingsInput struct { // One or more Reserved instance Listing IDs. ReservedInstancesListingId *string `locationName:"reservedInstancesListingId" type:"string"` - metadataDescribeReservedInstancesListingsInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedInstancesListingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13705,11 +12793,7 @@ type DescribeReservedInstancesListingsOutput struct { // Information about the Reserved instance listing. ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"` - metadataDescribeReservedInstancesListingsOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedInstancesListingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13765,11 +12849,7 @@ type DescribeReservedInstancesModificationsInput struct { // IDs for the submitted modification request. ReservedInstancesModificationIds []*string `locationName:"ReservedInstancesModificationId" locationNameList:"ReservedInstancesModificationId" type:"list"` - metadataDescribeReservedInstancesModificationsInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedInstancesModificationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13790,11 +12870,7 @@ type DescribeReservedInstancesModificationsOutput struct { // The Reserved instance modification information. ReservedInstancesModifications []*ReservedInstancesModification `locationName:"reservedInstancesModificationsSet" locationNameList:"item" type:"list"` - metadataDescribeReservedInstancesModificationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedInstancesModificationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13903,11 +12979,7 @@ type DescribeReservedInstancesOfferingsInput struct { // One or more Reserved instances offering IDs. ReservedInstancesOfferingIds []*string `locationName:"ReservedInstancesOfferingId" type:"list"` - metadataDescribeReservedInstancesOfferingsInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedInstancesOfferingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13928,11 +13000,7 @@ type DescribeReservedInstancesOfferingsOutput struct { // A list of Reserved instances offerings. ReservedInstancesOfferings []*ReservedInstancesOffering `locationName:"reservedInstancesOfferingsSet" locationNameList:"item" type:"list"` - metadataDescribeReservedInstancesOfferingsOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedInstancesOfferingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -13949,11 +13017,7 @@ type DescribeReservedInstancesOutput struct { // A list of Reserved instances. ReservedInstances []*ReservedInstances `locationName:"reservedInstancesSet" locationNameList:"item" type:"list"` - metadataDescribeReservedInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14033,11 +13097,7 @@ type DescribeRouteTablesInput struct { // Default: Describes all your route tables. RouteTableIds []*string `locationName:"RouteTableId" locationNameList:"item" type:"list"` - metadataDescribeRouteTablesInput `json:"-" xml:"-"` -} - -type metadataDescribeRouteTablesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14054,11 +13114,7 @@ type DescribeRouteTablesOutput struct { // Information about one or more route tables. RouteTables []*RouteTable `locationName:"routeTableSet" locationNameList:"item" type:"list"` - metadataDescribeRouteTablesOutput `json:"-" xml:"-"` -} - -type metadataDescribeRouteTablesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14134,11 +13190,7 @@ type DescribeSecurityGroupsInput struct { // Default: Describes all your security groups. GroupNames []*string `locationName:"GroupName" locationNameList:"GroupName" type:"list"` - metadataDescribeSecurityGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeSecurityGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14155,11 +13207,7 @@ type DescribeSecurityGroupsOutput struct { // Information about one or more security groups. SecurityGroups []*SecurityGroup `locationName:"securityGroupInfo" locationNameList:"item" type:"list"` - metadataDescribeSecurityGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSecurityGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14185,11 +13233,7 @@ type DescribeSnapshotAttributeInput struct { // The ID of the EBS snapshot. SnapshotId *string `type:"string" required:"true"` - metadataDescribeSnapshotAttributeInput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14212,11 +13256,7 @@ type DescribeSnapshotAttributeOutput struct { // The ID of the EBS snapshot. SnapshotId *string `locationName:"snapshotId" type:"string"` - metadataDescribeSnapshotAttributeOutput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14301,11 +13341,7 @@ type DescribeSnapshotsInput struct { // Default: Describes snapshots for which you have launch permissions. SnapshotIds []*string `locationName:"SnapshotId" locationNameList:"SnapshotId" type:"list"` - metadataDescribeSnapshotsInput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14328,11 +13364,7 @@ type DescribeSnapshotsOutput struct { // Information about the snapshots. Snapshots []*Snapshot `locationName:"snapshotSet" locationNameList:"item" type:"list"` - metadataDescribeSnapshotsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14353,11 +13385,7 @@ type DescribeSpotDatafeedSubscriptionInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataDescribeSpotDatafeedSubscriptionInput `json:"-" xml:"-"` -} - -type metadataDescribeSpotDatafeedSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14375,11 +13403,7 @@ type DescribeSpotDatafeedSubscriptionOutput struct { // The Spot instance data feed subscription. SpotDatafeedSubscription *SpotDatafeedSubscription `locationName:"spotDatafeedSubscription" type:"structure"` - metadataDescribeSpotDatafeedSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataDescribeSpotDatafeedSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14411,11 +13435,7 @@ type DescribeSpotFleetInstancesInput struct { // The ID of the Spot fleet request. SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - metadataDescribeSpotFleetInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeSpotFleetInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14441,11 +13461,7 @@ type DescribeSpotFleetInstancesOutput struct { // The ID of the Spot fleet request. SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - metadataDescribeSpotFleetInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeSpotFleetInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14483,11 +13499,7 @@ type DescribeSpotFleetRequestHistoryInput struct { // The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601" required:"true"` - metadataDescribeSpotFleetRequestHistoryInput `json:"-" xml:"-"` -} - -type metadataDescribeSpotFleetRequestHistoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14521,11 +13533,7 @@ type DescribeSpotFleetRequestHistoryOutput struct { // The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601" required:"true"` - metadataDescribeSpotFleetRequestHistoryOutput `json:"-" xml:"-"` -} - -type metadataDescribeSpotFleetRequestHistoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14557,11 +13565,7 @@ type DescribeSpotFleetRequestsInput struct { // The IDs of the Spot fleet requests. SpotFleetRequestIds []*string `locationName:"spotFleetRequestId" locationNameList:"item" type:"list"` - metadataDescribeSpotFleetRequestsInput `json:"-" xml:"-"` -} - -type metadataDescribeSpotFleetRequestsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14583,11 +13587,7 @@ type DescribeSpotFleetRequestsOutput struct { // Information about the configuration of your Spot fleet. SpotFleetRequestConfigs []*SpotFleetRequestConfig `locationName:"spotFleetRequestConfigSet" locationNameList:"item" type:"list" required:"true"` - metadataDescribeSpotFleetRequestsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSpotFleetRequestsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14721,11 +13721,7 @@ type DescribeSpotInstanceRequestsInput struct { // One or more Spot instance request IDs. SpotInstanceRequestIds []*string `locationName:"SpotInstanceRequestId" locationNameList:"SpotInstanceRequestId" type:"list"` - metadataDescribeSpotInstanceRequestsInput `json:"-" xml:"-"` -} - -type metadataDescribeSpotInstanceRequestsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14743,11 +13739,7 @@ type DescribeSpotInstanceRequestsOutput struct { // One or more Spot instance requests. SpotInstanceRequests []*SpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"` - metadataDescribeSpotInstanceRequestsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSpotInstanceRequestsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14811,11 +13803,7 @@ type DescribeSpotPriceHistoryInput struct { // the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"` - metadataDescribeSpotPriceHistoryInput `json:"-" xml:"-"` -} - -type metadataDescribeSpotPriceHistoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14837,11 +13825,7 @@ type DescribeSpotPriceHistoryOutput struct { // The historical Spot prices. SpotPriceHistory []*SpotPrice `locationName:"spotPriceHistorySet" locationNameList:"item" type:"list"` - metadataDescribeSpotPriceHistoryOutput `json:"-" xml:"-"` -} - -type metadataDescribeSpotPriceHistoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14900,11 +13884,7 @@ type DescribeSubnetsInput struct { // Default: Describes all your subnets. SubnetIds []*string `locationName:"SubnetId" locationNameList:"SubnetId" type:"list"` - metadataDescribeSubnetsInput `json:"-" xml:"-"` -} - -type metadataDescribeSubnetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14921,11 +13901,7 @@ type DescribeSubnetsOutput struct { // Information about one or more subnets. Subnets []*Subnet `locationName:"subnetSet" locationNameList:"item" type:"list"` - metadataDescribeSubnetsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSubnetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14969,11 +13945,7 @@ type DescribeTagsInput struct { // The token to retrieve the next page of results. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeTagsInput `json:"-" xml:"-"` -} - -type metadataDescribeTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -14994,11 +13966,7 @@ type DescribeTagsOutput struct { // A list of tags. Tags []*TagDescription `locationName:"tagSet" locationNameList:"item" type:"list"` - metadataDescribeTagsOutput `json:"-" xml:"-"` -} - -type metadataDescribeTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15024,11 +13992,7 @@ type DescribeVolumeAttributeInput struct { // The ID of the volume. VolumeId *string `type:"string" required:"true"` - metadataDescribeVolumeAttributeInput `json:"-" xml:"-"` -} - -type metadataDescribeVolumeAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15051,11 +14015,7 @@ type DescribeVolumeAttributeOutput struct { // The ID of the volume. VolumeId *string `locationName:"volumeId" type:"string"` - metadataDescribeVolumeAttributeOutput `json:"-" xml:"-"` -} - -type metadataDescribeVolumeAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15129,11 +14089,7 @@ type DescribeVolumeStatusInput struct { // Default: Describes all your volumes. VolumeIds []*string `locationName:"VolumeId" locationNameList:"VolumeId" type:"list"` - metadataDescribeVolumeStatusInput `json:"-" xml:"-"` -} - -type metadataDescribeVolumeStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15154,11 +14110,7 @@ type DescribeVolumeStatusOutput struct { // A list of volumes. VolumeStatuses []*VolumeStatusItem `locationName:"volumeStatusSet" locationNameList:"item" type:"list"` - metadataDescribeVolumeStatusOutput `json:"-" xml:"-"` -} - -type metadataDescribeVolumeStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15246,11 +14198,7 @@ type DescribeVolumesInput struct { // One or more volume IDs. VolumeIds []*string `locationName:"VolumeId" locationNameList:"VolumeId" type:"list"` - metadataDescribeVolumesInput `json:"-" xml:"-"` -} - -type metadataDescribeVolumesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15273,11 +14221,7 @@ type DescribeVolumesOutput struct { // Information about the volumes. Volumes []*Volume `locationName:"volumeSet" locationNameList:"item" type:"list"` - metadataDescribeVolumesOutput `json:"-" xml:"-"` -} - -type metadataDescribeVolumesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15303,11 +14247,7 @@ type DescribeVpcAttributeInput struct { // The ID of the VPC. VpcId *string `type:"string" required:"true"` - metadataDescribeVpcAttributeInput `json:"-" xml:"-"` -} - -type metadataDescribeVpcAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15334,11 +14274,7 @@ type DescribeVpcAttributeOutput struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataDescribeVpcAttributeOutput `json:"-" xml:"-"` -} - -type metadataDescribeVpcAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15379,11 +14315,7 @@ type DescribeVpcClassicLinkInput struct { // One or more VPCs for which you want to describe the ClassicLink status. VpcIds []*string `locationName:"VpcId" locationNameList:"VpcId" type:"list"` - metadataDescribeVpcClassicLinkInput `json:"-" xml:"-"` -} - -type metadataDescribeVpcClassicLinkInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15400,11 +14332,7 @@ type DescribeVpcClassicLinkOutput struct { // The ClassicLink status of one or more VPCs. Vpcs []*VpcClassicLink `locationName:"vpcSet" locationNameList:"item" type:"list"` - metadataDescribeVpcClassicLinkOutput `json:"-" xml:"-"` -} - -type metadataDescribeVpcClassicLinkOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15435,11 +14363,7 @@ type DescribeVpcEndpointServicesInput struct { // a prior call.) NextToken *string `type:"string"` - metadataDescribeVpcEndpointServicesInput `json:"-" xml:"-"` -} - -type metadataDescribeVpcEndpointServicesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15460,11 +14384,7 @@ type DescribeVpcEndpointServicesOutput struct { // A list of supported AWS services. ServiceNames []*string `locationName:"serviceNameSet" locationNameList:"item" type:"list"` - metadataDescribeVpcEndpointServicesOutput `json:"-" xml:"-"` -} - -type metadataDescribeVpcEndpointServicesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15510,11 +14430,7 @@ type DescribeVpcEndpointsInput struct { // One or more endpoint IDs. VpcEndpointIds []*string `locationName:"VpcEndpointId" locationNameList:"item" type:"list"` - metadataDescribeVpcEndpointsInput `json:"-" xml:"-"` -} - -type metadataDescribeVpcEndpointsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15535,11 +14451,7 @@ type DescribeVpcEndpointsOutput struct { // Information about the endpoints. VpcEndpoints []*VpcEndpoint `locationName:"vpcEndpointSet" locationNameList:"item" type:"list"` - metadataDescribeVpcEndpointsOutput `json:"-" xml:"-"` -} - -type metadataDescribeVpcEndpointsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15603,11 +14515,7 @@ type DescribeVpcPeeringConnectionsInput struct { // Default: Describes all your VPC peering connections. VpcPeeringConnectionIds []*string `locationName:"VpcPeeringConnectionId" locationNameList:"item" type:"list"` - metadataDescribeVpcPeeringConnectionsInput `json:"-" xml:"-"` -} - -type metadataDescribeVpcPeeringConnectionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15624,11 +14532,7 @@ type DescribeVpcPeeringConnectionsOutput struct { // Information about the VPC peering connections. VpcPeeringConnections []*VpcPeeringConnection `locationName:"vpcPeeringConnectionSet" locationNameList:"item" type:"list"` - metadataDescribeVpcPeeringConnectionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeVpcPeeringConnectionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15680,11 +14584,7 @@ type DescribeVpcsInput struct { // Default: Describes all your VPCs. VpcIds []*string `locationName:"VpcId" locationNameList:"VpcId" type:"list"` - metadataDescribeVpcsInput `json:"-" xml:"-"` -} - -type metadataDescribeVpcsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15701,11 +14601,7 @@ type DescribeVpcsOutput struct { // Information about one or more VPCs. Vpcs []*Vpc `locationName:"vpcSet" locationNameList:"item" type:"list"` - metadataDescribeVpcsOutput `json:"-" xml:"-"` -} - -type metadataDescribeVpcsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15772,11 +14668,7 @@ type DescribeVpnConnectionsInput struct { // Default: Describes your VPN connections. VpnConnectionIds []*string `locationName:"VpnConnectionId" locationNameList:"VpnConnectionId" type:"list"` - metadataDescribeVpnConnectionsInput `json:"-" xml:"-"` -} - -type metadataDescribeVpnConnectionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15793,11 +14685,7 @@ type DescribeVpnConnectionsOutput struct { // Information about one or more VPN connections. VpnConnections []*VpnConnection `locationName:"vpnConnectionSet" locationNameList:"item" type:"list"` - metadataDescribeVpnConnectionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeVpnConnectionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15852,11 +14740,7 @@ type DescribeVpnGatewaysInput struct { // Default: Describes all your virtual private gateways. VpnGatewayIds []*string `locationName:"VpnGatewayId" locationNameList:"VpnGatewayId" type:"list"` - metadataDescribeVpnGatewaysInput `json:"-" xml:"-"` -} - -type metadataDescribeVpnGatewaysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15873,11 +14757,7 @@ type DescribeVpnGatewaysOutput struct { // Information about one or more virtual private gateways. VpnGateways []*VpnGateway `locationName:"vpnGatewaySet" locationNameList:"item" type:"list"` - metadataDescribeVpnGatewaysOutput `json:"-" xml:"-"` -} - -type metadataDescribeVpnGatewaysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15903,11 +14783,7 @@ type DetachClassicLinkVpcInput struct { // The ID of the VPC to which the instance is linked. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataDetachClassicLinkVpcInput `json:"-" xml:"-"` -} - -type metadataDetachClassicLinkVpcInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15924,11 +14800,7 @@ type DetachClassicLinkVpcOutput struct { // Returns true if the request succeeds; otherwise, it returns an error. Return *bool `locationName:"return" type:"boolean"` - metadataDetachClassicLinkVpcOutput `json:"-" xml:"-"` -} - -type metadataDetachClassicLinkVpcOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15954,11 +14826,7 @@ type DetachInternetGatewayInput struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataDetachInternetGatewayInput `json:"-" xml:"-"` -} - -type metadataDetachInternetGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -15972,11 +14840,7 @@ func (s DetachInternetGatewayInput) GoString() string { } type DetachInternetGatewayOutput struct { - metadataDetachInternetGatewayOutput `json:"-" xml:"-"` -} - -type metadataDetachInternetGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16002,11 +14866,7 @@ type DetachNetworkInterfaceInput struct { // Specifies whether to force a detachment. Force *bool `locationName:"force" type:"boolean"` - metadataDetachNetworkInterfaceInput `json:"-" xml:"-"` -} - -type metadataDetachNetworkInterfaceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16020,11 +14880,7 @@ func (s DetachNetworkInterfaceInput) GoString() string { } type DetachNetworkInterfaceOutput struct { - metadataDetachNetworkInterfaceOutput `json:"-" xml:"-"` -} - -type metadataDetachNetworkInterfaceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16062,11 +14918,7 @@ type DetachVolumeInput struct { // The ID of the volume. VolumeId *string `type:"string" required:"true"` - metadataDetachVolumeInput `json:"-" xml:"-"` -} - -type metadataDetachVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16092,11 +14944,7 @@ type DetachVpnGatewayInput struct { // The ID of the virtual private gateway. VpnGatewayId *string `type:"string" required:"true"` - metadataDetachVpnGatewayInput `json:"-" xml:"-"` -} - -type metadataDetachVpnGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16110,11 +14958,7 @@ func (s DetachVpnGatewayInput) GoString() string { } type DetachVpnGatewayOutput struct { - metadataDetachVpnGatewayOutput `json:"-" xml:"-"` -} - -type metadataDetachVpnGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16135,11 +14979,7 @@ type DhcpConfiguration struct { // One or more values for the DHCP option. Values []*AttributeValue `locationName:"valueSet" locationNameList:"item" type:"list"` - metadataDhcpConfiguration `json:"-" xml:"-"` -} - -type metadataDhcpConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16163,11 +15003,7 @@ type DhcpOptions struct { // Any tags assigned to the DHCP options set. Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - metadataDhcpOptions `json:"-" xml:"-"` -} - -type metadataDhcpOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16187,11 +15023,7 @@ type DisableVgwRoutePropagationInput struct { // The ID of the route table. RouteTableId *string `type:"string" required:"true"` - metadataDisableVgwRoutePropagationInput `json:"-" xml:"-"` -} - -type metadataDisableVgwRoutePropagationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16205,11 +15037,7 @@ func (s DisableVgwRoutePropagationInput) GoString() string { } type DisableVgwRoutePropagationOutput struct { - metadataDisableVgwRoutePropagationOutput `json:"-" xml:"-"` -} - -type metadataDisableVgwRoutePropagationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16232,11 +15060,7 @@ type DisableVpcClassicLinkInput struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataDisableVpcClassicLinkInput `json:"-" xml:"-"` -} - -type metadataDisableVpcClassicLinkInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16253,11 +15077,7 @@ type DisableVpcClassicLinkOutput struct { // Returns true if the request succeeds; otherwise, it returns an error. Return *bool `locationName:"return" type:"boolean"` - metadataDisableVpcClassicLinkOutput `json:"-" xml:"-"` -} - -type metadataDisableVpcClassicLinkOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16283,11 +15103,7 @@ type DisassociateAddressInput struct { // [EC2-Classic] The Elastic IP address. Required for EC2-Classic. PublicIp *string `type:"string"` - metadataDisassociateAddressInput `json:"-" xml:"-"` -} - -type metadataDisassociateAddressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16301,11 +15117,7 @@ func (s DisassociateAddressInput) GoString() string { } type DisassociateAddressOutput struct { - metadataDisassociateAddressOutput `json:"-" xml:"-"` -} - -type metadataDisassociateAddressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16329,11 +15141,7 @@ type DisassociateRouteTableInput struct { // it is UnauthorizedOperation. DryRun *bool `locationName:"dryRun" type:"boolean"` - metadataDisassociateRouteTableInput `json:"-" xml:"-"` -} - -type metadataDisassociateRouteTableInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16347,11 +15155,7 @@ func (s DisassociateRouteTableInput) GoString() string { } type DisassociateRouteTableOutput struct { - metadataDisassociateRouteTableOutput `json:"-" xml:"-"` -} - -type metadataDisassociateRouteTableOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16375,11 +15179,7 @@ type DiskImage struct { // Information about the volume. Volume *VolumeDetail `type:"structure"` - metadataDiskImage `json:"-" xml:"-"` -} - -type metadataDiskImage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16410,11 +15210,7 @@ type DiskImageDescription struct { // The size of the disk image, in GiB. Size *int64 `locationName:"size" type:"long" required:"true"` - metadataDiskImageDescription `json:"-" xml:"-"` -} - -type metadataDiskImageDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16442,11 +15238,7 @@ type DiskImageDetail struct { // topic in the Amazon Simple Storage Service Developer Guide. ImportManifestUrl *string `locationName:"importManifestUrl" type:"string" required:"true"` - metadataDiskImageDetail `json:"-" xml:"-"` -} - -type metadataDiskImageDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16467,11 +15259,7 @@ type DiskImageVolumeDescription struct { // The size of the volume, in GiB. Size *int64 `locationName:"size" type:"long"` - metadataDiskImageVolumeDescription `json:"-" xml:"-"` -} - -type metadataDiskImageVolumeDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16527,11 +15315,7 @@ type EbsBlockDevice struct { // Default: standard VolumeType *string `locationName:"volumeType" type:"string" enum:"VolumeType"` - metadataEbsBlockDevice `json:"-" xml:"-"` -} - -type metadataEbsBlockDevice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16558,11 +15342,7 @@ type EbsInstanceBlockDevice struct { // The ID of the EBS volume. VolumeId *string `locationName:"volumeId" type:"string"` - metadataEbsInstanceBlockDevice `json:"-" xml:"-"` -} - -type metadataEbsInstanceBlockDevice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16582,11 +15362,7 @@ type EbsInstanceBlockDeviceSpecification struct { // The ID of the EBS volume. VolumeId *string `locationName:"volumeId" type:"string"` - metadataEbsInstanceBlockDeviceSpecification `json:"-" xml:"-"` -} - -type metadataEbsInstanceBlockDeviceSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16606,11 +15382,7 @@ type EnableVgwRoutePropagationInput struct { // The ID of the route table. RouteTableId *string `type:"string" required:"true"` - metadataEnableVgwRoutePropagationInput `json:"-" xml:"-"` -} - -type metadataEnableVgwRoutePropagationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16624,11 +15396,7 @@ func (s EnableVgwRoutePropagationInput) GoString() string { } type EnableVgwRoutePropagationOutput struct { - metadataEnableVgwRoutePropagationOutput `json:"-" xml:"-"` -} - -type metadataEnableVgwRoutePropagationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16651,11 +15419,7 @@ type EnableVolumeIOInput struct { // The ID of the volume. VolumeId *string `locationName:"volumeId" type:"string" required:"true"` - metadataEnableVolumeIOInput `json:"-" xml:"-"` -} - -type metadataEnableVolumeIOInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16669,11 +15433,7 @@ func (s EnableVolumeIOInput) GoString() string { } type EnableVolumeIOOutput struct { - metadataEnableVolumeIOOutput `json:"-" xml:"-"` -} - -type metadataEnableVolumeIOOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16696,11 +15456,7 @@ type EnableVpcClassicLinkInput struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataEnableVpcClassicLinkInput `json:"-" xml:"-"` -} - -type metadataEnableVpcClassicLinkInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16717,11 +15473,7 @@ type EnableVpcClassicLinkOutput struct { // Returns true if the request succeeds; otherwise, it returns an error. Return *bool `locationName:"return" type:"boolean"` - metadataEnableVpcClassicLinkOutput `json:"-" xml:"-"` -} - -type metadataEnableVpcClassicLinkOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16797,11 +15549,7 @@ type EventInformation struct { // events. InstanceId *string `locationName:"instanceId" type:"string"` - metadataEventInformation `json:"-" xml:"-"` -} - -type metadataEventInformation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16834,11 +15582,7 @@ type ExportTask struct { // The status message related to the export task. StatusMessage *string `locationName:"statusMessage" type:"string"` - metadataExportTask `json:"-" xml:"-"` -} - -type metadataExportTask struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16867,11 +15611,7 @@ type ExportToS3Task struct { // The encryption key for your S3 bucket. S3Key *string `locationName:"s3Key" type:"string"` - metadataExportToS3Task `json:"-" xml:"-"` -} - -type metadataExportToS3Task struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16901,11 +15641,7 @@ type ExportToS3TaskSpecification struct { // + exportTaskId + '.' + diskImageFormat. S3Prefix *string `locationName:"s3Prefix" type:"string"` - metadataExportToS3TaskSpecification `json:"-" xml:"-"` -} - -type metadataExportToS3TaskSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16928,11 +15664,7 @@ type Filter struct { // One or more filter values. Filter values are case-sensitive. Values []*string `locationName:"Value" locationNameList:"item" type:"list"` - metadataFilter `json:"-" xml:"-"` -} - -type metadataFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -16978,11 +15710,7 @@ type FlowLog struct { // The type of traffic captured for the flow log. TrafficType *string `locationName:"trafficType" type:"string" enum:"TrafficType"` - metadataFlowLog `json:"-" xml:"-"` -} - -type metadataFlowLog struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17005,11 +15733,7 @@ type GetConsoleOutputInput struct { // The ID of the instance. InstanceId *string `type:"string" required:"true"` - metadataGetConsoleOutputInput `json:"-" xml:"-"` -} - -type metadataGetConsoleOutputInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17032,11 +15756,7 @@ type GetConsoleOutputOutput struct { // The time the output was last updated. Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"` - metadataGetConsoleOutputOutput `json:"-" xml:"-"` -} - -type metadataGetConsoleOutputOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17059,11 +15779,7 @@ type GetPasswordDataInput struct { // The ID of the Windows instance. InstanceId *string `type:"string" required:"true"` - metadataGetPasswordDataInput `json:"-" xml:"-"` -} - -type metadataGetPasswordDataInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17086,11 +15802,7 @@ type GetPasswordDataOutput struct { // The time the data was last updated. Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"` - metadataGetPasswordDataOutput `json:"-" xml:"-"` -} - -type metadataGetPasswordDataOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17111,11 +15823,7 @@ type GroupIdentifier struct { // The name of the security group. GroupName *string `locationName:"groupName" type:"string"` - metadataGroupIdentifier `json:"-" xml:"-"` -} - -type metadataGroupIdentifier struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17146,11 +15854,7 @@ type HistoryRecord struct { // The date and time of the event, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601" required:"true"` - metadataHistoryRecord `json:"-" xml:"-"` -} - -type metadataHistoryRecord struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17194,11 +15898,7 @@ type Host struct { // The Dedicated host's state. Can be "available", "under assessment, or "released". State *string `locationName:"state" type:"string" enum:"AllocationState"` - metadataHost `json:"-" xml:"-"` -} - -type metadataHost struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17218,11 +15918,7 @@ type HostInstance struct { // The instance type size (e.g., m3.medium) of the running instance. InstanceType *string `locationName:"instanceType" type:"string"` - metadataHostInstance `json:"-" xml:"-"` -} - -type metadataHostInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17248,11 +15944,7 @@ type HostProperties struct { // The number of vCPUs on the Dedicated host. TotalVCpus *int64 `locationName:"totalVCpus" type:"integer"` - metadataHostProperties `json:"-" xml:"-"` -} - -type metadataHostProperties struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17273,11 +15965,7 @@ type IamInstanceProfile struct { // The ID of the instance profile. Id *string `locationName:"id" type:"string"` - metadataIamInstanceProfile `json:"-" xml:"-"` -} - -type metadataIamInstanceProfile struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17298,11 +15986,7 @@ type IamInstanceProfileSpecification struct { // The name of the instance profile. Name *string `locationName:"name" type:"string"` - metadataIamInstanceProfileSpecification `json:"-" xml:"-"` -} - -type metadataIamInstanceProfileSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17323,11 +16007,7 @@ type IcmpTypeCode struct { // The ICMP code. A value of -1 means all codes for the specified ICMP type. Type *int64 `locationName:"type" type:"integer"` - metadataIcmpTypeCode `json:"-" xml:"-"` -} - -type metadataIcmpTypeCode struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17352,11 +16032,7 @@ type IdFormat struct { // Indicates whether longer IDs (17-character IDs) are enabled for the resource. UseLongIds *bool `locationName:"useLongIds" type:"boolean"` - metadataIdFormat `json:"-" xml:"-"` -} - -type metadataIdFormat struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17447,11 +16123,7 @@ type Image struct { // The type of virtualization of the AMI. VirtualizationType *string `locationName:"virtualizationType" type:"string" enum:"VirtualizationType"` - metadataImage `json:"-" xml:"-"` -} - -type metadataImage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17487,11 +16159,7 @@ type ImageDiskContainer struct { // The S3 bucket for the disk image. UserBucket *UserBucket `type:"structure"` - metadataImageDiskContainer `json:"-" xml:"-"` -} - -type metadataImageDiskContainer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17551,11 +16219,7 @@ type ImportImageInput struct { // The name of the role to use when not using the default role, 'vmimport'. RoleName *string `type:"string"` - metadataImportImageInput `json:"-" xml:"-"` -} - -type metadataImportImageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17602,11 +16266,7 @@ type ImportImageOutput struct { // A detailed status message of the import task. StatusMessage *string `locationName:"statusMessage" type:"string"` - metadataImportImageOutput `json:"-" xml:"-"` -} - -type metadataImportImageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17658,11 +16318,7 @@ type ImportImageTask struct { // A descriptive status message for the import image task. StatusMessage *string `locationName:"statusMessage" type:"string"` - metadataImportImageTask `json:"-" xml:"-"` -} - -type metadataImportImageTask struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17694,11 +16350,7 @@ type ImportInstanceInput struct { // The instance operating system. Platform *string `locationName:"platform" type:"string" required:"true" enum:"PlatformValues"` - metadataImportInstanceInput `json:"-" xml:"-"` -} - -type metadataImportInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17749,11 +16401,7 @@ type ImportInstanceLaunchSpecification struct { // The Base64-encoded MIME user data to be made available to the instance. UserData *UserData `locationName:"userData" type:"structure"` - metadataImportInstanceLaunchSpecification `json:"-" xml:"-"` -} - -type metadataImportInstanceLaunchSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17770,11 +16418,7 @@ type ImportInstanceOutput struct { // Information about the conversion task. ConversionTask *ConversionTask `locationName:"conversionTask" type:"structure"` - metadataImportInstanceOutput `json:"-" xml:"-"` -} - -type metadataImportInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17801,11 +16445,7 @@ type ImportInstanceTaskDetails struct { // One or more volumes. Volumes []*ImportInstanceVolumeDetailItem `locationName:"volumes" locationNameList:"item" type:"list" required:"true"` - metadataImportInstanceTaskDetails `json:"-" xml:"-"` -} - -type metadataImportInstanceTaskDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17841,11 +16481,7 @@ type ImportInstanceVolumeDetailItem struct { // The volume. Volume *DiskImageVolumeDescription `locationName:"volume" type:"structure" required:"true"` - metadataImportInstanceVolumeDetailItem `json:"-" xml:"-"` -} - -type metadataImportInstanceVolumeDetailItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17872,11 +16508,7 @@ type ImportKeyPairInput struct { // it to AWS. PublicKeyMaterial []byte `locationName:"publicKeyMaterial" type:"blob" required:"true"` - metadataImportKeyPairInput `json:"-" xml:"-"` -} - -type metadataImportKeyPairInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17896,11 +16528,7 @@ type ImportKeyPairOutput struct { // The key pair name you provided. KeyName *string `locationName:"keyName" type:"string"` - metadataImportKeyPairOutput `json:"-" xml:"-"` -} - -type metadataImportKeyPairOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17935,11 +16563,7 @@ type ImportSnapshotInput struct { // The name of the role to use when not using the default role, 'vmimport'. RoleName *string `type:"string"` - metadataImportSnapshotInput `json:"-" xml:"-"` -} - -type metadataImportSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17962,11 +16586,7 @@ type ImportSnapshotOutput struct { // Information about the import snapshot task. SnapshotTaskDetail *SnapshotTaskDetail `locationName:"snapshotTaskDetail" type:"structure"` - metadataImportSnapshotOutput `json:"-" xml:"-"` -} - -type metadataImportSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -17990,11 +16610,7 @@ type ImportSnapshotTask struct { // Describes an import snapshot task. SnapshotTaskDetail *SnapshotTaskDetail `locationName:"snapshotTaskDetail" type:"structure"` - metadataImportSnapshotTask `json:"-" xml:"-"` -} - -type metadataImportSnapshotTask struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18026,11 +16642,7 @@ type ImportVolumeInput struct { // The volume size. Volume *VolumeDetail `locationName:"volume" type:"structure" required:"true"` - metadataImportVolumeInput `json:"-" xml:"-"` -} - -type metadataImportVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18047,11 +16659,7 @@ type ImportVolumeOutput struct { // Information about the conversion task. ConversionTask *ConversionTask `locationName:"conversionTask" type:"structure"` - metadataImportVolumeOutput `json:"-" xml:"-"` -} - -type metadataImportVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18081,11 +16689,7 @@ type ImportVolumeTaskDetails struct { // The volume. Volume *DiskImageVolumeDescription `locationName:"volume" type:"structure" required:"true"` - metadataImportVolumeTaskDetails `json:"-" xml:"-"` -} - -type metadataImportVolumeTaskDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18228,11 +16832,7 @@ type Instance struct { // [EC2-VPC] The ID of the VPC in which the instance is running. VpcId *string `locationName:"vpcId" type:"string"` - metadataInstance `json:"-" xml:"-"` -} - -type metadataInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18254,11 +16854,7 @@ type InstanceBlockDeviceMapping struct { // launched. Ebs *EbsInstanceBlockDevice `locationName:"ebs" type:"structure"` - metadataInstanceBlockDeviceMapping `json:"-" xml:"-"` -} - -type metadataInstanceBlockDeviceMapping struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18286,11 +16882,7 @@ type InstanceBlockDeviceMappingSpecification struct { // The virtual device name. VirtualName *string `locationName:"virtualName" type:"string"` - metadataInstanceBlockDeviceMappingSpecification `json:"-" xml:"-"` -} - -type metadataInstanceBlockDeviceMappingSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18313,11 +16905,7 @@ type InstanceCapacity struct { // The total number of instances that can be launched onto the Dedicated host. TotalCapacity *int64 `locationName:"totalCapacity" type:"integer"` - metadataInstanceCapacity `json:"-" xml:"-"` -} - -type metadataInstanceCapacity struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18338,11 +16926,7 @@ type InstanceCount struct { // The states of the listed Reserved instances. State *string `locationName:"state" type:"string" enum:"ListingState"` - metadataInstanceCount `json:"-" xml:"-"` -} - -type metadataInstanceCount struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18363,11 +16947,7 @@ type InstanceExportDetails struct { // The target virtualization environment. TargetEnvironment *string `locationName:"targetEnvironment" type:"string" enum:"ExportEnvironment"` - metadataInstanceExportDetails `json:"-" xml:"-"` -} - -type metadataInstanceExportDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18388,11 +16968,7 @@ type InstanceMonitoring struct { // The monitoring information. Monitoring *Monitoring `locationName:"monitoring" type:"structure"` - metadataInstanceMonitoring `json:"-" xml:"-"` -} - -type metadataInstanceMonitoring struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18450,11 +17026,7 @@ type InstanceNetworkInterface struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataInstanceNetworkInterface `json:"-" xml:"-"` -} - -type metadataInstanceNetworkInterface struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18478,11 +17050,7 @@ type InstanceNetworkInterfaceAssociation struct { // The public IP address or Elastic IP address bound to the network interface. PublicIp *string `locationName:"publicIp" type:"string"` - metadataInstanceNetworkInterfaceAssociation `json:"-" xml:"-"` -} - -type metadataInstanceNetworkInterfaceAssociation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18512,11 +17080,7 @@ type InstanceNetworkInterfaceAttachment struct { // The attachment state. Status *string `locationName:"status" type:"string" enum:"AttachmentStatus"` - metadataInstanceNetworkInterfaceAttachment `json:"-" xml:"-"` -} - -type metadataInstanceNetworkInterfaceAttachment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18576,11 +17140,7 @@ type InstanceNetworkInterfaceSpecification struct { // creating a network interface when launching an instance. SubnetId *string `locationName:"subnetId" type:"string"` - metadataInstanceNetworkInterfaceSpecification `json:"-" xml:"-"` -} - -type metadataInstanceNetworkInterfaceSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18608,11 +17168,7 @@ type InstancePrivateIpAddress struct { // The private IP address of the network interface. PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - metadataInstancePrivateIpAddress `json:"-" xml:"-"` -} - -type metadataInstancePrivateIpAddress struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18646,11 +17202,7 @@ type InstanceState struct { // The current state of the instance. Name *string `locationName:"name" type:"string" enum:"InstanceStateName"` - metadataInstanceState `json:"-" xml:"-"` -} - -type metadataInstanceState struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18674,11 +17226,7 @@ type InstanceStateChange struct { // The previous state of the instance. PreviousState *InstanceState `locationName:"previousState" type:"structure"` - metadataInstanceStateChange `json:"-" xml:"-"` -} - -type metadataInstanceStateChange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18715,11 +17263,7 @@ type InstanceStatus struct { // problems. SystemStatus *InstanceStatusSummary `locationName:"systemStatus" type:"structure"` - metadataInstanceStatus `json:"-" xml:"-"` -} - -type metadataInstanceStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18744,11 +17288,7 @@ type InstanceStatusDetails struct { // The status. Status *string `locationName:"status" type:"string" enum:"StatusType"` - metadataInstanceStatusDetails `json:"-" xml:"-"` -} - -type metadataInstanceStatusDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18779,11 +17319,7 @@ type InstanceStatusEvent struct { // The earliest scheduled start time for the event. NotBefore *time.Time `locationName:"notBefore" type:"timestamp" timestampFormat:"iso8601"` - metadataInstanceStatusEvent `json:"-" xml:"-"` -} - -type metadataInstanceStatusEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18804,11 +17340,7 @@ type InstanceStatusSummary struct { // The status. Status *string `locationName:"status" type:"string" enum:"SummaryStatus"` - metadataInstanceStatusSummary `json:"-" xml:"-"` -} - -type metadataInstanceStatusSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18832,11 +17364,7 @@ type InternetGateway struct { // Any tags assigned to the Internet gateway. Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - metadataInternetGateway `json:"-" xml:"-"` -} - -type metadataInternetGateway struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18857,11 +17385,7 @@ type InternetGatewayAttachment struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataInternetGatewayAttachment `json:"-" xml:"-"` -} - -type metadataInternetGatewayAttachment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18906,11 +17430,7 @@ type IpPermission struct { // One or more security group and AWS account ID pairs. UserIdGroupPairs []*UserIdGroupPair `locationName:"groups" locationNameList:"item" type:"list"` - metadataIpPermission `json:"-" xml:"-"` -} - -type metadataIpPermission struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18929,11 +17449,7 @@ type IpRange struct { // group, not both. CidrIp *string `locationName:"cidrIp" type:"string"` - metadataIpRange `json:"-" xml:"-"` -} - -type metadataIpRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18957,11 +17473,7 @@ type KeyPairInfo struct { // The name of the key pair. KeyName *string `locationName:"keyName" type:"string"` - metadataKeyPairInfo `json:"-" xml:"-"` -} - -type metadataKeyPairInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -18982,11 +17494,7 @@ type LaunchPermission struct { // The AWS account ID. UserId *string `locationName:"userId" type:"string"` - metadataLaunchPermission `json:"-" xml:"-"` -} - -type metadataLaunchPermission struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19008,11 +17516,7 @@ type LaunchPermissionModifications struct { // AMI. Remove []*LaunchPermission `locationNameList:"item" type:"list"` - metadataLaunchPermissionModifications `json:"-" xml:"-"` -} - -type metadataLaunchPermissionModifications struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19080,11 +17584,7 @@ type LaunchSpecification struct { // The Base64-encoded MIME user data to make available to the instances. UserData *string `locationName:"userData" type:"string"` - metadataLaunchSpecification `json:"-" xml:"-"` -} - -type metadataLaunchSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19104,11 +17604,7 @@ type ModifyHostsInput struct { // The host IDs of the Dedicated hosts you want to modify. HostIds []*string `locationName:"hostId" locationNameList:"item" type:"list" required:"true"` - metadataModifyHostsInput `json:"-" xml:"-"` -} - -type metadataModifyHostsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19129,11 +17625,7 @@ type ModifyHostsOutput struct { // the setting you requested can be used. Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` - metadataModifyHostsOutput `json:"-" xml:"-"` -} - -type metadataModifyHostsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19153,11 +17645,7 @@ type ModifyIdFormatInput struct { // Indicate whether the resource should use longer IDs (17-character IDs). UseLongIds *bool `type:"boolean" required:"true"` - metadataModifyIdFormatInput `json:"-" xml:"-"` -} - -type metadataModifyIdFormatInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19171,11 +17659,7 @@ func (s ModifyIdFormatInput) GoString() string { } type ModifyIdFormatOutput struct { - metadataModifyIdFormatOutput `json:"-" xml:"-"` -} - -type metadataModifyIdFormatOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19226,11 +17710,7 @@ type ModifyImageAttributeInput struct { // the description attribute. Value *string `type:"string"` - metadataModifyImageAttributeInput `json:"-" xml:"-"` -} - -type metadataModifyImageAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19244,11 +17724,7 @@ func (s ModifyImageAttributeInput) GoString() string { } type ModifyImageAttributeOutput struct { - metadataModifyImageAttributeOutput `json:"-" xml:"-"` -} - -type metadataModifyImageAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19341,11 +17817,7 @@ type ModifyInstanceAttributeInput struct { // disableApiTermination, or instanceInitiatedShutdownBehavior attribute. Value *string `locationName:"value" type:"string"` - metadataModifyInstanceAttributeInput `json:"-" xml:"-"` -} - -type metadataModifyInstanceAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19359,11 +17831,7 @@ func (s ModifyInstanceAttributeInput) GoString() string { } type ModifyInstanceAttributeOutput struct { - metadataModifyInstanceAttributeOutput `json:"-" xml:"-"` -} - -type metadataModifyInstanceAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19389,11 +17857,7 @@ type ModifyInstancePlacementInput struct { // The tenancy of the instance that you are modifying. Tenancy *string `locationName:"tenancy" type:"string" enum:"HostTenancy"` - metadataModifyInstancePlacementInput `json:"-" xml:"-"` -} - -type metadataModifyInstancePlacementInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19410,11 +17874,7 @@ type ModifyInstancePlacementOutput struct { // Is true if the request succeeds, and an error otherwise. Return *bool `locationName:"return" type:"boolean"` - metadataModifyInstancePlacementOutput `json:"-" xml:"-"` -} - -type metadataModifyInstancePlacementOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19457,11 +17917,7 @@ type ModifyNetworkInterfaceAttributeInput struct { // in the Amazon Virtual Private Cloud User Guide. SourceDestCheck *AttributeBooleanValue `locationName:"sourceDestCheck" type:"structure"` - metadataModifyNetworkInterfaceAttributeInput `json:"-" xml:"-"` -} - -type metadataModifyNetworkInterfaceAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19475,11 +17931,7 @@ func (s ModifyNetworkInterfaceAttributeInput) GoString() string { } type ModifyNetworkInterfaceAttributeOutput struct { - metadataModifyNetworkInterfaceAttributeOutput `json:"-" xml:"-"` -} - -type metadataModifyNetworkInterfaceAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19503,11 +17955,7 @@ type ModifyReservedInstancesInput struct { // The configuration settings for the Reserved instances to modify. TargetConfigurations []*ReservedInstancesConfiguration `locationName:"ReservedInstancesConfigurationSetItemType" locationNameList:"item" type:"list" required:"true"` - metadataModifyReservedInstancesInput `json:"-" xml:"-"` -} - -type metadataModifyReservedInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19524,11 +17972,7 @@ type ModifyReservedInstancesOutput struct { // The ID for the modification. ReservedInstancesModificationId *string `locationName:"reservedInstancesModificationId" type:"string"` - metadataModifyReservedInstancesOutput `json:"-" xml:"-"` -} - -type metadataModifyReservedInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19568,11 +18012,7 @@ type ModifySnapshotAttributeInput struct { // The account ID to modify for the snapshot. UserIds []*string `locationName:"UserId" locationNameList:"UserId" type:"list"` - metadataModifySnapshotAttributeInput `json:"-" xml:"-"` -} - -type metadataModifySnapshotAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19586,11 +18026,7 @@ func (s ModifySnapshotAttributeInput) GoString() string { } type ModifySnapshotAttributeOutput struct { - metadataModifySnapshotAttributeOutput `json:"-" xml:"-"` -} - -type metadataModifySnapshotAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19616,11 +18052,7 @@ type ModifySpotFleetRequestInput struct { // The size of the fleet. TargetCapacity *int64 `locationName:"targetCapacity" type:"integer"` - metadataModifySpotFleetRequestInput `json:"-" xml:"-"` -} - -type metadataModifySpotFleetRequestInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19638,11 +18070,7 @@ type ModifySpotFleetRequestOutput struct { // Is true if the request succeeds, and an error otherwise. Return *bool `locationName:"return" type:"boolean"` - metadataModifySpotFleetRequestOutput `json:"-" xml:"-"` -} - -type metadataModifySpotFleetRequestOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19663,11 +18091,7 @@ type ModifySubnetAttributeInput struct { // The ID of the subnet. SubnetId *string `locationName:"subnetId" type:"string" required:"true"` - metadataModifySubnetAttributeInput `json:"-" xml:"-"` -} - -type metadataModifySubnetAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19681,11 +18105,7 @@ func (s ModifySubnetAttributeInput) GoString() string { } type ModifySubnetAttributeOutput struct { - metadataModifySubnetAttributeOutput `json:"-" xml:"-"` -} - -type metadataModifySubnetAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19711,11 +18131,7 @@ type ModifyVolumeAttributeInput struct { // The ID of the volume. VolumeId *string `type:"string" required:"true"` - metadataModifyVolumeAttributeInput `json:"-" xml:"-"` -} - -type metadataModifyVolumeAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19729,11 +18145,7 @@ func (s ModifyVolumeAttributeInput) GoString() string { } type ModifyVolumeAttributeOutput struct { - metadataModifyVolumeAttributeOutput `json:"-" xml:"-"` -} - -type metadataModifyVolumeAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19768,11 +18180,7 @@ type ModifyVpcAttributeInput struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string" required:"true"` - metadataModifyVpcAttributeInput `json:"-" xml:"-"` -} - -type metadataModifyVpcAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19786,11 +18194,7 @@ func (s ModifyVpcAttributeInput) GoString() string { } type ModifyVpcAttributeOutput struct { - metadataModifyVpcAttributeOutput `json:"-" xml:"-"` -} - -type metadataModifyVpcAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19827,11 +18231,7 @@ type ModifyVpcEndpointInput struct { // The ID of the endpoint. VpcEndpointId *string `type:"string" required:"true"` - metadataModifyVpcEndpointInput `json:"-" xml:"-"` -} - -type metadataModifyVpcEndpointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19848,11 +18248,7 @@ type ModifyVpcEndpointOutput struct { // Returns true if the request succeeds; otherwise, it returns an error. Return *bool `locationName:"return" type:"boolean"` - metadataModifyVpcEndpointOutput `json:"-" xml:"-"` -} - -type metadataModifyVpcEndpointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19875,11 +18271,7 @@ type MonitorInstancesInput struct { // One or more instance IDs. InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` - metadataMonitorInstancesInput `json:"-" xml:"-"` -} - -type metadataMonitorInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19896,11 +18288,7 @@ type MonitorInstancesOutput struct { // Monitoring information for one or more instances. InstanceMonitorings []*InstanceMonitoring `locationName:"instancesSet" locationNameList:"item" type:"list"` - metadataMonitorInstancesOutput `json:"-" xml:"-"` -} - -type metadataMonitorInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19918,11 +18306,7 @@ type Monitoring struct { // Indicates whether monitoring is enabled for the instance. State *string `locationName:"state" type:"string" enum:"MonitoringState"` - metadataMonitoring `json:"-" xml:"-"` -} - -type metadataMonitoring struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19945,11 +18329,7 @@ type MoveAddressToVpcInput struct { // The Elastic IP address. PublicIp *string `locationName:"publicIp" type:"string" required:"true"` - metadataMoveAddressToVpcInput `json:"-" xml:"-"` -} - -type metadataMoveAddressToVpcInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19969,11 +18349,7 @@ type MoveAddressToVpcOutput struct { // The status of the move of the IP address. Status *string `locationName:"status" type:"string" enum:"Status"` - metadataMoveAddressToVpcOutput `json:"-" xml:"-"` -} - -type metadataMoveAddressToVpcOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -19995,11 +18371,7 @@ type MovingAddressStatus struct { // The Elastic IP address. PublicIp *string `locationName:"publicIp" type:"string"` - metadataMovingAddressStatus `json:"-" xml:"-"` -} - -type metadataMovingAddressStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20032,11 +18404,7 @@ type NetworkAcl struct { // The ID of the VPC for the network ACL. VpcId *string `locationName:"vpcId" type:"string"` - metadataNetworkAcl `json:"-" xml:"-"` -} - -type metadataNetworkAcl struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20060,11 +18428,7 @@ type NetworkAclAssociation struct { // The ID of the subnet. SubnetId *string `locationName:"subnetId" type:"string"` - metadataNetworkAclAssociation `json:"-" xml:"-"` -} - -type metadataNetworkAclAssociation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20102,11 +18466,7 @@ type NetworkAclEntry struct { // by rule number. RuleNumber *int64 `locationName:"ruleNumber" type:"integer"` - metadataNetworkAclEntry `json:"-" xml:"-"` -} - -type metadataNetworkAclEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20177,11 +18537,7 @@ type NetworkInterface struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataNetworkInterface `json:"-" xml:"-"` -} - -type metadataNetworkInterface struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20211,11 +18567,7 @@ type NetworkInterfaceAssociation struct { // The address of the Elastic IP address bound to the network interface. PublicIp *string `locationName:"publicIp" type:"string"` - metadataNetworkInterfaceAssociation `json:"-" xml:"-"` -} - -type metadataNetworkInterfaceAssociation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20251,11 +18603,7 @@ type NetworkInterfaceAttachment struct { // The attachment state. Status *string `locationName:"status" type:"string" enum:"AttachmentStatus"` - metadataNetworkInterfaceAttachment `json:"-" xml:"-"` -} - -type metadataNetworkInterfaceAttachment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20276,11 +18624,7 @@ type NetworkInterfaceAttachmentChanges struct { // Indicates whether the network interface is deleted when the instance is terminated. DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` - metadataNetworkInterfaceAttachmentChanges `json:"-" xml:"-"` -} - -type metadataNetworkInterfaceAttachmentChanges struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20309,11 +18653,7 @@ type NetworkInterfacePrivateIpAddress struct { // The private IP address. PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - metadataNetworkInterfacePrivateIpAddress `json:"-" xml:"-"` -} - -type metadataNetworkInterfacePrivateIpAddress struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20331,11 +18671,7 @@ type NewDhcpConfiguration struct { Values []*string `locationName:"Value" locationNameList:"item" type:"list"` - metadataNewDhcpConfiguration `json:"-" xml:"-"` -} - -type metadataNewDhcpConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20369,11 +18705,7 @@ type Placement struct { // is not supported for the ImportInstance command. Tenancy *string `locationName:"tenancy" type:"string" enum:"Tenancy"` - metadataPlacement `json:"-" xml:"-"` -} - -type metadataPlacement struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20397,11 +18729,7 @@ type PlacementGroup struct { // The placement strategy. Strategy *string `locationName:"strategy" type:"string" enum:"PlacementStrategy"` - metadataPlacementGroup `json:"-" xml:"-"` -} - -type metadataPlacementGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20422,11 +18750,7 @@ type PortRange struct { // The last port in the range. To *int64 `locationName:"to" type:"integer"` - metadataPortRange `json:"-" xml:"-"` -} - -type metadataPortRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20450,11 +18774,7 @@ type PrefixList struct { // The name of the prefix. PrefixListName *string `locationName:"prefixListName" type:"string"` - metadataPrefixList `json:"-" xml:"-"` -} - -type metadataPrefixList struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20472,11 +18792,7 @@ type PrefixListId struct { // The ID of the prefix. PrefixListId *string `locationName:"prefixListId" type:"string"` - metadataPrefixListId `json:"-" xml:"-"` -} - -type metadataPrefixListId struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20514,11 +18830,7 @@ type PriceSchedule struct { // second to the last month before the capacity reservation expires. Term *int64 `locationName:"term" type:"long"` - metadataPriceSchedule `json:"-" xml:"-"` -} - -type metadataPriceSchedule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20544,11 +18856,7 @@ type PriceScheduleSpecification struct { // second to the last month before the capacity reservation expires. Term *int64 `locationName:"term" type:"long"` - metadataPriceScheduleSpecification `json:"-" xml:"-"` -} - -type metadataPriceScheduleSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20569,11 +18877,7 @@ type PricingDetail struct { // The price per instance. Price *float64 `locationName:"price" type:"double"` - metadataPricingDetail `json:"-" xml:"-"` -} - -type metadataPricingDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20595,11 +18899,7 @@ type PrivateIpAddressSpecification struct { // The private IP addresses. PrivateIpAddress *string `locationName:"privateIpAddress" type:"string" required:"true"` - metadataPrivateIpAddressSpecification `json:"-" xml:"-"` -} - -type metadataPrivateIpAddressSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20620,11 +18920,7 @@ type ProductCode struct { // The type of product code. ProductCodeType *string `locationName:"type" type:"string" enum:"ProductCodeValues"` - metadataProductCode `json:"-" xml:"-"` -} - -type metadataProductCode struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20642,11 +18938,7 @@ type PropagatingVgw struct { // The ID of the virtual private gateway (VGW). GatewayId *string `locationName:"gatewayId" type:"string"` - metadataPropagatingVgw `json:"-" xml:"-"` -} - -type metadataPropagatingVgw struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20677,11 +18969,7 @@ type PurchaseReservedInstancesOfferingInput struct { // The ID of the Reserved instance offering to purchase. ReservedInstancesOfferingId *string `type:"string" required:"true"` - metadataPurchaseReservedInstancesOfferingInput `json:"-" xml:"-"` -} - -type metadataPurchaseReservedInstancesOfferingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20698,11 +18986,7 @@ type PurchaseReservedInstancesOfferingOutput struct { // The IDs of the purchased Reserved instances. ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"` - metadataPurchaseReservedInstancesOfferingOutput `json:"-" xml:"-"` -} - -type metadataPurchaseReservedInstancesOfferingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20725,11 +19009,7 @@ type RebootInstancesInput struct { // One or more instance IDs. InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` - metadataRebootInstancesInput `json:"-" xml:"-"` -} - -type metadataRebootInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20743,11 +19023,7 @@ func (s RebootInstancesInput) GoString() string { } type RebootInstancesOutput struct { - metadataRebootInstancesOutput `json:"-" xml:"-"` -} - -type metadataRebootInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20768,11 +19044,7 @@ type RecurringCharge struct { // The frequency of the recurring charge. Frequency *string `locationName:"frequency" type:"string" enum:"RecurringChargeFrequency"` - metadataRecurringCharge `json:"-" xml:"-"` -} - -type metadataRecurringCharge struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20793,11 +19065,7 @@ type Region struct { // The name of the region. RegionName *string `locationName:"regionName" type:"string"` - metadataRegion `json:"-" xml:"-"` -} - -type metadataRegion struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20862,11 +19130,7 @@ type RegisterImageInput struct { // Default: paravirtual VirtualizationType *string `locationName:"virtualizationType" type:"string"` - metadataRegisterImageInput `json:"-" xml:"-"` -} - -type metadataRegisterImageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20883,11 +19147,7 @@ type RegisterImageOutput struct { // The ID of the newly registered AMI. ImageId *string `locationName:"imageId" type:"string"` - metadataRegisterImageOutput `json:"-" xml:"-"` -} - -type metadataRegisterImageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20910,11 +19170,7 @@ type RejectVpcPeeringConnectionInput struct { // The ID of the VPC peering connection. VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string" required:"true"` - metadataRejectVpcPeeringConnectionInput `json:"-" xml:"-"` -} - -type metadataRejectVpcPeeringConnectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20931,11 +19187,7 @@ type RejectVpcPeeringConnectionOutput struct { // Returns true if the request succeeds; otherwise, it returns an error. Return *bool `locationName:"return" type:"boolean"` - metadataRejectVpcPeeringConnectionOutput `json:"-" xml:"-"` -} - -type metadataRejectVpcPeeringConnectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20961,11 +19213,7 @@ type ReleaseAddressInput struct { // [EC2-Classic] The Elastic IP address. Required for EC2-Classic. PublicIp *string `type:"string"` - metadataReleaseAddressInput `json:"-" xml:"-"` -} - -type metadataReleaseAddressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -20979,11 +19227,7 @@ func (s ReleaseAddressInput) GoString() string { } type ReleaseAddressOutput struct { - metadataReleaseAddressOutput `json:"-" xml:"-"` -} - -type metadataReleaseAddressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21000,11 +19244,7 @@ type ReleaseHostsInput struct { // The IDs of the Dedicated hosts you want to release. HostIds []*string `locationName:"hostId" locationNameList:"item" type:"list" required:"true"` - metadataReleaseHostsInput `json:"-" xml:"-"` -} - -type metadataReleaseHostsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21025,11 +19265,7 @@ type ReleaseHostsOutput struct { // message. Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` - metadataReleaseHostsOutput `json:"-" xml:"-"` -} - -type metadataReleaseHostsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21056,11 +19292,7 @@ type ReplaceNetworkAclAssociationInput struct { // The ID of the new network ACL to associate with the subnet. NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"` - metadataReplaceNetworkAclAssociationInput `json:"-" xml:"-"` -} - -type metadataReplaceNetworkAclAssociationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21077,11 +19309,7 @@ type ReplaceNetworkAclAssociationOutput struct { // The ID of the new association. NewAssociationId *string `locationName:"newAssociationId" type:"string"` - metadataReplaceNetworkAclAssociationOutput `json:"-" xml:"-"` -} - -type metadataReplaceNetworkAclAssociationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21129,11 +19357,7 @@ type ReplaceNetworkAclEntryInput struct { // The rule number of the entry to replace. RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"` - metadataReplaceNetworkAclEntryInput `json:"-" xml:"-"` -} - -type metadataReplaceNetworkAclEntryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21147,11 +19371,7 @@ func (s ReplaceNetworkAclEntryInput) GoString() string { } type ReplaceNetworkAclEntryOutput struct { - metadataReplaceNetworkAclEntryOutput `json:"-" xml:"-"` -} - -type metadataReplaceNetworkAclEntryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21190,11 +19410,7 @@ type ReplaceRouteInput struct { // The ID of a VPC peering connection. VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` - metadataReplaceRouteInput `json:"-" xml:"-"` -} - -type metadataReplaceRouteInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21208,11 +19424,7 @@ func (s ReplaceRouteInput) GoString() string { } type ReplaceRouteOutput struct { - metadataReplaceRouteOutput `json:"-" xml:"-"` -} - -type metadataReplaceRouteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21238,11 +19450,7 @@ type ReplaceRouteTableAssociationInput struct { // The ID of the new route table to associate with the subnet. RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` - metadataReplaceRouteTableAssociationInput `json:"-" xml:"-"` -} - -type metadataReplaceRouteTableAssociationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21259,11 +19467,7 @@ type ReplaceRouteTableAssociationOutput struct { // The ID of the new association. NewAssociationId *string `locationName:"newAssociationId" type:"string"` - metadataReplaceRouteTableAssociationOutput `json:"-" xml:"-"` -} - -type metadataReplaceRouteTableAssociationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21322,11 +19526,7 @@ type ReportInstanceStatusInput struct { // The status of all instances listed. Status *string `locationName:"status" type:"string" required:"true" enum:"ReportStatusType"` - metadataReportInstanceStatusInput `json:"-" xml:"-"` -} - -type metadataReportInstanceStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21340,11 +19540,7 @@ func (s ReportInstanceStatusInput) GoString() string { } type ReportInstanceStatusOutput struct { - metadataReportInstanceStatusOutput `json:"-" xml:"-"` -} - -type metadataReportInstanceStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21368,11 +19564,7 @@ type RequestSpotFleetInput struct { // The configuration for the Spot fleet request. SpotFleetRequestConfig *SpotFleetRequestConfigData `locationName:"spotFleetRequestConfig" type:"structure" required:"true"` - metadataRequestSpotFleetInput `json:"-" xml:"-"` -} - -type metadataRequestSpotFleetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21390,11 +19582,7 @@ type RequestSpotFleetOutput struct { // The ID of the Spot fleet request. SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - metadataRequestSpotFleetOutput `json:"-" xml:"-"` -} - -type metadataRequestSpotFleetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21493,11 +19681,7 @@ type RequestSpotInstancesInput struct { // Default: The request is effective indefinitely. ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"` - metadataRequestSpotInstancesInput `json:"-" xml:"-"` -} - -type metadataRequestSpotInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21515,11 +19699,7 @@ type RequestSpotInstancesOutput struct { // One or more Spot instance requests. SpotInstanceRequests []*SpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"` - metadataRequestSpotInstancesOutput `json:"-" xml:"-"` -} - -type metadataRequestSpotInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21586,11 +19766,7 @@ type RequestSpotLaunchSpecification struct { // The Base64-encoded MIME user data to make available to the instances. UserData *string `locationName:"userData" type:"string"` - metadataRequestSpotLaunchSpecification `json:"-" xml:"-"` -} - -type metadataRequestSpotLaunchSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21621,11 +19797,7 @@ type Reservation struct { // The ID of the reservation. ReservationId *string `locationName:"reservationId" type:"string"` - metadataReservation `json:"-" xml:"-"` -} - -type metadataReservation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21648,11 +19820,7 @@ type ReservedInstanceLimitPrice struct { // only supported currency is USD. CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - metadataReservedInstanceLimitPrice `json:"-" xml:"-"` -} - -type metadataReservedInstanceLimitPrice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21716,11 +19884,7 @@ type ReservedInstances struct { // The usage price of the Reserved instance, per hour. UsagePrice *float64 `locationName:"usagePrice" type:"float"` - metadataReservedInstances `json:"-" xml:"-"` -} - -type metadataReservedInstances struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21748,11 +19912,7 @@ type ReservedInstancesConfiguration struct { // EC2-Classic or EC2-VPC. Platform *string `locationName:"platform" type:"string"` - metadataReservedInstancesConfiguration `json:"-" xml:"-"` -} - -type metadataReservedInstancesConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21770,11 +19930,7 @@ type ReservedInstancesId struct { // The ID of the Reserved instance. ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"` - metadataReservedInstancesId `json:"-" xml:"-"` -} - -type metadataReservedInstancesId struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21821,11 +19977,7 @@ type ReservedInstancesListing struct { // The last modified timestamp of the listing. UpdateDate *time.Time `locationName:"updateDate" type:"timestamp" timestampFormat:"iso8601"` - metadataReservedInstancesListing `json:"-" xml:"-"` -} - -type metadataReservedInstancesListing struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21869,11 +20021,7 @@ type ReservedInstancesModification struct { // The time when the modification request was last updated. UpdateDate *time.Time `locationName:"updateDate" type:"timestamp" timestampFormat:"iso8601"` - metadataReservedInstancesModification `json:"-" xml:"-"` -} - -type metadataReservedInstancesModification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21895,11 +20043,7 @@ type ReservedInstancesModificationResult struct { // request. TargetConfiguration *ReservedInstancesConfiguration `locationName:"targetConfiguration" type:"structure"` - metadataReservedInstancesModificationResult `json:"-" xml:"-"` -} - -type metadataReservedInstancesModificationResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21957,11 +20101,7 @@ type ReservedInstancesOffering struct { // The usage price of the Reserved instance, per hour. UsagePrice *float64 `locationName:"usagePrice" type:"float"` - metadataReservedInstancesOffering `json:"-" xml:"-"` -} - -type metadataReservedInstancesOffering struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -21988,11 +20128,7 @@ type ResetImageAttributeInput struct { // The ID of the AMI. ImageId *string `type:"string" required:"true"` - metadataResetImageAttributeInput `json:"-" xml:"-"` -} - -type metadataResetImageAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22006,11 +20142,7 @@ func (s ResetImageAttributeInput) GoString() string { } type ResetImageAttributeOutput struct { - metadataResetImageAttributeOutput `json:"-" xml:"-"` -} - -type metadataResetImageAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22036,11 +20168,7 @@ type ResetInstanceAttributeInput struct { // The ID of the instance. InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - metadataResetInstanceAttributeInput `json:"-" xml:"-"` -} - -type metadataResetInstanceAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22054,11 +20182,7 @@ func (s ResetInstanceAttributeInput) GoString() string { } type ResetInstanceAttributeOutput struct { - metadataResetInstanceAttributeOutput `json:"-" xml:"-"` -} - -type metadataResetInstanceAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22084,11 +20208,7 @@ type ResetNetworkInterfaceAttributeInput struct { // The source/destination checking attribute. Resets the value to true. SourceDestCheck *string `locationName:"sourceDestCheck" type:"string"` - metadataResetNetworkInterfaceAttributeInput `json:"-" xml:"-"` -} - -type metadataResetNetworkInterfaceAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22102,11 +20222,7 @@ func (s ResetNetworkInterfaceAttributeInput) GoString() string { } type ResetNetworkInterfaceAttributeOutput struct { - metadataResetNetworkInterfaceAttributeOutput `json:"-" xml:"-"` -} - -type metadataResetNetworkInterfaceAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22133,11 +20249,7 @@ type ResetSnapshotAttributeInput struct { // The ID of the snapshot. SnapshotId *string `type:"string" required:"true"` - metadataResetSnapshotAttributeInput `json:"-" xml:"-"` -} - -type metadataResetSnapshotAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22151,11 +20263,7 @@ func (s ResetSnapshotAttributeInput) GoString() string { } type ResetSnapshotAttributeOutput struct { - metadataResetSnapshotAttributeOutput `json:"-" xml:"-"` -} - -type metadataResetSnapshotAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22178,11 +20286,7 @@ type RestoreAddressToClassicInput struct { // The Elastic IP address. PublicIp *string `locationName:"publicIp" type:"string" required:"true"` - metadataRestoreAddressToClassicInput `json:"-" xml:"-"` -} - -type metadataRestoreAddressToClassicInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22202,11 +20306,7 @@ type RestoreAddressToClassicOutput struct { // The move status for the IP address. Status *string `locationName:"status" type:"string" enum:"Status"` - metadataRestoreAddressToClassicOutput `json:"-" xml:"-"` -} - -type metadataRestoreAddressToClassicOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22259,11 +20359,7 @@ type RevokeSecurityGroupEgressInput struct { // For the ICMP code number, use -1 to specify all ICMP codes for the ICMP type. ToPort *int64 `locationName:"toPort" type:"integer"` - metadataRevokeSecurityGroupEgressInput `json:"-" xml:"-"` -} - -type metadataRevokeSecurityGroupEgressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22277,11 +20373,7 @@ func (s RevokeSecurityGroupEgressInput) GoString() string { } type RevokeSecurityGroupEgressOutput struct { - metadataRevokeSecurityGroupEgressOutput `json:"-" xml:"-"` -} - -type metadataRevokeSecurityGroupEgressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22343,11 +20435,7 @@ type RevokeSecurityGroupIngressInput struct { // For the ICMP code number, use -1 to specify all ICMP codes for the ICMP type. ToPort *int64 `type:"integer"` - metadataRevokeSecurityGroupIngressInput `json:"-" xml:"-"` -} - -type metadataRevokeSecurityGroupIngressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22361,11 +20449,7 @@ func (s RevokeSecurityGroupIngressInput) GoString() string { } type RevokeSecurityGroupIngressOutput struct { - metadataRevokeSecurityGroupIngressOutput `json:"-" xml:"-"` -} - -type metadataRevokeSecurityGroupIngressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22414,11 +20498,7 @@ type Route struct { // The ID of the VPC peering connection. VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` - metadataRoute `json:"-" xml:"-"` -} - -type metadataRoute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22451,11 +20531,7 @@ type RouteTable struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataRouteTable `json:"-" xml:"-"` -} - -type metadataRouteTable struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22482,11 +20558,7 @@ type RouteTableAssociation struct { // The ID of the subnet. A subnet ID is not returned for an implicit association. SubnetId *string `locationName:"subnetId" type:"string"` - metadataRouteTableAssociation `json:"-" xml:"-"` -} - -type metadataRouteTableAssociation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22633,11 +20705,7 @@ type RunInstancesInput struct { // The Base64-encoded MIME user data for the instances. UserData *string `type:"string"` - metadataRunInstancesInput `json:"-" xml:"-"` -} - -type metadataRunInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22655,11 +20723,7 @@ type RunInstancesMonitoringEnabled struct { // Indicates whether monitoring is enabled for the instance. Enabled *bool `locationName:"enabled" type:"boolean" required:"true"` - metadataRunInstancesMonitoringEnabled `json:"-" xml:"-"` -} - -type metadataRunInstancesMonitoringEnabled struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22695,11 +20759,7 @@ type S3Storage struct { // The signature of the Base64 encoded JSON document. UploadPolicySignature *string `locationName:"uploadPolicySignature" type:"string"` - metadataS3Storage `json:"-" xml:"-"` -} - -type metadataS3Storage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22738,11 +20798,7 @@ type SecurityGroup struct { // [EC2-VPC] The ID of the VPC for the security group. VpcId *string `locationName:"vpcId" type:"string"` - metadataSecurityGroup `json:"-" xml:"-"` -} - -type metadataSecurityGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22812,11 +20868,7 @@ type Snapshot struct { // The size of the volume, in GiB. VolumeSize *int64 `locationName:"volumeSize" type:"integer"` - metadataSnapshot `json:"-" xml:"-"` -} - -type metadataSnapshot struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22861,11 +20913,7 @@ type SnapshotDetail struct { // Describes the S3 bucket for the disk image. UserBucket *UserBucketDetails `locationName:"userBucket" type:"structure"` - metadataSnapshotDetail `json:"-" xml:"-"` -} - -type metadataSnapshotDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22895,11 +20943,7 @@ type SnapshotDiskContainer struct { // Describes the S3 bucket for the disk image. UserBucket *UserBucket `type:"structure"` - metadataSnapshotDiskContainer `json:"-" xml:"-"` -} - -type metadataSnapshotDiskContainer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22941,11 +20985,7 @@ type SnapshotTaskDetail struct { // The S3 bucket for the disk image. UserBucket *UserBucketDetails `locationName:"userBucket" type:"structure"` - metadataSnapshotTaskDetail `json:"-" xml:"-"` -} - -type metadataSnapshotTaskDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -22975,11 +21015,7 @@ type SpotDatafeedSubscription struct { // The state of the Spot instance data feed subscription. State *string `locationName:"state" type:"string" enum:"DatafeedSubscriptionState"` - metadataSpotDatafeedSubscription `json:"-" xml:"-"` -} - -type metadataSpotDatafeedSubscription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23062,11 +21098,7 @@ type SpotFleetLaunchSpecification struct { // the default is 1. WeightedCapacity *float64 `locationName:"weightedCapacity" type:"double"` - metadataSpotFleetLaunchSpecification `json:"-" xml:"-"` -} - -type metadataSpotFleetLaunchSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23086,11 +21118,7 @@ type SpotFleetMonitoring struct { // Default: false Enabled *bool `locationName:"enabled" type:"boolean"` - metadataSpotFleetMonitoring `json:"-" xml:"-"` -} - -type metadataSpotFleetMonitoring struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23117,11 +21145,7 @@ type SpotFleetRequestConfig struct { // The state of the Spot fleet request. SpotFleetRequestState *string `locationName:"spotFleetRequestState" type:"string" required:"true" enum:"BatchState"` - metadataSpotFleetRequestConfig `json:"-" xml:"-"` -} - -type metadataSpotFleetRequestConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23179,11 +21203,7 @@ type SpotFleetRequestConfigData struct { // the request. ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"` - metadataSpotFleetRequestConfigData `json:"-" xml:"-"` -} - -type metadataSpotFleetRequestConfigData struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23266,11 +21286,7 @@ type SpotInstanceRequest struct { // it remains active until it is canceled or this date is reached. ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"` - metadataSpotInstanceRequest `json:"-" xml:"-"` -} - -type metadataSpotInstanceRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23291,11 +21307,7 @@ type SpotInstanceStateFault struct { // The message for the Spot instance state change. Message *string `locationName:"message" type:"string"` - metadataSpotInstanceStateFault `json:"-" xml:"-"` -} - -type metadataSpotInstanceStateFault struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23321,11 +21333,7 @@ type SpotInstanceStatus struct { // YYYY-MM-DDTHH:MM:SSZ). UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" timestampFormat:"iso8601"` - metadataSpotInstanceStatus `json:"-" xml:"-"` -} - -type metadataSpotInstanceStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23346,11 +21354,7 @@ type SpotPlacement struct { // The name of the placement group (for cluster instances). GroupName *string `locationName:"groupName" type:"string"` - metadataSpotPlacement `json:"-" xml:"-"` -} - -type metadataSpotPlacement struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23381,11 +21385,7 @@ type SpotPrice struct { // The date and time the request was created, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"` - metadataSpotPrice `json:"-" xml:"-"` -} - -type metadataSpotPrice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23411,11 +21411,7 @@ type StartInstancesInput struct { // One or more instance IDs. InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` - metadataStartInstancesInput `json:"-" xml:"-"` -} - -type metadataStartInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23432,11 +21428,7 @@ type StartInstancesOutput struct { // Information about one or more started instances. StartingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"` - metadataStartInstancesOutput `json:"-" xml:"-"` -} - -type metadataStartInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23479,11 +21471,7 @@ type StateReason struct { // Client.InvalidSnapshot.NotFound: The specified snapshot was not found. Message *string `locationName:"message" type:"string"` - metadataStateReason `json:"-" xml:"-"` -} - -type metadataStateReason struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23514,11 +21502,7 @@ type StopInstancesInput struct { // One or more instance IDs. InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` - metadataStopInstancesInput `json:"-" xml:"-"` -} - -type metadataStopInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23535,11 +21519,7 @@ type StopInstancesOutput struct { // Information about one or more stopped instances. StoppingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"` - metadataStopInstancesOutput `json:"-" xml:"-"` -} - -type metadataStopInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23557,11 +21537,7 @@ type Storage struct { // An Amazon S3 storage location. S3 *S3Storage `type:"structure"` - metadataStorage `json:"-" xml:"-"` -} - -type metadataStorage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23604,11 +21580,7 @@ type Subnet struct { // The ID of the VPC the subnet is in. VpcId *string `locationName:"vpcId" type:"string"` - metadataSubnet `json:"-" xml:"-"` -} - -type metadataSubnet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23635,11 +21607,7 @@ type Tag struct { // characters. Value *string `locationName:"value" type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23666,11 +21634,7 @@ type TagDescription struct { // The tag value. Value *string `locationName:"value" type:"string"` - metadataTagDescription `json:"-" xml:"-"` -} - -type metadataTagDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23693,11 +21657,7 @@ type TerminateInstancesInput struct { // One or more instance IDs. InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` - metadataTerminateInstancesInput `json:"-" xml:"-"` -} - -type metadataTerminateInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23714,11 +21674,7 @@ type TerminateInstancesOutput struct { // Information about one or more terminated instances. TerminatingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"` - metadataTerminateInstancesOutput `json:"-" xml:"-"` -} - -type metadataTerminateInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23739,11 +21695,7 @@ type UnassignPrivateIpAddressesInput struct { // You can specify this option multiple times to unassign more than one IP address. PrivateIpAddresses []*string `locationName:"privateIpAddress" locationNameList:"PrivateIpAddress" type:"list" required:"true"` - metadataUnassignPrivateIpAddressesInput `json:"-" xml:"-"` -} - -type metadataUnassignPrivateIpAddressesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23757,11 +21709,7 @@ func (s UnassignPrivateIpAddressesInput) GoString() string { } type UnassignPrivateIpAddressesOutput struct { - metadataUnassignPrivateIpAddressesOutput `json:"-" xml:"-"` -} - -type metadataUnassignPrivateIpAddressesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23784,11 +21732,7 @@ type UnmonitorInstancesInput struct { // One or more instance IDs. InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` - metadataUnmonitorInstancesInput `json:"-" xml:"-"` -} - -type metadataUnmonitorInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23805,11 +21749,7 @@ type UnmonitorInstancesOutput struct { // Monitoring information for one or more instances. InstanceMonitorings []*InstanceMonitoring `locationName:"instancesSet" locationNameList:"item" type:"list"` - metadataUnmonitorInstancesOutput `json:"-" xml:"-"` -} - -type metadataUnmonitorInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23830,11 +21770,7 @@ type UnsuccessfulItem struct { // The ID of the resource. ResourceId *string `locationName:"resourceId" type:"string"` - metadataUnsuccessfulItem `json:"-" xml:"-"` -} - -type metadataUnsuccessfulItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23856,11 +21792,7 @@ type UnsuccessfulItemError struct { // The error message accompanying the error code. Message *string `locationName:"message" type:"string" required:"true"` - metadataUnsuccessfulItemError `json:"-" xml:"-"` -} - -type metadataUnsuccessfulItemError struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23881,11 +21813,7 @@ type UserBucket struct { // The key for the disk image. S3Key *string `type:"string"` - metadataUserBucket `json:"-" xml:"-"` -} - -type metadataUserBucket struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23906,11 +21834,7 @@ type UserBucketDetails struct { // The key from which the disk image was created. S3Key *string `locationName:"s3Key" type:"string"` - metadataUserBucketDetails `json:"-" xml:"-"` -} - -type metadataUserBucketDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23928,11 +21852,7 @@ type UserData struct { // The Base64-encoded MIME user data for the instance. Data *string `locationName:"data" type:"string"` - metadataUserData `json:"-" xml:"-"` -} - -type metadataUserData struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23958,11 +21878,7 @@ type UserIdGroupPair struct { // The ID of an AWS account. EC2-Classic only. UserId *string `locationName:"userId" type:"string"` - metadataUserIdGroupPair `json:"-" xml:"-"` -} - -type metadataUserIdGroupPair struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -23993,11 +21909,7 @@ type VgwTelemetry struct { // If an error occurs, a description of the error. StatusMessage *string `locationName:"statusMessage" type:"string"` - metadataVgwTelemetry `json:"-" xml:"-"` -} - -type metadataVgwTelemetry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24062,11 +21974,7 @@ type Volume struct { // Provisioned IOPS (SSD) volumes, or standard for Magnetic volumes. VolumeType *string `locationName:"volumeType" type:"string" enum:"VolumeType"` - metadataVolume `json:"-" xml:"-"` -} - -type metadataVolume struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24099,11 +22007,7 @@ type VolumeAttachment struct { // The ID of the volume. VolumeId *string `locationName:"volumeId" type:"string"` - metadataVolumeAttachment `json:"-" xml:"-"` -} - -type metadataVolumeAttachment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24121,11 +22025,7 @@ type VolumeDetail struct { // The size of the volume, in GiB. Size *int64 `locationName:"size" type:"long" required:"true"` - metadataVolumeDetail `json:"-" xml:"-"` -} - -type metadataVolumeDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24152,11 +22052,7 @@ type VolumeStatusAction struct { // The event type associated with this operation. EventType *string `locationName:"eventType" type:"string"` - metadataVolumeStatusAction `json:"-" xml:"-"` -} - -type metadataVolumeStatusAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24177,11 +22073,7 @@ type VolumeStatusDetails struct { // The intended status of the volume status. Status *string `locationName:"status" type:"string"` - metadataVolumeStatusDetails `json:"-" xml:"-"` -} - -type metadataVolumeStatusDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24211,11 +22103,7 @@ type VolumeStatusEvent struct { // The earliest start time of the event. NotBefore *time.Time `locationName:"notBefore" type:"timestamp" timestampFormat:"iso8601"` - metadataVolumeStatusEvent `json:"-" xml:"-"` -} - -type metadataVolumeStatusEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24236,11 +22124,7 @@ type VolumeStatusInfo struct { // The status of the volume. Status *string `locationName:"status" type:"string" enum:"VolumeStatusInfoStatus"` - metadataVolumeStatusInfo `json:"-" xml:"-"` -} - -type metadataVolumeStatusInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24270,11 +22154,7 @@ type VolumeStatusItem struct { // The volume status. VolumeStatus *VolumeStatusInfo `locationName:"volumeStatus" type:"structure"` - metadataVolumeStatusItem `json:"-" xml:"-"` -} - -type metadataVolumeStatusItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24311,11 +22191,7 @@ type Vpc struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataVpc `json:"-" xml:"-"` -} - -type metadataVpc struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24336,11 +22212,7 @@ type VpcAttachment struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataVpcAttachment `json:"-" xml:"-"` -} - -type metadataVpcAttachment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24364,11 +22236,7 @@ type VpcClassicLink struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataVpcClassicLink `json:"-" xml:"-"` -} - -type metadataVpcClassicLink struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24404,11 +22272,7 @@ type VpcEndpoint struct { // The ID of the VPC to which the endpoint is associated. VpcId *string `locationName:"vpcId" type:"string"` - metadataVpcEndpoint `json:"-" xml:"-"` -} - -type metadataVpcEndpoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24441,11 +22305,7 @@ type VpcPeeringConnection struct { // The ID of the VPC peering connection. VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` - metadataVpcPeeringConnection `json:"-" xml:"-"` -} - -type metadataVpcPeeringConnection struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24466,11 +22326,7 @@ type VpcPeeringConnectionStateReason struct { // A message that provides more information about the status, if applicable. Message *string `locationName:"message" type:"string"` - metadataVpcPeeringConnectionStateReason `json:"-" xml:"-"` -} - -type metadataVpcPeeringConnectionStateReason struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24494,11 +22350,7 @@ type VpcPeeringConnectionVpcInfo struct { // The ID of the VPC. VpcId *string `locationName:"vpcId" type:"string"` - metadataVpcPeeringConnectionVpcInfo `json:"-" xml:"-"` -} - -type metadataVpcPeeringConnectionVpcInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24546,11 +22398,7 @@ type VpnConnection struct { // The ID of the virtual private gateway at the AWS side of the VPN connection. VpnGatewayId *string `locationName:"vpnGatewayId" type:"string"` - metadataVpnConnection `json:"-" xml:"-"` -} - -type metadataVpnConnection struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24569,11 +22417,7 @@ type VpnConnectionOptions struct { // must be used for devices that don't support BGP. StaticRoutesOnly *bool `locationName:"staticRoutesOnly" type:"boolean"` - metadataVpnConnectionOptions `json:"-" xml:"-"` -} - -type metadataVpnConnectionOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24592,11 +22436,7 @@ type VpnConnectionOptionsSpecification struct { // must be used for devices that don't support BGP. StaticRoutesOnly *bool `locationName:"staticRoutesOnly" type:"boolean"` - metadataVpnConnectionOptionsSpecification `json:"-" xml:"-"` -} - -type metadataVpnConnectionOptionsSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24629,11 +22469,7 @@ type VpnGateway struct { // The ID of the virtual private gateway. VpnGatewayId *string `locationName:"vpnGatewayId" type:"string"` - metadataVpnGateway `json:"-" xml:"-"` -} - -type metadataVpnGateway struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -24657,11 +22493,7 @@ type VpnStaticRoute struct { // The current state of the static route. State *string `locationName:"state" type:"string" enum:"VpnState"` - metadataVpnStaticRoute `json:"-" xml:"-"` -} - -type metadataVpnStaticRoute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/ecs/api.go b/service/ecs/api.go index 7605aa5dde7..1ea5098e7e0 100644 --- a/service/ecs/api.go +++ b/service/ecs/api.go @@ -981,11 +981,7 @@ type Attribute struct { // The value of the container instance attribute. Value *string `locationName:"value" type:"string"` - metadataAttribute `json:"-" xml:"-"` -} - -type metadataAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1030,11 +1026,7 @@ type Cluster struct { // the associated instances can accept tasks. Status *string `locationName:"status" type:"string"` - metadataCluster `json:"-" xml:"-"` -} - -type metadataCluster struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1071,11 +1063,7 @@ type Container struct { // The Amazon Resource Name (ARN) of the task. TaskArn *string `locationName:"taskArn" type:"string"` - metadataContainer `json:"-" xml:"-"` -} - -type metadataContainer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1340,11 +1328,7 @@ type ContainerDefinition struct { // and the --workdir option to docker run (https://docs.docker.com/reference/commandline/run/). WorkingDirectory *string `locationName:"workingDirectory" type:"string"` - metadataContainerDefinition `json:"-" xml:"-"` -} - -type metadataContainerDefinition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1405,11 +1389,7 @@ type ContainerInstance struct { // running on the container instance. VersionInfo *VersionInfo `locationName:"versionInfo" type:"structure"` - metadataContainerInstance `json:"-" xml:"-"` -} - -type metadataContainerInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1436,11 +1416,7 @@ type ContainerOverride struct { // The name of the container that receives the override. Name *string `locationName:"name" type:"string"` - metadataContainerOverride `json:"-" xml:"-"` -} - -type metadataContainerOverride struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1459,11 +1435,7 @@ type CreateClusterInput struct { // numbers, hyphens, and underscores are allowed. ClusterName *string `locationName:"clusterName" type:"string"` - metadataCreateClusterInput `json:"-" xml:"-"` -} - -type metadataCreateClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1480,11 +1452,7 @@ type CreateClusterOutput struct { // The full description of your new cluster. Cluster *Cluster `locationName:"cluster" type:"structure"` - metadataCreateClusterOutput `json:"-" xml:"-"` -} - -type metadataCreateClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1533,11 +1501,7 @@ type CreateServiceInput struct { // the latest ACTIVE revision is used. TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"` - metadataCreateServiceInput `json:"-" xml:"-"` -} - -type metadataCreateServiceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1554,11 +1518,7 @@ type CreateServiceOutput struct { // The full description of your service following the create call. Service *Service `locationName:"service" type:"structure"` - metadataCreateServiceOutput `json:"-" xml:"-"` -} - -type metadataCreateServiceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1575,11 +1535,7 @@ type DeleteClusterInput struct { // The short name or full Amazon Resource Name (ARN) of the cluster to delete. Cluster *string `locationName:"cluster" type:"string" required:"true"` - metadataDeleteClusterInput `json:"-" xml:"-"` -} - -type metadataDeleteClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1596,11 +1552,7 @@ type DeleteClusterOutput struct { // The full description of the deleted cluster. Cluster *Cluster `locationName:"cluster" type:"structure"` - metadataDeleteClusterOutput `json:"-" xml:"-"` -} - -type metadataDeleteClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1621,11 +1573,7 @@ type DeleteServiceInput struct { // The name of the service to delete. Service *string `locationName:"service" type:"string" required:"true"` - metadataDeleteServiceInput `json:"-" xml:"-"` -} - -type metadataDeleteServiceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1642,11 +1590,7 @@ type DeleteServiceOutput struct { // The full description of the deleted service. Service *Service `locationName:"service" type:"structure"` - metadataDeleteServiceOutput `json:"-" xml:"-"` -} - -type metadataDeleteServiceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1689,11 +1633,7 @@ type Deployment struct { // The Unix time in seconds and milliseconds when the service was last updated. UpdatedAt *time.Time `locationName:"updatedAt" type:"timestamp" timestampFormat:"unix"` - metadataDeployment `json:"-" xml:"-"` -} - -type metadataDeployment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1729,11 +1669,7 @@ type DeregisterContainerInstanceInput struct { // of that task, on a different container instance if possible. Force *bool `locationName:"force" type:"boolean"` - metadataDeregisterContainerInstanceInput `json:"-" xml:"-"` -} - -type metadataDeregisterContainerInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1751,11 +1687,7 @@ type DeregisterContainerInstanceOutput struct { // with a cluster. ContainerInstance *ContainerInstance `locationName:"containerInstance" type:"structure"` - metadataDeregisterContainerInstanceOutput `json:"-" xml:"-"` -} - -type metadataDeregisterContainerInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1773,11 +1705,7 @@ type DeregisterTaskDefinitionInput struct { // of the task definition to deregister. You must specify a revision. TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"` - metadataDeregisterTaskDefinitionInput `json:"-" xml:"-"` -} - -type metadataDeregisterTaskDefinitionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1794,11 +1722,7 @@ type DeregisterTaskDefinitionOutput struct { // The full description of the deregistered task. TaskDefinition *TaskDefinition `locationName:"taskDefinition" type:"structure"` - metadataDeregisterTaskDefinitionOutput `json:"-" xml:"-"` -} - -type metadataDeregisterTaskDefinitionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1816,11 +1740,7 @@ type DescribeClustersInput struct { // (ARN) entries. If you do not specify a cluster, the default cluster is assumed. Clusters []*string `locationName:"clusters" type:"list"` - metadataDescribeClustersInput `json:"-" xml:"-"` -} - -type metadataDescribeClustersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1840,11 +1760,7 @@ type DescribeClustersOutput struct { // Any failures associated with the call. Failures []*Failure `locationName:"failures" type:"list"` - metadataDescribeClustersOutput `json:"-" xml:"-"` -} - -type metadataDescribeClustersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1867,11 +1783,7 @@ type DescribeContainerInstancesInput struct { // Name (ARN) entries. ContainerInstances []*string `locationName:"containerInstances" type:"list" required:"true"` - metadataDescribeContainerInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeContainerInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1891,11 +1803,7 @@ type DescribeContainerInstancesOutput struct { // Any failures associated with the call. Failures []*Failure `locationName:"failures" type:"list"` - metadataDescribeContainerInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeContainerInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1916,11 +1824,7 @@ type DescribeServicesInput struct { // A list of services to describe. Services []*string `locationName:"services" type:"list" required:"true"` - metadataDescribeServicesInput `json:"-" xml:"-"` -} - -type metadataDescribeServicesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1940,11 +1844,7 @@ type DescribeServicesOutput struct { // The list of services described. Services []*Service `locationName:"services" type:"list"` - metadataDescribeServicesOutput `json:"-" xml:"-"` -} - -type metadataDescribeServicesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1963,11 +1863,7 @@ type DescribeTaskDefinitionInput struct { // of the task definition to describe. TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"` - metadataDescribeTaskDefinitionInput `json:"-" xml:"-"` -} - -type metadataDescribeTaskDefinitionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1984,11 +1880,7 @@ type DescribeTaskDefinitionOutput struct { // The full task definition description. TaskDefinition *TaskDefinition `locationName:"taskDefinition" type:"structure"` - metadataDescribeTaskDefinitionOutput `json:"-" xml:"-"` -} - -type metadataDescribeTaskDefinitionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2010,11 +1902,7 @@ type DescribeTasksInput struct { // A space-separated list of task IDs or full Amazon Resource Name (ARN) entries. Tasks []*string `locationName:"tasks" type:"list" required:"true"` - metadataDescribeTasksInput `json:"-" xml:"-"` -} - -type metadataDescribeTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2034,11 +1922,7 @@ type DescribeTasksOutput struct { // The list of tasks. Tasks []*Task `locationName:"tasks" type:"list"` - metadataDescribeTasksOutput `json:"-" xml:"-"` -} - -type metadataDescribeTasksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2062,11 +1946,7 @@ type DiscoverPollEndpointInput struct { // example, arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID. ContainerInstance *string `locationName:"containerInstance" type:"string"` - metadataDiscoverPollEndpointInput `json:"-" xml:"-"` -} - -type metadataDiscoverPollEndpointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2086,11 +1966,7 @@ type DiscoverPollEndpointOutput struct { // The telemetry endpoint for the Amazon ECS agent. TelemetryEndpoint *string `locationName:"telemetryEndpoint" type:"string"` - metadataDiscoverPollEndpointOutput `json:"-" xml:"-"` -} - -type metadataDiscoverPollEndpointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2111,11 +1987,7 @@ type Failure struct { // The reason for the failure. Reason *string `locationName:"reason" type:"string"` - metadataFailure `json:"-" xml:"-"` -} - -type metadataFailure struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2137,11 +2009,7 @@ type HostEntry struct { // The IP address to use in the /etc/hosts entry. IpAddress *string `locationName:"ipAddress" type:"string" required:"true"` - metadataHostEntry `json:"-" xml:"-"` -} - -type metadataHostEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2161,11 +2029,7 @@ type HostVolumeProperties struct { // for you. SourcePath *string `locationName:"sourcePath" type:"string"` - metadataHostVolumeProperties `json:"-" xml:"-"` -} - -type metadataHostVolumeProperties struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2188,11 +2052,7 @@ type KeyValuePair struct { // of the environment variable. Value *string `locationName:"value" type:"string"` - metadataKeyValuePair `json:"-" xml:"-"` -} - -type metadataKeyValuePair struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2221,11 +2081,7 @@ type ListClustersInput struct { // nextToken value. This value is null when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataListClustersInput `json:"-" xml:"-"` -} - -type metadataListClustersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2249,11 +2105,7 @@ type ListClustersOutput struct { // more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataListClustersOutput `json:"-" xml:"-"` -} - -type metadataListClustersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2289,11 +2141,7 @@ type ListContainerInstancesInput struct { // to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataListContainerInstancesInput `json:"-" xml:"-"` -} - -type metadataListContainerInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2317,11 +2165,7 @@ type ListContainerInstancesOutput struct { // when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataListContainerInstancesOutput `json:"-" xml:"-"` -} - -type metadataListContainerInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2355,11 +2199,7 @@ type ListServicesInput struct { // nextToken value. This value is null when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataListServicesInput `json:"-" xml:"-"` -} - -type metadataListServicesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2383,11 +2223,7 @@ type ListServicesOutput struct { // with the specified cluster. ServiceArns []*string `locationName:"serviceArns" type:"list"` - metadataListServicesOutput `json:"-" xml:"-"` -} - -type metadataListServicesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2423,11 +2259,7 @@ type ListTaskDefinitionFamiliesInput struct { // to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataListTaskDefinitionFamiliesInput `json:"-" xml:"-"` -} - -type metadataListTaskDefinitionFamiliesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2451,11 +2283,7 @@ type ListTaskDefinitionFamiliesOutput struct { // null when there are no more results to return. NextToken *string `locationName:"nextToken" type:"string"` - metadataListTaskDefinitionFamiliesOutput `json:"-" xml:"-"` -} - -type metadataListTaskDefinitionFamiliesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2505,11 +2333,7 @@ type ListTaskDefinitionsInput struct { // output, be sure to keep the status value constant in each subsequent request. Status *string `locationName:"status" type:"string" enum:"TaskDefinitionStatus"` - metadataListTaskDefinitionsInput `json:"-" xml:"-"` -} - -type metadataListTaskDefinitionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2533,11 +2357,7 @@ type ListTaskDefinitionsOutput struct { // request. TaskDefinitionArns []*string `locationName:"taskDefinitionArns" type:"list"` - metadataListTaskDefinitionsOutput `json:"-" xml:"-"` -} - -type metadataListTaskDefinitionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2594,11 +2414,7 @@ type ListTasksInput struct { // value limits the results to tasks that were started with that value. StartedBy *string `locationName:"startedBy" type:"string"` - metadataListTasksInput `json:"-" xml:"-"` -} - -type metadataListTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2621,11 +2437,7 @@ type ListTasksOutput struct { // The list of task Amazon Resource Name (ARN) entries for the ListTasks request. TaskArns []*string `locationName:"taskArns" type:"list"` - metadataListTasksOutput `json:"-" xml:"-"` -} - -type metadataListTasksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2652,11 +2464,7 @@ type LoadBalancer struct { // The name of the load balancer. LoadBalancerName *string `locationName:"loadBalancerName" type:"string"` - metadataLoadBalancer `json:"-" xml:"-"` -} - -type metadataLoadBalancer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2685,11 +2493,7 @@ type LogConfiguration struct { // | grep "Server API version" Options map[string]*string `locationName:"options" type:"map"` - metadataLogConfiguration `json:"-" xml:"-"` -} - -type metadataLogConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2715,11 +2519,7 @@ type MountPoint struct { // The name of the volume to mount. SourceVolume *string `locationName:"sourceVolume" type:"string"` - metadataMountPoint `json:"-" xml:"-"` -} - -type metadataMountPoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2749,11 +2549,7 @@ type NetworkBinding struct { // The protocol used for the network binding. Protocol *string `locationName:"protocol" type:"string" enum:"TransportProtocol"` - metadataNetworkBinding `json:"-" xml:"-"` -} - -type metadataNetworkBinding struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2805,11 +2601,7 @@ type PortMapping struct { // default is tcp. Protocol *string `locationName:"protocol" type:"string" enum:"TransportProtocol"` - metadataPortMapping `json:"-" xml:"-"` -} - -type metadataPortMapping struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2851,11 +2643,7 @@ type RegisterContainerInstanceInput struct { // running on the container instance. VersionInfo *VersionInfo `locationName:"versionInfo" type:"structure"` - metadataRegisterContainerInstanceInput `json:"-" xml:"-"` -} - -type metadataRegisterContainerInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2873,11 +2661,7 @@ type RegisterContainerInstanceOutput struct { // with a cluster. ContainerInstance *ContainerInstance `locationName:"containerInstance" type:"structure"` - metadataRegisterContainerInstanceOutput `json:"-" xml:"-"` -} - -type metadataRegisterContainerInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2905,11 +2689,7 @@ type RegisterTaskDefinitionInput struct { // may use. Volumes []*Volume `locationName:"volumes" type:"list"` - metadataRegisterTaskDefinitionInput `json:"-" xml:"-"` -} - -type metadataRegisterTaskDefinitionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2926,11 +2706,7 @@ type RegisterTaskDefinitionOutput struct { // The full description of the registered task definition. TaskDefinition *TaskDefinition `locationName:"taskDefinition" type:"structure"` - metadataRegisterTaskDefinitionOutput `json:"-" xml:"-"` -} - -type metadataRegisterTaskDefinitionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2966,11 +2742,7 @@ type Resource struct { // The type of the resource, such as INTEGER, DOUBLE, LONG, or STRINGSET. Type *string `locationName:"type" type:"string"` - metadataResource `json:"-" xml:"-"` -} - -type metadataResource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3021,11 +2793,7 @@ type RunTaskInput struct { // ACTIVE revision is used. TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"` - metadataRunTaskInput `json:"-" xml:"-"` -} - -type metadataRunTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3046,11 +2814,7 @@ type RunTaskOutput struct { // placed on your cluster are described here. Tasks []*Task `locationName:"tasks" type:"list"` - metadataRunTaskOutput `json:"-" xml:"-"` -} - -type metadataRunTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3113,11 +2877,7 @@ type Service struct { // UpdateService. TaskDefinition *string `locationName:"taskDefinition" type:"string"` - metadataService `json:"-" xml:"-"` -} - -type metadataService struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3141,11 +2901,7 @@ type ServiceEvent struct { // The event message. Message *string `locationName:"message" type:"string"` - metadataServiceEvent `json:"-" xml:"-"` -} - -type metadataServiceEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3197,11 +2953,7 @@ type StartTaskInput struct { // ACTIVE revision is used. TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"` - metadataStartTaskInput `json:"-" xml:"-"` -} - -type metadataStartTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3222,11 +2974,7 @@ type StartTaskOutput struct { // placed on your container instances are described here. Tasks []*Task `locationName:"tasks" type:"list"` - metadataStartTaskOutput `json:"-" xml:"-"` -} - -type metadataStartTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3254,11 +3002,7 @@ type StopTaskInput struct { // The task ID or full Amazon Resource Name (ARN) entry of the task to stop. Task *string `locationName:"task" type:"string" required:"true"` - metadataStopTaskInput `json:"-" xml:"-"` -} - -type metadataStopTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3275,11 +3019,7 @@ type StopTaskOutput struct { // Details on a task in a cluster. Task *Task `locationName:"task" type:"structure"` - metadataStopTaskOutput `json:"-" xml:"-"` -} - -type metadataStopTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3316,11 +3056,7 @@ type SubmitContainerStateChangeInput struct { // container. Task *string `locationName:"task" type:"string"` - metadataSubmitContainerStateChangeInput `json:"-" xml:"-"` -} - -type metadataSubmitContainerStateChangeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3337,11 +3073,7 @@ type SubmitContainerStateChangeOutput struct { // Acknowledgement of the state change. Acknowledgment *string `locationName:"acknowledgment" type:"string"` - metadataSubmitContainerStateChangeOutput `json:"-" xml:"-"` -} - -type metadataSubmitContainerStateChangeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3369,11 +3101,7 @@ type SubmitTaskStateChangeInput struct { // request. Task *string `locationName:"task" type:"string"` - metadataSubmitTaskStateChangeInput `json:"-" xml:"-"` -} - -type metadataSubmitTaskStateChangeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3390,11 +3118,7 @@ type SubmitTaskStateChangeOutput struct { // Acknowledgement of the state change. Acknowledgment *string `locationName:"acknowledgment" type:"string"` - metadataSubmitTaskStateChangeOutput `json:"-" xml:"-"` -} - -type metadataSubmitTaskStateChangeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3454,11 +3178,7 @@ type Task struct { // the task. TaskDefinitionArn *string `locationName:"taskDefinitionArn" type:"string"` - metadataTask `json:"-" xml:"-"` -} - -type metadataTask struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3503,11 +3223,7 @@ type TaskDefinition struct { // in the Amazon EC2 Container Service Developer Guide. Volumes []*Volume `locationName:"volumes" type:"list"` - metadataTaskDefinition `json:"-" xml:"-"` -} - -type metadataTaskDefinition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3525,11 +3241,7 @@ type TaskOverride struct { // One or more container overrides sent to a task. ContainerOverrides []*ContainerOverride `locationName:"containerOverrides" type:"list"` - metadataTaskOverride `json:"-" xml:"-"` -} - -type metadataTaskOverride struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3553,11 +3265,7 @@ type Ulimit struct { // The soft limit for the ulimit type. SoftLimit *int64 `locationName:"softLimit" type:"integer" required:"true"` - metadataUlimit `json:"-" xml:"-"` -} - -type metadataUlimit struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3581,11 +3289,7 @@ type UpdateContainerAgentInput struct { // agent. ContainerInstance *string `locationName:"containerInstance" type:"string" required:"true"` - metadataUpdateContainerAgentInput `json:"-" xml:"-"` -} - -type metadataUpdateContainerAgentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3603,11 +3307,7 @@ type UpdateContainerAgentOutput struct { // with a cluster. ContainerInstance *ContainerInstance `locationName:"containerInstance" type:"structure"` - metadataUpdateContainerAgentOutput `json:"-" xml:"-"` -} - -type metadataUpdateContainerAgentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3640,11 +3340,7 @@ type UpdateServiceInput struct { // definition and then stops an old task after the new version is running. TaskDefinition *string `locationName:"taskDefinition" type:"string"` - metadataUpdateServiceInput `json:"-" xml:"-"` -} - -type metadataUpdateServiceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3661,11 +3357,7 @@ type UpdateServiceOutput struct { // The full description of your service following the update call. Service *Service `locationName:"service" type:"structure"` - metadataUpdateServiceOutput `json:"-" xml:"-"` -} - -type metadataUpdateServiceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3691,11 +3383,7 @@ type VersionInfo struct { // The Docker version running on the container instance. DockerVersion *string `locationName:"dockerVersion" type:"string"` - metadataVersionInfo `json:"-" xml:"-"` -} - -type metadataVersionInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3719,11 +3407,7 @@ type Volume struct { // of container definition mountPoints. Name *string `locationName:"name" type:"string"` - metadataVolume `json:"-" xml:"-"` -} - -type metadataVolume struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3746,11 +3430,7 @@ type VolumeFrom struct { // The name of the container to mount volumes from. SourceContainer *string `locationName:"sourceContainer" type:"string"` - metadataVolumeFrom `json:"-" xml:"-"` -} - -type metadataVolumeFrom struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/efs/api.go b/service/efs/api.go index 7dd6e5952ab..c2c128d3393 100644 --- a/service/efs/api.go +++ b/service/efs/api.go @@ -523,11 +523,7 @@ type CreateFileSystemInput struct { // creation. CreationToken *string `min:"1" type:"string" required:"true"` - metadataCreateFileSystemInput `json:"-" xml:"-"` -} - -type metadataCreateFileSystemInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -554,11 +550,7 @@ type CreateMountTargetInput struct { // The ID of the subnet to add the mount target in. SubnetId *string `type:"string" required:"true"` - metadataCreateMountTargetInput `json:"-" xml:"-"` -} - -type metadataCreateMountTargetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -579,11 +571,7 @@ type CreateTagsInput struct { // An array of Tag objects to add. Each Tag object is a key-value pair. Tags []*Tag `type:"list" required:"true"` - metadataCreateTagsInput `json:"-" xml:"-"` -} - -type metadataCreateTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -597,11 +585,7 @@ func (s CreateTagsInput) GoString() string { } type CreateTagsOutput struct { - metadataCreateTagsOutput `json:"-" xml:"-"` -} - -type metadataCreateTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -618,11 +602,7 @@ type DeleteFileSystemInput struct { // The ID of the file system you want to delete. FileSystemId *string `location:"uri" locationName:"FileSystemId" type:"string" required:"true"` - metadataDeleteFileSystemInput `json:"-" xml:"-"` -} - -type metadataDeleteFileSystemInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -636,11 +616,7 @@ func (s DeleteFileSystemInput) GoString() string { } type DeleteFileSystemOutput struct { - metadataDeleteFileSystemOutput `json:"-" xml:"-"` -} - -type metadataDeleteFileSystemOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -657,11 +633,7 @@ type DeleteMountTargetInput struct { // String. The ID of the mount target to delete. MountTargetId *string `location:"uri" locationName:"MountTargetId" type:"string" required:"true"` - metadataDeleteMountTargetInput `json:"-" xml:"-"` -} - -type metadataDeleteMountTargetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -675,11 +647,7 @@ func (s DeleteMountTargetInput) GoString() string { } type DeleteMountTargetOutput struct { - metadataDeleteMountTargetOutput `json:"-" xml:"-"` -} - -type metadataDeleteMountTargetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -699,11 +667,7 @@ type DeleteTagsInput struct { // A list of tag keys to delete. TagKeys []*string `type:"list" required:"true"` - metadataDeleteTagsInput `json:"-" xml:"-"` -} - -type metadataDeleteTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -717,11 +681,7 @@ func (s DeleteTagsInput) GoString() string { } type DeleteTagsOutput struct { - metadataDeleteTagsOutput `json:"-" xml:"-"` -} - -type metadataDeleteTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -755,11 +715,7 @@ type DescribeFileSystemsInput struct { // per page. MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"` - metadataDescribeFileSystemsInput `json:"-" xml:"-"` -} - -type metadataDescribeFileSystemsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -783,11 +739,7 @@ type DescribeFileSystemsOutput struct { // You can use the NextMarker in the subsequent request to fetch the descriptions. NextMarker *string `type:"string"` - metadataDescribeFileSystemsOutput `json:"-" xml:"-"` -} - -type metadataDescribeFileSystemsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -804,11 +756,7 @@ type DescribeMountTargetSecurityGroupsInput struct { // The ID of the mount target whose security groups you want to retrieve. MountTargetId *string `location:"uri" locationName:"MountTargetId" type:"string" required:"true"` - metadataDescribeMountTargetSecurityGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeMountTargetSecurityGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -825,11 +773,7 @@ type DescribeMountTargetSecurityGroupsOutput struct { // An array of security groups. SecurityGroups []*string `type:"list" required:"true"` - metadataDescribeMountTargetSecurityGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeMountTargetSecurityGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -860,11 +804,7 @@ type DescribeMountTargetsInput struct { // It must be included in your request if FileSystemId is not included. MountTargetId *string `location:"querystring" locationName:"MountTargetId" type:"string"` - metadataDescribeMountTargetsInput `json:"-" xml:"-"` -} - -type metadataDescribeMountTargetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -891,11 +831,7 @@ type DescribeMountTargetsOutput struct { // the next set of mount targets. NextMarker *string `type:"string"` - metadataDescribeMountTargetsOutput `json:"-" xml:"-"` -} - -type metadataDescribeMountTargetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -921,11 +857,7 @@ type DescribeTagsInput struct { // must be an integer with a value greater than zero. MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"` - metadataDescribeTagsInput `json:"-" xml:"-"` -} - -type metadataDescribeTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -951,11 +883,7 @@ type DescribeTagsOutput struct { // Returns tags associated with the file system as an array of Tag objects. Tags []*Tag `type:"list" required:"true"` - metadataDescribeTagsOutput `json:"-" xml:"-"` -} - -type metadataDescribeTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1007,11 +935,7 @@ type FileSystemDescription struct { // exact size the file system was at any instant in time. SizeInBytes *FileSystemSize `type:"structure" required:"true"` - metadataFileSystemDescription `json:"-" xml:"-"` -} - -type metadataFileSystemDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1040,11 +964,7 @@ type FileSystemSize struct { // The latest known metered size, in bytes, of data stored in the file system. Value *int64 `type:"long" required:"true"` - metadataFileSystemSize `json:"-" xml:"-"` -} - -type metadataFileSystemSize struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1064,11 +984,7 @@ type ModifyMountTargetSecurityGroupsInput struct { // An array of up to five VPC security group IDs. SecurityGroups []*string `type:"list"` - metadataModifyMountTargetSecurityGroupsInput `json:"-" xml:"-"` -} - -type metadataModifyMountTargetSecurityGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1082,11 +998,7 @@ func (s ModifyMountTargetSecurityGroupsInput) GoString() string { } type ModifyMountTargetSecurityGroupsOutput struct { - metadataModifyMountTargetSecurityGroupsOutput `json:"-" xml:"-"` -} - -type metadataModifyMountTargetSecurityGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1123,11 +1035,7 @@ type MountTargetDescription struct { // The ID of the subnet that the mount target is in. SubnetId *string `type:"string" required:"true"` - metadataMountTargetDescription `json:"-" xml:"-"` -} - -type metadataMountTargetDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1150,11 +1058,7 @@ type Tag struct { // Value of the tag key. Value *string `type:"string" required:"true"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/elasticache/api.go b/service/elasticache/api.go index 0a9613c1797..8759b2940c5 100644 --- a/service/elasticache/api.go +++ b/service/elasticache/api.go @@ -1320,11 +1320,7 @@ type AddTagsToResourceInput struct { // pair. A tag key must be accompanied by a tag value. Tags []*Tag `locationNameList:"Tag" type:"list" required:"true"` - metadataAddTagsToResourceInput `json:"-" xml:"-"` -} - -type metadataAddTagsToResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1351,11 +1347,7 @@ type AuthorizeCacheSecurityGroupIngressInput struct { // AWS account number for this parameter. EC2SecurityGroupOwnerId *string `type:"string" required:"true"` - metadataAuthorizeCacheSecurityGroupIngressInput `json:"-" xml:"-"` -} - -type metadataAuthorizeCacheSecurityGroupIngressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1374,11 +1366,7 @@ type AuthorizeCacheSecurityGroupIngressOutput struct { // AuthorizeCacheSecurityGroupIngress CreateCacheSecurityGroup RevokeCacheSecurityGroupIngress CacheSecurityGroup *CacheSecurityGroup `type:"structure"` - metadataAuthorizeCacheSecurityGroupIngressOutput `json:"-" xml:"-"` -} - -type metadataAuthorizeCacheSecurityGroupIngressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1396,11 +1384,7 @@ type AvailabilityZone struct { // The name of the Availability Zone. Name *string `type:"string"` - metadataAvailabilityZone `json:"-" xml:"-"` -} - -type metadataAvailabilityZone struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1527,11 +1511,7 @@ type CacheCluster struct { // Example: 05:00-09:00 SnapshotWindow *string `type:"string"` - metadataCacheCluster `json:"-" xml:"-"` -} - -type metadataCacheCluster struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1561,11 +1541,7 @@ type CacheEngineVersion struct { // The version number of the cache engine. EngineVersion *string `type:"string"` - metadataCacheEngineVersion `json:"-" xml:"-"` -} - -type metadataCacheEngineVersion struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1625,11 +1601,7 @@ type CacheNode struct { // cluster. SourceCacheNodeId *string `type:"string"` - metadataCacheNode `json:"-" xml:"-"` -} - -type metadataCacheNode struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1672,11 +1644,7 @@ type CacheNodeTypeSpecificParameter struct { // The source of the parameter value. Source *string `type:"string"` - metadataCacheNodeTypeSpecificParameter `json:"-" xml:"-"` -} - -type metadataCacheNodeTypeSpecificParameter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1697,11 +1665,7 @@ type CacheNodeTypeSpecificValue struct { // The value for the cache node type. Value *string `type:"string"` - metadataCacheNodeTypeSpecificValue `json:"-" xml:"-"` -} - -type metadataCacheNodeTypeSpecificValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1726,11 +1690,7 @@ type CacheParameterGroup struct { // The description for this cache parameter group. Description *string `type:"string"` - metadataCacheParameterGroup `json:"-" xml:"-"` -} - -type metadataCacheParameterGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1750,11 +1710,7 @@ type CacheParameterGroupNameMessage struct { // The name of the cache parameter group. CacheParameterGroupName *string `type:"string"` - metadataCacheParameterGroupNameMessage `json:"-" xml:"-"` -} - -type metadataCacheParameterGroupNameMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1779,11 +1735,7 @@ type CacheParameterGroupStatus struct { // The status of parameter updates. ParameterApplyStatus *string `type:"string"` - metadataCacheParameterGroupStatus `json:"-" xml:"-"` -} - -type metadataCacheParameterGroupStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1813,11 +1765,7 @@ type CacheSecurityGroup struct { // The AWS account ID of the cache security group owner. OwnerId *string `type:"string"` - metadataCacheSecurityGroup `json:"-" xml:"-"` -} - -type metadataCacheSecurityGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1840,11 +1788,7 @@ type CacheSecurityGroupMembership struct { // to a cache cluster are modified. Status *string `type:"string"` - metadataCacheSecurityGroupMembership `json:"-" xml:"-"` -} - -type metadataCacheSecurityGroupMembership struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1874,11 +1818,7 @@ type CacheSubnetGroup struct { // group. VpcId *string `type:"string"` - metadataCacheSubnetGroup `json:"-" xml:"-"` -} - -type metadataCacheSubnetGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1899,11 +1839,7 @@ type CopySnapshotInput struct { // A name for the copied snapshot. TargetSnapshotName *string `type:"string" required:"true"` - metadataCopySnapshotInput `json:"-" xml:"-"` -} - -type metadataCopySnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1921,11 +1857,7 @@ type CopySnapshotOutput struct { // was taken. Snapshot *Snapshot `type:"structure"` - metadataCopySnapshotOutput `json:"-" xml:"-"` -} - -type metadataCopySnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2130,11 +2062,7 @@ type CreateCacheClusterInput struct { // pair. A tag key must be accompanied by a tag value. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateCacheClusterInput `json:"-" xml:"-"` -} - -type metadataCreateCacheClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2151,11 +2079,7 @@ type CreateCacheClusterOutput struct { // Contains all of the attributes of a specific cache cluster. CacheCluster *CacheCluster `type:"structure"` - metadataCreateCacheClusterOutput `json:"-" xml:"-"` -} - -type metadataCreateCacheClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2182,11 +2106,7 @@ type CreateCacheParameterGroupInput struct { // A user-specified description for the cache parameter group. Description *string `type:"string" required:"true"` - metadataCreateCacheParameterGroupInput `json:"-" xml:"-"` -} - -type metadataCreateCacheParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2203,11 +2123,7 @@ type CreateCacheParameterGroupOutput struct { // Represents the output of a CreateCacheParameterGroup action. CacheParameterGroup *CacheParameterGroup `type:"structure"` - metadataCreateCacheParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateCacheParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2234,11 +2150,7 @@ type CreateCacheSecurityGroupInput struct { // A description for the cache security group. Description *string `type:"string" required:"true"` - metadataCreateCacheSecurityGroupInput `json:"-" xml:"-"` -} - -type metadataCreateCacheSecurityGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2257,11 +2169,7 @@ type CreateCacheSecurityGroupOutput struct { // AuthorizeCacheSecurityGroupIngress CreateCacheSecurityGroup RevokeCacheSecurityGroupIngress CacheSecurityGroup *CacheSecurityGroup `type:"structure"` - metadataCreateCacheSecurityGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateCacheSecurityGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2289,11 +2197,7 @@ type CreateCacheSubnetGroupInput struct { // A list of VPC subnet IDs for the cache subnet group. SubnetIds []*string `locationNameList:"SubnetIdentifier" type:"list" required:"true"` - metadataCreateCacheSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataCreateCacheSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2312,11 +2216,7 @@ type CreateCacheSubnetGroupOutput struct { // CreateCacheSubnetGroup ModifyCacheSubnetGroup CacheSubnetGroup *CacheSubnetGroup `type:"structure"` - metadataCreateCacheSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateCacheSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2500,11 +2400,7 @@ type CreateReplicationGroupInput struct { // pair. A tag key must be accompanied by a tag value. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateReplicationGroupInput `json:"-" xml:"-"` -} - -type metadataCreateReplicationGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2521,11 +2417,7 @@ type CreateReplicationGroupOutput struct { // Contains all of the attributes of a specific replication group. ReplicationGroup *ReplicationGroup `type:"structure"` - metadataCreateReplicationGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateReplicationGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2547,11 +2439,7 @@ type CreateSnapshotInput struct { // A name for the snapshot being created. SnapshotName *string `type:"string" required:"true"` - metadataCreateSnapshotInput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2569,11 +2457,7 @@ type CreateSnapshotOutput struct { // was taken. Snapshot *Snapshot `type:"structure"` - metadataCreateSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2597,11 +2481,7 @@ type DeleteCacheClusterInput struct { // then deletes the cache cluster immediately afterward. FinalSnapshotIdentifier *string `type:"string"` - metadataDeleteCacheClusterInput `json:"-" xml:"-"` -} - -type metadataDeleteCacheClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2618,11 +2498,7 @@ type DeleteCacheClusterOutput struct { // Contains all of the attributes of a specific cache cluster. CacheCluster *CacheCluster `type:"structure"` - metadataDeleteCacheClusterOutput `json:"-" xml:"-"` -} - -type metadataDeleteCacheClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2643,11 +2519,7 @@ type DeleteCacheParameterGroupInput struct { // clusters. CacheParameterGroupName *string `type:"string" required:"true"` - metadataDeleteCacheParameterGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteCacheParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2661,11 +2533,7 @@ func (s DeleteCacheParameterGroupInput) GoString() string { } type DeleteCacheParameterGroupOutput struct { - metadataDeleteCacheParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteCacheParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2685,11 +2553,7 @@ type DeleteCacheSecurityGroupInput struct { // You cannot delete the default security group. CacheSecurityGroupName *string `type:"string" required:"true"` - metadataDeleteCacheSecurityGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteCacheSecurityGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2703,11 +2567,7 @@ func (s DeleteCacheSecurityGroupInput) GoString() string { } type DeleteCacheSecurityGroupOutput struct { - metadataDeleteCacheSecurityGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteCacheSecurityGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2727,11 +2587,7 @@ type DeleteCacheSubnetGroupInput struct { // Constraints: Must contain no more than 255 alphanumeric characters or hyphens. CacheSubnetGroupName *string `type:"string" required:"true"` - metadataDeleteCacheSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteCacheSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2745,11 +2601,7 @@ func (s DeleteCacheSubnetGroupInput) GoString() string { } type DeleteCacheSubnetGroupOutput struct { - metadataDeleteCacheSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteCacheSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2778,11 +2630,7 @@ type DeleteReplicationGroupInput struct { // node will be retained. RetainPrimaryCluster *bool `type:"boolean"` - metadataDeleteReplicationGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteReplicationGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2799,11 +2647,7 @@ type DeleteReplicationGroupOutput struct { // Contains all of the attributes of a specific replication group. ReplicationGroup *ReplicationGroup `type:"structure"` - metadataDeleteReplicationGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteReplicationGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2821,11 +2665,7 @@ type DeleteSnapshotInput struct { // The name of the snapshot to be deleted. SnapshotName *string `type:"string" required:"true"` - metadataDeleteSnapshotInput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2843,11 +2683,7 @@ type DeleteSnapshotOutput struct { // was taken. Snapshot *Snapshot `type:"structure"` - metadataDeleteSnapshotOutput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2885,11 +2721,7 @@ type DescribeCacheClustersInput struct { // to retrieve information about the individual cache nodes. ShowCacheNodeInfo *bool `type:"boolean"` - metadataDescribeCacheClustersInput `json:"-" xml:"-"` -} - -type metadataDescribeCacheClustersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2911,11 +2743,7 @@ type DescribeCacheClustersOutput struct { // Provides an identifier to allow retrieval of paginated results. Marker *string `type:"string"` - metadataDescribeCacheClustersOutput `json:"-" xml:"-"` -} - -type metadataDescribeCacheClustersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2964,11 +2792,7 @@ type DescribeCacheEngineVersionsInput struct { // Constraints: minimum 20; maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeCacheEngineVersionsInput `json:"-" xml:"-"` -} - -type metadataDescribeCacheEngineVersionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2990,11 +2814,7 @@ type DescribeCacheEngineVersionsOutput struct { // Provides an identifier to allow retrieval of paginated results. Marker *string `type:"string"` - metadataDescribeCacheEngineVersionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeCacheEngineVersionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3026,11 +2846,7 @@ type DescribeCacheParameterGroupsInput struct { // Constraints: minimum 20; maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeCacheParameterGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeCacheParameterGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3052,11 +2868,7 @@ type DescribeCacheParameterGroupsOutput struct { // Provides an identifier to allow retrieval of paginated results. Marker *string `type:"string"` - metadataDescribeCacheParameterGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeCacheParameterGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3093,11 +2905,7 @@ type DescribeCacheParametersInput struct { // Valid values: user | system | engine-default Source *string `type:"string"` - metadataDescribeCacheParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeCacheParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3122,11 +2930,7 @@ type DescribeCacheParametersOutput struct { // A list of Parameter instances. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` - metadataDescribeCacheParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeCacheParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3158,11 +2962,7 @@ type DescribeCacheSecurityGroupsInput struct { // Constraints: minimum 20; maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeCacheSecurityGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeCacheSecurityGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3184,11 +2984,7 @@ type DescribeCacheSecurityGroupsOutput struct { // Provides an identifier to allow retrieval of paginated results. Marker *string `type:"string"` - metadataDescribeCacheSecurityGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeCacheSecurityGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3220,11 +3016,7 @@ type DescribeCacheSubnetGroupsInput struct { // Constraints: minimum 20; maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeCacheSubnetGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeCacheSubnetGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3246,11 +3038,7 @@ type DescribeCacheSubnetGroupsOutput struct { // Provides an identifier to allow retrieval of paginated results. Marker *string `type:"string"` - metadataDescribeCacheSubnetGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeCacheSubnetGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3283,11 +3071,7 @@ type DescribeEngineDefaultParametersInput struct { // Constraints: minimum 20; maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeEngineDefaultParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeEngineDefaultParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3304,11 +3088,7 @@ type DescribeEngineDefaultParametersOutput struct { // Represents the output of a DescribeEngineDefaultParameters action. EngineDefaults *EngineDefaults `type:"structure"` - metadataDescribeEngineDefaultParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeEngineDefaultParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3359,11 +3139,7 @@ type DescribeEventsInput struct { // 8601 format. StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataDescribeEventsInput `json:"-" xml:"-"` -} - -type metadataDescribeEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3385,11 +3161,7 @@ type DescribeEventsOutput struct { // Provides an identifier to allow retrieval of paginated results. Marker *string `type:"string"` - metadataDescribeEventsOutput `json:"-" xml:"-"` -} - -type metadataDescribeEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3425,11 +3197,7 @@ type DescribeReplicationGroupsInput struct { // groups is returned. ReplicationGroupId *string `type:"string"` - metadataDescribeReplicationGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeReplicationGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3451,11 +3219,7 @@ type DescribeReplicationGroupsOutput struct { // about one replication group. ReplicationGroups []*ReplicationGroup `locationNameList:"ReplicationGroup" type:"list"` - metadataDescribeReplicationGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeReplicationGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3530,11 +3294,7 @@ type DescribeReservedCacheNodesInput struct { // reservations matching the specified offering identifier. ReservedCacheNodesOfferingId *string `type:"string"` - metadataDescribeReservedCacheNodesInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedCacheNodesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3607,11 +3367,7 @@ type DescribeReservedCacheNodesOfferingsInput struct { // Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706 ReservedCacheNodesOfferingId *string `type:"string"` - metadataDescribeReservedCacheNodesOfferingsInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedCacheNodesOfferingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3633,11 +3389,7 @@ type DescribeReservedCacheNodesOfferingsOutput struct { // detailed information about one offering. ReservedCacheNodesOfferings []*ReservedCacheNodesOffering `locationNameList:"ReservedCacheNodesOffering" type:"list"` - metadataDescribeReservedCacheNodesOfferingsOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedCacheNodesOfferingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3659,11 +3411,7 @@ type DescribeReservedCacheNodesOutput struct { // information about one node. ReservedCacheNodes []*ReservedCacheNode `locationNameList:"ReservedCacheNode" type:"list"` - metadataDescribeReservedCacheNodesOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedCacheNodesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3706,11 +3454,7 @@ type DescribeSnapshotsInput struct { // snapshots. SnapshotSource *string `type:"string"` - metadataDescribeSnapshotsInput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3734,11 +3478,7 @@ type DescribeSnapshotsOutput struct { // about one snapshot. Snapshots []*Snapshot `locationNameList:"Snapshot" type:"list"` - metadataDescribeSnapshotsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3762,11 +3502,7 @@ type EC2SecurityGroup struct { // The status of the Amazon EC2 security group. Status *string `type:"string"` - metadataEC2SecurityGroup `json:"-" xml:"-"` -} - -type metadataEC2SecurityGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3788,11 +3524,7 @@ type Endpoint struct { // The port number that the cache engine is listening on. Port *int64 `type:"integer"` - metadataEndpoint `json:"-" xml:"-"` -} - -type metadataEndpoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3821,11 +3553,7 @@ type EngineDefaults struct { // Contains a list of engine default parameters. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` - metadataEngineDefaults `json:"-" xml:"-"` -} - -type metadataEngineDefaults struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3857,11 +3585,7 @@ type Event struct { // a security group, etc. SourceType *string `type:"string" enum:"SourceType"` - metadataEvent `json:"-" xml:"-"` -} - -type metadataEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3880,11 +3604,7 @@ type ListTagsForResourceInput struct { // arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster. ResourceName *string `type:"string" required:"true"` - metadataListTagsForResourceInput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4077,11 +3797,7 @@ type ModifyCacheClusterInput struct { // a daily snapshot of your cache cluster. SnapshotWindow *string `type:"string"` - metadataModifyCacheClusterInput `json:"-" xml:"-"` -} - -type metadataModifyCacheClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4098,11 +3814,7 @@ type ModifyCacheClusterOutput struct { // Contains all of the attributes of a specific cache cluster. CacheCluster *CacheCluster `type:"structure"` - metadataModifyCacheClusterOutput `json:"-" xml:"-"` -} - -type metadataModifyCacheClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4125,11 +3837,7 @@ type ModifyCacheParameterGroupInput struct { // A maximum of 20 parameters may be modified per request. ParameterNameValues []*ParameterNameValue `locationNameList:"ParameterNameValue" type:"list" required:"true"` - metadataModifyCacheParameterGroupInput `json:"-" xml:"-"` -} - -type metadataModifyCacheParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4158,11 +3866,7 @@ type ModifyCacheSubnetGroupInput struct { // The EC2 subnet IDs for the cache subnet group. SubnetIds []*string `locationNameList:"SubnetIdentifier" type:"list"` - metadataModifyCacheSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataModifyCacheSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4181,11 +3885,7 @@ type ModifyCacheSubnetGroupOutput struct { // CreateCacheSubnetGroup ModifyCacheSubnetGroup CacheSubnetGroup *CacheSubnetGroup `type:"structure"` - metadataModifyCacheSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataModifyCacheSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4307,11 +4007,7 @@ type ModifyReplicationGroupInput struct { // replication group. SnapshottingClusterId *string `type:"string"` - metadataModifyReplicationGroupInput `json:"-" xml:"-"` -} - -type metadataModifyReplicationGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4328,11 +4024,7 @@ type ModifyReplicationGroupOutput struct { // Contains all of the attributes of a specific replication group. ReplicationGroup *ReplicationGroup `type:"structure"` - metadataModifyReplicationGroupOutput `json:"-" xml:"-"` -} - -type metadataModifyReplicationGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4361,11 +4053,7 @@ type NodeGroup struct { // The current state of this replication group - creating, available, etc. Status *string `type:"string"` - metadataNodeGroup `json:"-" xml:"-"` -} - -type metadataNodeGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4397,11 +4085,7 @@ type NodeGroupMember struct { // node. ReadEndpoint *Endpoint `type:"structure"` - metadataNodeGroupMember `json:"-" xml:"-"` -} - -type metadataNodeGroupMember struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4429,11 +4113,7 @@ type NodeSnapshot struct { // obtained for the snapshot. SnapshotCreateTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataNodeSnapshot `json:"-" xml:"-"` -} - -type metadataNodeSnapshot struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4456,11 +4136,7 @@ type NotificationConfiguration struct { // The current state of the topic. TopicStatus *string `type:"string"` - metadataNotificationConfiguration `json:"-" xml:"-"` -} - -type metadataNotificationConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4502,11 +4178,7 @@ type Parameter struct { // The source of the parameter. Source *string `type:"string"` - metadataParameter `json:"-" xml:"-"` -} - -type metadataParameter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4527,11 +4199,7 @@ type ParameterNameValue struct { // The value of the parameter. ParameterValue *string `type:"string"` - metadataParameterNameValue `json:"-" xml:"-"` -} - -type metadataParameterNameValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4560,11 +4228,7 @@ type PendingModifiedValues struct { // this value must be between 1 and 20. NumCacheNodes *int64 `type:"integer"` - metadataPendingModifiedValues `json:"-" xml:"-"` -} - -type metadataPendingModifiedValues struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4594,11 +4258,7 @@ type PurchaseReservedCacheNodesOfferingInput struct { // Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706 ReservedCacheNodesOfferingId *string `type:"string" required:"true"` - metadataPurchaseReservedCacheNodesOfferingInput `json:"-" xml:"-"` -} - -type metadataPurchaseReservedCacheNodesOfferingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4615,11 +4275,7 @@ type PurchaseReservedCacheNodesOfferingOutput struct { // Represents the output of a PurchaseReservedCacheNodesOffering action. ReservedCacheNode *ReservedCacheNode `type:"structure"` - metadataPurchaseReservedCacheNodesOfferingOutput `json:"-" xml:"-"` -} - -type metadataPurchaseReservedCacheNodesOfferingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4642,11 +4298,7 @@ type RebootCacheClusterInput struct { // node IDs. CacheNodeIdsToReboot []*string `locationNameList:"CacheNodeId" type:"list" required:"true"` - metadataRebootCacheClusterInput `json:"-" xml:"-"` -} - -type metadataRebootCacheClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4663,11 +4315,7 @@ type RebootCacheClusterOutput struct { // Contains all of the attributes of a specific cache cluster. CacheCluster *CacheCluster `type:"structure"` - metadataRebootCacheClusterOutput `json:"-" xml:"-"` -} - -type metadataRebootCacheClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4689,11 +4337,7 @@ type RecurringCharge struct { // The frequency of the recurring charge. RecurringChargeFrequency *string `type:"string"` - metadataRecurringCharge `json:"-" xml:"-"` -} - -type metadataRecurringCharge struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4717,11 +4361,7 @@ type RemoveTagsFromResourceInput struct { // the key name Region from the resource named by the ResourceName parameter. TagKeys []*string `type:"list" required:"true"` - metadataRemoveTagsFromResourceInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4767,11 +4407,7 @@ type ReplicationGroup struct { // The current state of this replication group - creating, available, etc. Status *string `type:"string"` - metadataReplicationGroup `json:"-" xml:"-"` -} - -type metadataReplicationGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4798,11 +4434,7 @@ type ReplicationGroupPendingModifiedValues struct { // was specified), or during the next maintenance window. PrimaryClusterId *string `type:"string"` - metadataReplicationGroupPendingModifiedValues `json:"-" xml:"-"` -} - -type metadataReplicationGroupPendingModifiedValues struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4871,11 +4503,7 @@ type ReservedCacheNode struct { // The hourly price charged for this reserved cache node. UsagePrice *float64 `type:"double"` - metadataReservedCacheNode `json:"-" xml:"-"` -} - -type metadataReservedCacheNode struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4932,11 +4560,7 @@ type ReservedCacheNodesOffering struct { // The hourly price charged for this offering. UsagePrice *float64 `type:"double"` - metadataReservedCacheNodesOffering `json:"-" xml:"-"` -} - -type metadataReservedCacheNodesOffering struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4964,11 +4588,7 @@ type ResetCacheParameterGroupInput struct { // Valid values: true | false ResetAllParameters *bool `type:"boolean"` - metadataResetCacheParameterGroupInput `json:"-" xml:"-"` -} - -type metadataResetCacheParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4994,11 +4614,7 @@ type RevokeCacheSecurityGroupIngressInput struct { // AWS account number for this parameter. EC2SecurityGroupOwnerId *string `type:"string" required:"true"` - metadataRevokeCacheSecurityGroupIngressInput `json:"-" xml:"-"` -} - -type metadataRevokeCacheSecurityGroupIngressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5017,11 +4633,7 @@ type RevokeCacheSecurityGroupIngressOutput struct { // AuthorizeCacheSecurityGroupIngress CreateCacheSecurityGroup RevokeCacheSecurityGroupIngress CacheSecurityGroup *CacheSecurityGroup `type:"structure"` - metadataRevokeCacheSecurityGroupIngressOutput `json:"-" xml:"-"` -} - -type metadataRevokeCacheSecurityGroupIngressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5044,11 +4656,7 @@ type SecurityGroupMembership struct { // to a cache cluster are modified. Status *string `type:"string"` - metadataSecurityGroupMembership `json:"-" xml:"-"` -} - -type metadataSecurityGroupMembership struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5168,11 +4776,7 @@ type Snapshot struct { // group for the source cache cluster. VpcId *string `type:"string"` - metadataSnapshot `json:"-" xml:"-"` -} - -type metadataSnapshot struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5195,11 +4799,7 @@ type Subnet struct { // The unique identifier for the subnet. SubnetIdentifier *string `type:"string"` - metadataSubnet `json:"-" xml:"-"` -} - -type metadataSubnet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5222,11 +4822,7 @@ type Tag struct { // The tag's value. May not be null. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5245,11 +4841,7 @@ type TagListMessage struct { // A list of cost allocation tags as key-value pairs. TagList []*Tag `locationNameList:"Tag" type:"list"` - metadataTagListMessage `json:"-" xml:"-"` -} - -type metadataTagListMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/elasticbeanstalk/api.go b/service/elasticbeanstalk/api.go index 01288facade..643e53bb9a3 100644 --- a/service/elasticbeanstalk/api.go +++ b/service/elasticbeanstalk/api.go @@ -1034,11 +1034,7 @@ type AbortEnvironmentUpdateInput struct { // you want to cancel. EnvironmentName *string `min:"4" type:"string"` - metadataAbortEnvironmentUpdateInput `json:"-" xml:"-"` -} - -type metadataAbortEnvironmentUpdateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1052,11 +1048,7 @@ func (s AbortEnvironmentUpdateInput) GoString() string { } type AbortEnvironmentUpdateOutput struct { - metadataAbortEnvironmentUpdateOutput `json:"-" xml:"-"` -} - -type metadataAbortEnvironmentUpdateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1089,11 +1081,7 @@ type ApplicationDescription struct { // The names of the versions for this application. Versions []*string `type:"list"` - metadataApplicationDescription `json:"-" xml:"-"` -} - -type metadataApplicationDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1111,11 +1099,7 @@ type ApplicationDescriptionMessage struct { // The ApplicationDescription of the application. Application *ApplicationDescription `type:"structure"` - metadataApplicationDescriptionMessage `json:"-" xml:"-"` -} - -type metadataApplicationDescriptionMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1147,11 +1131,7 @@ type ApplicationMetrics struct { // in each type of status code response. StatusCodes *StatusCodes `type:"structure"` - metadataApplicationMetrics `json:"-" xml:"-"` -} - -type metadataApplicationMetrics struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1187,11 +1167,7 @@ type ApplicationVersionDescription struct { // A label uniquely identifying the version for the associated application. VersionLabel *string `min:"1" type:"string"` - metadataApplicationVersionDescription `json:"-" xml:"-"` -} - -type metadataApplicationVersionDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1209,11 +1185,7 @@ type ApplicationVersionDescriptionMessage struct { // The ApplicationVersionDescription of the application version. ApplicationVersion *ApplicationVersionDescription `type:"structure"` - metadataApplicationVersionDescriptionMessage `json:"-" xml:"-"` -} - -type metadataApplicationVersionDescriptionMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1231,11 +1203,7 @@ type AutoScalingGroup struct { // The name of the AutoScalingGroup . Name *string `type:"string"` - metadataAutoScalingGroup `json:"-" xml:"-"` -} - -type metadataAutoScalingGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1280,11 +1248,7 @@ type CPUUtilization struct { // 10 seconds. User *float64 `type:"double"` - metadataCPUUtilization `json:"-" xml:"-"` -} - -type metadataCPUUtilization struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1302,11 +1266,7 @@ type CheckDNSAvailabilityInput struct { // The prefix used when this CNAME is reserved. CNAMEPrefix *string `min:"4" type:"string" required:"true"` - metadataCheckDNSAvailabilityInput `json:"-" xml:"-"` -} - -type metadataCheckDNSAvailabilityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1330,11 +1290,7 @@ type CheckDNSAvailabilityOutput struct { // the provided prefix. FullyQualifiedCNAME *string `min:"1" type:"string"` - metadataCheckDNSAvailabilityOutput `json:"-" xml:"-"` -} - -type metadataCheckDNSAvailabilityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1365,11 +1321,7 @@ type ComposeEnvironmentsInput struct { // to create. VersionLabels []*string `type:"list"` - metadataComposeEnvironmentsInput `json:"-" xml:"-"` -} - -type metadataComposeEnvironmentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1446,11 +1398,7 @@ type ConfigurationOptionDescription struct { // false . Json : Values for this option are a JSON representation of a ConfigDocument. ValueType *string `type:"string" enum:"ConfigurationOptionValueType"` - metadataConfigurationOptionDescription `json:"-" xml:"-"` -} - -type metadataConfigurationOptionDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1480,11 +1428,7 @@ type ConfigurationOptionSetting struct { // The current value for the configuration option. Value *string `type:"string"` - metadataConfigurationOptionSetting `json:"-" xml:"-"` -} - -type metadataConfigurationOptionSetting struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1535,11 +1479,7 @@ type ConfigurationSettingsDescription struct { // set. TemplateName *string `min:"1" type:"string"` - metadataConfigurationSettingsDescription `json:"-" xml:"-"` -} - -type metadataConfigurationSettingsDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1562,11 +1502,7 @@ type CreateApplicationInput struct { // Describes the application. Description *string `type:"string"` - metadataCreateApplicationInput `json:"-" xml:"-"` -} - -type metadataCreateApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1623,11 +1559,7 @@ type CreateApplicationVersionInput struct { // returns an InvalidParameterValue error. VersionLabel *string `min:"1" type:"string" required:"true"` - metadataCreateApplicationVersionInput `json:"-" xml:"-"` -} - -type metadataCreateApplicationVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1696,11 +1628,7 @@ type CreateConfigurationTemplateInput struct { // Elastic Beanstalk returns an InvalidParameterValue error. TemplateName *string `min:"1" type:"string" required:"true"` - metadataCreateConfigurationTemplateInput `json:"-" xml:"-"` -} - -type metadataCreateConfigurationTemplateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1791,11 +1719,7 @@ type CreateEnvironmentInput struct { // sample application in the container. VersionLabel *string `min:"1" type:"string"` - metadataCreateEnvironmentInput `json:"-" xml:"-"` -} - -type metadataCreateEnvironmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1809,11 +1733,7 @@ func (s CreateEnvironmentInput) GoString() string { } type CreateStorageLocationInput struct { - metadataCreateStorageLocationInput `json:"-" xml:"-"` -} - -type metadataCreateStorageLocationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1831,11 +1751,7 @@ type CreateStorageLocationOutput struct { // The name of the Amazon S3 bucket created. S3Bucket *string `type:"string"` - metadataCreateStorageLocationOutput `json:"-" xml:"-"` -} - -type metadataCreateStorageLocationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1856,11 +1772,7 @@ type DeleteApplicationInput struct { // the application. TerminateEnvByForce *bool `type:"boolean"` - metadataDeleteApplicationInput `json:"-" xml:"-"` -} - -type metadataDeleteApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1874,11 +1786,7 @@ func (s DeleteApplicationInput) GoString() string { } type DeleteApplicationOutput struct { - metadataDeleteApplicationOutput `json:"-" xml:"-"` -} - -type metadataDeleteApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1905,11 +1813,7 @@ type DeleteApplicationVersionInput struct { // The label of the version to delete. VersionLabel *string `min:"1" type:"string" required:"true"` - metadataDeleteApplicationVersionInput `json:"-" xml:"-"` -} - -type metadataDeleteApplicationVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1923,11 +1827,7 @@ func (s DeleteApplicationVersionInput) GoString() string { } type DeleteApplicationVersionOutput struct { - metadataDeleteApplicationVersionOutput `json:"-" xml:"-"` -} - -type metadataDeleteApplicationVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1947,11 +1847,7 @@ type DeleteConfigurationTemplateInput struct { // The name of the configuration template to delete. TemplateName *string `min:"1" type:"string" required:"true"` - metadataDeleteConfigurationTemplateInput `json:"-" xml:"-"` -} - -type metadataDeleteConfigurationTemplateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1965,11 +1861,7 @@ func (s DeleteConfigurationTemplateInput) GoString() string { } type DeleteConfigurationTemplateOutput struct { - metadataDeleteConfigurationTemplateOutput `json:"-" xml:"-"` -} - -type metadataDeleteConfigurationTemplateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1989,11 +1881,7 @@ type DeleteEnvironmentConfigurationInput struct { // The name of the environment to delete the draft configuration from. EnvironmentName *string `min:"4" type:"string" required:"true"` - metadataDeleteEnvironmentConfigurationInput `json:"-" xml:"-"` -} - -type metadataDeleteEnvironmentConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2007,11 +1895,7 @@ func (s DeleteEnvironmentConfigurationInput) GoString() string { } type DeleteEnvironmentConfigurationOutput struct { - metadataDeleteEnvironmentConfigurationOutput `json:"-" xml:"-"` -} - -type metadataDeleteEnvironmentConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2034,11 +1918,7 @@ type DescribeApplicationVersionsInput struct { // have the specified version labels. VersionLabels []*string `type:"list"` - metadataDescribeApplicationVersionsInput `json:"-" xml:"-"` -} - -type metadataDescribeApplicationVersionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2056,11 +1936,7 @@ type DescribeApplicationVersionsOutput struct { // List of ApplicationVersionDescription objects sorted by order of creation. ApplicationVersions []*ApplicationVersionDescription `type:"list"` - metadataDescribeApplicationVersionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeApplicationVersionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2078,11 +1954,7 @@ type DescribeApplicationsInput struct { // only include those with the specified names. ApplicationNames []*string `type:"list"` - metadataDescribeApplicationsInput `json:"-" xml:"-"` -} - -type metadataDescribeApplicationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2100,11 +1972,7 @@ type DescribeApplicationsOutput struct { // This parameter contains a list of ApplicationDescription. Applications []*ApplicationDescription `type:"list"` - metadataDescribeApplicationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeApplicationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2137,11 +2005,7 @@ type DescribeConfigurationOptionsInput struct { // to describe. TemplateName *string `min:"1" type:"string"` - metadataDescribeConfigurationOptionsInput `json:"-" xml:"-"` -} - -type metadataDescribeConfigurationOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2162,11 +2026,7 @@ type DescribeConfigurationOptionsOutput struct { // The name of the solution stack these configuration options belong to. SolutionStackName *string `type:"string"` - metadataDescribeConfigurationOptionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeConfigurationOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2201,11 +2061,7 @@ type DescribeConfigurationSettingsInput struct { // error. TemplateName *string `min:"1" type:"string"` - metadataDescribeConfigurationSettingsInput `json:"-" xml:"-"` -} - -type metadataDescribeConfigurationSettingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2223,11 +2079,7 @@ type DescribeConfigurationSettingsOutput struct { // A list of ConfigurationSettingsDescription. ConfigurationSettings []*ConfigurationSettingsDescription `type:"list"` - metadataDescribeConfigurationSettingsOutput `json:"-" xml:"-"` -} - -type metadataDescribeConfigurationSettingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2260,11 +2112,7 @@ type DescribeEnvironmentHealthInput struct { // error. EnvironmentName *string `min:"4" type:"string"` - metadataDescribeEnvironmentHealthInput `json:"-" xml:"-"` -} - -type metadataDescribeEnvironmentHealthInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2306,11 +2154,7 @@ type DescribeEnvironmentHealthOutput struct { // see Health Colors and Statuses (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html). Status *string `type:"string" enum:"EnvironmentHealth"` - metadataDescribeEnvironmentHealthOutput `json:"-" xml:"-"` -} - -type metadataDescribeEnvironmentHealthOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2338,11 +2182,7 @@ type DescribeEnvironmentResourcesInput struct { // error. EnvironmentName *string `min:"4" type:"string"` - metadataDescribeEnvironmentResourcesInput `json:"-" xml:"-"` -} - -type metadataDescribeEnvironmentResourcesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2360,11 +2200,7 @@ type DescribeEnvironmentResourcesOutput struct { // A list of EnvironmentResourceDescription. EnvironmentResources *EnvironmentResourceDescription `type:"structure"` - metadataDescribeEnvironmentResourcesOutput `json:"-" xml:"-"` -} - -type metadataDescribeEnvironmentResourcesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2406,11 +2242,7 @@ type DescribeEnvironmentsInput struct { // include only those that are associated with this application version. VersionLabel *string `min:"1" type:"string"` - metadataDescribeEnvironmentsInput `json:"-" xml:"-"` -} - -type metadataDescribeEnvironmentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2467,11 +2299,7 @@ type DescribeEventsInput struct { // those associated with this application version. VersionLabel *string `min:"1" type:"string"` - metadataDescribeEventsInput `json:"-" xml:"-"` -} - -type metadataDescribeEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2493,11 +2321,7 @@ type DescribeEventsOutput struct { // token in the next DescribeEvents call to get the next batch of events. NextToken *string `type:"string"` - metadataDescribeEventsOutput `json:"-" xml:"-"` -} - -type metadataDescribeEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2525,11 +2349,7 @@ type DescribeInstancesHealthInput struct { // Specifies the next token of the request. NextToken *string `min:"1" type:"string"` - metadataDescribeInstancesHealthInput `json:"-" xml:"-"` -} - -type metadataDescribeInstancesHealthInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2553,11 +2373,7 @@ type DescribeInstancesHealthOutput struct { // The date and time the information was last refreshed. RefreshedAt *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataDescribeInstancesHealthOutput `json:"-" xml:"-"` -} - -type metadataDescribeInstancesHealthOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2648,11 +2464,7 @@ type EnvironmentDescription struct { // The application version deployed in this environment. VersionLabel *string `min:"1" type:"string"` - metadataEnvironmentDescription `json:"-" xml:"-"` -} - -type metadataEnvironmentDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2670,11 +2482,7 @@ type EnvironmentDescriptionsMessage struct { // Returns an EnvironmentDescription list. Environments []*EnvironmentDescription `type:"list"` - metadataEnvironmentDescriptionsMessage `json:"-" xml:"-"` -} - -type metadataEnvironmentDescriptionsMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2701,11 +2509,7 @@ type EnvironmentInfoDescription struct { // The time stamp when this information was retrieved. SampleTimestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataEnvironmentInfoDescription `json:"-" xml:"-"` -} - -type metadataEnvironmentInfoDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2730,11 +2534,7 @@ type EnvironmentLink struct { // The name of the link. LinkName *string `type:"string"` - metadataEnvironmentLink `json:"-" xml:"-"` -} - -type metadataEnvironmentLink struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2770,11 +2570,7 @@ type EnvironmentResourceDescription struct { // The AutoScaling triggers in use by this environment. Triggers []*Trigger `type:"list"` - metadataEnvironmentResourceDescription `json:"-" xml:"-"` -} - -type metadataEnvironmentResourceDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2793,11 +2589,7 @@ type EnvironmentResourcesDescription struct { // Describes the LoadBalancer. LoadBalancer *LoadBalancerDescription `type:"structure"` - metadataEnvironmentResourcesDescription `json:"-" xml:"-"` -} - -type metadataEnvironmentResourcesDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2821,11 +2613,7 @@ type EnvironmentTier struct { // The version of this environment tier. Version *string `type:"string"` - metadataEnvironmentTier `json:"-" xml:"-"` -} - -type metadataEnvironmentTier struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2864,11 +2652,7 @@ type EventDescription struct { // The release label for the application version associated with this event. VersionLabel *string `min:"1" type:"string"` - metadataEventDescription `json:"-" xml:"-"` -} - -type metadataEventDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2886,11 +2670,7 @@ type Instance struct { // The ID of the Amazon EC2 instance. Id *string `type:"string"` - metadataInstance `json:"-" xml:"-"` -} - -type metadataInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2936,11 +2716,7 @@ type InstanceHealthSummary struct { // or other issues for an instance or environment. Warning *int64 `type:"integer"` - metadataInstanceHealthSummary `json:"-" xml:"-"` -} - -type metadataInstanceHealthSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2988,11 +2764,7 @@ type Latency struct { // 10 seconds. P999 *float64 `type:"double"` - metadataLatency `json:"-" xml:"-"` -} - -type metadataLatency struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3010,11 +2782,7 @@ type LaunchConfiguration struct { // The name of the launch configuration. Name *string `type:"string"` - metadataLaunchConfiguration `json:"-" xml:"-"` -} - -type metadataLaunchConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3028,11 +2796,7 @@ func (s LaunchConfiguration) GoString() string { } type ListAvailableSolutionStacksInput struct { - metadataListAvailableSolutionStacksInput `json:"-" xml:"-"` -} - -type metadataListAvailableSolutionStacksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3053,11 +2817,7 @@ type ListAvailableSolutionStacksOutput struct { // A list of available solution stacks. SolutionStacks []*string `type:"list"` - metadataListAvailableSolutionStacksOutput `json:"-" xml:"-"` -} - -type metadataListAvailableSolutionStacksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3078,11 +2838,7 @@ type Listener struct { // The protocol that is used by the Listener. Protocol *string `type:"string"` - metadataListener `json:"-" xml:"-"` -} - -type metadataListener struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3100,11 +2856,7 @@ type LoadBalancer struct { // The name of the LoadBalancer. Name *string `type:"string"` - metadataLoadBalancer `json:"-" xml:"-"` -} - -type metadataLoadBalancer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3128,11 +2880,7 @@ type LoadBalancerDescription struct { // The name of the LoadBalancer. LoadBalancerName *string `type:"string"` - metadataLoadBalancerDescription `json:"-" xml:"-"` -} - -type metadataLoadBalancerDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3155,11 +2903,7 @@ type OptionRestrictionRegex struct { // this restriction must match. Pattern *string `type:"string"` - metadataOptionRestrictionRegex `json:"-" xml:"-"` -} - -type metadataOptionRestrictionRegex struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3183,11 +2927,7 @@ type OptionSpecification struct { // A unique resource name for a time-based scaling configuration option. ResourceName *string `min:"1" type:"string"` - metadataOptionSpecification `json:"-" xml:"-"` -} - -type metadataOptionSpecification struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3208,11 +2948,7 @@ type Queue struct { // The URL of the queue. URL *string `type:"string"` - metadataQueue `json:"-" xml:"-"` -} - -type metadataQueue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3240,11 +2976,7 @@ type RebuildEnvironmentInput struct { // error. EnvironmentName *string `min:"4" type:"string"` - metadataRebuildEnvironmentInput `json:"-" xml:"-"` -} - -type metadataRebuildEnvironmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3258,11 +2990,7 @@ func (s RebuildEnvironmentInput) GoString() string { } type RebuildEnvironmentOutput struct { - metadataRebuildEnvironmentOutput `json:"-" xml:"-"` -} - -type metadataRebuildEnvironmentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3299,11 +3027,7 @@ type RequestEnvironmentInfoInput struct { // The type of information to request. InfoType *string `type:"string" required:"true" enum:"EnvironmentInfoType"` - metadataRequestEnvironmentInfoInput `json:"-" xml:"-"` -} - -type metadataRequestEnvironmentInfoInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3317,11 +3041,7 @@ func (s RequestEnvironmentInfoInput) GoString() string { } type RequestEnvironmentInfoOutput struct { - metadataRequestEnvironmentInfoOutput `json:"-" xml:"-"` -} - -type metadataRequestEnvironmentInfoOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3349,11 +3069,7 @@ type RestartAppServerInput struct { // error. EnvironmentName *string `min:"4" type:"string"` - metadataRestartAppServerInput `json:"-" xml:"-"` -} - -type metadataRestartAppServerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3367,11 +3083,7 @@ func (s RestartAppServerInput) GoString() string { } type RestartAppServerOutput struct { - metadataRestartAppServerOutput `json:"-" xml:"-"` -} - -type metadataRestartAppServerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3406,11 +3118,7 @@ type RetrieveEnvironmentInfoInput struct { // The type of information to retrieve. InfoType *string `type:"string" required:"true" enum:"EnvironmentInfoType"` - metadataRetrieveEnvironmentInfoInput `json:"-" xml:"-"` -} - -type metadataRetrieveEnvironmentInfoInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3428,11 +3136,7 @@ type RetrieveEnvironmentInfoOutput struct { // The EnvironmentInfoDescription of the environment. EnvironmentInfo []*EnvironmentInfoDescription `type:"list"` - metadataRetrieveEnvironmentInfoOutput `json:"-" xml:"-"` -} - -type metadataRetrieveEnvironmentInfoOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3453,11 +3157,7 @@ type S3Location struct { // The Amazon S3 key where the data is located. S3Key *string `type:"string"` - metadataS3Location `json:"-" xml:"-"` -} - -type metadataS3Location struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3500,11 +3200,7 @@ type SingleInstanceHealth struct { // running in the specified environment. System *SystemStatus `type:"structure"` - metadataSingleInstanceHealth `json:"-" xml:"-"` -} - -type metadataSingleInstanceHealth struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3525,11 +3221,7 @@ type SolutionStackDescription struct { // The name of the solution stack. SolutionStackName *string `type:"string"` - metadataSolutionStackDescription `json:"-" xml:"-"` -} - -type metadataSolutionStackDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3550,11 +3242,7 @@ type SourceConfiguration struct { // The name of the configuration template. TemplateName *string `min:"1" type:"string"` - metadataSourceConfiguration `json:"-" xml:"-"` -} - -type metadataSourceConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3587,11 +3275,7 @@ type StatusCodes struct { // (500, 501, etc.) status code. Status5xx *int64 `type:"integer"` - metadataStatusCodes `json:"-" xml:"-"` -} - -type metadataStatusCodes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3634,11 +3318,7 @@ type SwapEnvironmentCNAMEsInput struct { // must specify the DestinationEnvironmentName. SourceEnvironmentName *string `min:"4" type:"string"` - metadataSwapEnvironmentCNAMEsInput `json:"-" xml:"-"` -} - -type metadataSwapEnvironmentCNAMEsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3652,11 +3332,7 @@ func (s SwapEnvironmentCNAMEsInput) GoString() string { } type SwapEnvironmentCNAMEsOutput struct { - metadataSwapEnvironmentCNAMEsOutput `json:"-" xml:"-"` -} - -type metadataSwapEnvironmentCNAMEsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3681,11 +3357,7 @@ type SystemStatus struct { // see Operating System Metrics (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-metrics.html#health-enhanced-metrics-os). LoadAverage []*float64 `type:"list"` - metadataSystemStatus `json:"-" xml:"-"` -} - -type metadataSystemStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3706,11 +3378,7 @@ type Tag struct { // The value of the tag. Value *string `min:"1" type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3756,11 +3424,7 @@ type TerminateEnvironmentInput struct { // Valid Values: true | false TerminateResources *bool `type:"boolean"` - metadataTerminateEnvironmentInput `json:"-" xml:"-"` -} - -type metadataTerminateEnvironmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3778,11 +3442,7 @@ type Trigger struct { // The name of the trigger. Name *string `type:"string"` - metadataTrigger `json:"-" xml:"-"` -} - -type metadataTrigger struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3805,11 +3465,7 @@ type UpdateApplicationInput struct { // Default: If not specified, AWS Elastic Beanstalk does not update the description. Description *string `type:"string"` - metadataUpdateApplicationInput `json:"-" xml:"-"` -} - -type metadataUpdateApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3838,11 +3494,7 @@ type UpdateApplicationVersionInput struct { // an InvalidParameterValue error. VersionLabel *string `min:"1" type:"string" required:"true"` - metadataUpdateApplicationVersionInput `json:"-" xml:"-"` -} - -type metadataUpdateApplicationVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3882,11 +3534,7 @@ type UpdateConfigurationTemplateInput struct { // returns an InvalidParameterValue error. TemplateName *string `min:"1" type:"string" required:"true"` - metadataUpdateConfigurationTemplateInput `json:"-" xml:"-"` -} - -type metadataUpdateConfigurationTemplateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3961,11 +3609,7 @@ type UpdateEnvironmentInput struct { // an InvalidParameterValue error. VersionLabel *string `min:"1" type:"string"` - metadataUpdateEnvironmentInput `json:"-" xml:"-"` -} - -type metadataUpdateEnvironmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3997,11 +3641,7 @@ type ValidateConfigurationSettingsInput struct { // Condition: You cannot specify both this and an environment name. TemplateName *string `min:"1" type:"string"` - metadataValidateConfigurationSettingsInput `json:"-" xml:"-"` -} - -type metadataValidateConfigurationSettingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4019,11 +3659,7 @@ type ValidateConfigurationSettingsOutput struct { // A list of ValidationMessage. Messages []*ValidationMessage `type:"list"` - metadataValidateConfigurationSettingsOutput `json:"-" xml:"-"` -} - -type metadataValidateConfigurationSettingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4052,11 +3688,7 @@ type ValidationMessage struct { // into account. Severity *string `type:"string" enum:"ValidationSeverity"` - metadataValidationMessage `json:"-" xml:"-"` -} - -type metadataValidationMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/elasticsearchservice/api.go b/service/elasticsearchservice/api.go index 56cebd8d194..2897f358eaf 100644 --- a/service/elasticsearchservice/api.go +++ b/service/elasticsearchservice/api.go @@ -305,11 +305,7 @@ type AccessPoliciesStatus struct { // for the status information that's included. Status *OptionStatus `type:"structure" required:"true"` - metadataAccessPoliciesStatus `json:"-" xml:"-"` -} - -type metadataAccessPoliciesStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -331,11 +327,7 @@ type AddTagsInput struct { // List of Tag that need to be added for the Elasticsearch domain. TagList []*Tag `type:"list" required:"true"` - metadataAddTagsInput `json:"-" xml:"-"` -} - -type metadataAddTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -349,11 +341,7 @@ func (s AddTagsInput) GoString() string { } type AddTagsOutput struct { - metadataAddTagsOutput `json:"-" xml:"-"` -} - -type metadataAddTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -384,11 +372,7 @@ type AdvancedOptionsStatus struct { // Elasticsearch domain. Status *OptionStatus `type:"structure" required:"true"` - metadataAdvancedOptionsStatus `json:"-" xml:"-"` -} - -type metadataAdvancedOptionsStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -428,11 +412,7 @@ type CreateElasticsearchDomainInput struct { // value is 0 hours. SnapshotOptions *SnapshotOptions `type:"structure"` - metadataCreateElasticsearchDomainInput `json:"-" xml:"-"` -} - -type metadataCreateElasticsearchDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -451,11 +431,7 @@ type CreateElasticsearchDomainOutput struct { // The status of the newly created Elasticsearch domain. DomainStatus *ElasticsearchDomainStatus `type:"structure"` - metadataCreateElasticsearchDomainOutput `json:"-" xml:"-"` -} - -type metadataCreateElasticsearchDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -474,11 +450,7 @@ type DeleteElasticsearchDomainInput struct { // The name of the Elasticsearch domain that you want to permanently delete. DomainName *string `location:"uri" locationName:"DomainName" min:"3" type:"string" required:"true"` - metadataDeleteElasticsearchDomainInput `json:"-" xml:"-"` -} - -type metadataDeleteElasticsearchDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -498,11 +470,7 @@ type DeleteElasticsearchDomainOutput struct { // The status of the Elasticsearch domain being deleted. DomainStatus *ElasticsearchDomainStatus `type:"structure"` - metadataDeleteElasticsearchDomainOutput `json:"-" xml:"-"` -} - -type metadataDeleteElasticsearchDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -521,11 +489,7 @@ type DescribeElasticsearchDomainConfigInput struct { // The Elasticsearch domain that you want to get information about. DomainName *string `location:"uri" locationName:"DomainName" min:"3" type:"string" required:"true"` - metadataDescribeElasticsearchDomainConfigInput `json:"-" xml:"-"` -} - -type metadataDescribeElasticsearchDomainConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -545,11 +509,7 @@ type DescribeElasticsearchDomainConfigOutput struct { // request. DomainConfig *ElasticsearchDomainConfig `type:"structure" required:"true"` - metadataDescribeElasticsearchDomainConfigOutput `json:"-" xml:"-"` -} - -type metadataDescribeElasticsearchDomainConfigOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -567,11 +527,7 @@ type DescribeElasticsearchDomainInput struct { // The name of the Elasticsearch domain for which you want information. DomainName *string `location:"uri" locationName:"DomainName" min:"3" type:"string" required:"true"` - metadataDescribeElasticsearchDomainInput `json:"-" xml:"-"` -} - -type metadataDescribeElasticsearchDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -590,11 +546,7 @@ type DescribeElasticsearchDomainOutput struct { // The current status of the Elasticsearch domain. DomainStatus *ElasticsearchDomainStatus `type:"structure" required:"true"` - metadataDescribeElasticsearchDomainOutput `json:"-" xml:"-"` -} - -type metadataDescribeElasticsearchDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -613,11 +565,7 @@ type DescribeElasticsearchDomainsInput struct { // The Elasticsearch domains for which you want information. DomainNames []*string `type:"list" required:"true"` - metadataDescribeElasticsearchDomainsInput `json:"-" xml:"-"` -} - -type metadataDescribeElasticsearchDomainsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -636,11 +584,7 @@ type DescribeElasticsearchDomainsOutput struct { // The status of the domains requested in the DescribeElasticsearchDomains request. DomainStatusList []*ElasticsearchDomainStatus `type:"list" required:"true"` - metadataDescribeElasticsearchDomainsOutput `json:"-" xml:"-"` -} - -type metadataDescribeElasticsearchDomainsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -657,11 +601,7 @@ type DomainInfo struct { // Specifies the DomainName. DomainName *string `min:"3" type:"string"` - metadataDomainInfo `json:"-" xml:"-"` -} - -type metadataDomainInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -690,11 +630,7 @@ type EBSOptions struct { // Specifies the volume type for EBS-based storage. VolumeType *string `type:"string" enum:"VolumeType"` - metadataEBSOptions `json:"-" xml:"-"` -} - -type metadataEBSOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -715,11 +651,7 @@ type EBSOptionsStatus struct { // Specifies the status of the EBS options for the specified Elasticsearch domain. Status *OptionStatus `type:"structure" required:"true"` - metadataEBSOptionsStatus `json:"-" xml:"-"` -} - -type metadataEBSOptionsStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -757,11 +689,7 @@ type ElasticsearchClusterConfig struct { // target="_blank) for more information. ZoneAwarenessEnabled *bool `type:"boolean"` - metadataElasticsearchClusterConfig `json:"-" xml:"-"` -} - -type metadataElasticsearchClusterConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -783,11 +711,7 @@ type ElasticsearchClusterConfigStatus struct { // domain. Status *OptionStatus `type:"structure" required:"true"` - metadataElasticsearchClusterConfigStatus `json:"-" xml:"-"` -} - -type metadataElasticsearchClusterConfigStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -819,11 +743,7 @@ type ElasticsearchDomainConfig struct { // Specifies the SnapshotOptions for the Elasticsearch domain. SnapshotOptions *SnapshotOptionsStatus `type:"structure"` - metadataElasticsearchDomainConfig `json:"-" xml:"-"` -} - -type metadataElasticsearchDomainConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -888,11 +808,7 @@ type ElasticsearchDomainStatus struct { // Specifies the status of the SnapshotOptions SnapshotOptions *SnapshotOptions `type:"structure"` - metadataElasticsearchDomainStatus `json:"-" xml:"-"` -} - -type metadataElasticsearchDomainStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -906,11 +822,7 @@ func (s ElasticsearchDomainStatus) GoString() string { } type ListDomainNamesInput struct { - metadataListDomainNamesInput `json:"-" xml:"-"` -} - -type metadataListDomainNamesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -929,11 +841,7 @@ type ListDomainNamesOutput struct { // List of Elasticsearch domain names. DomainNames []*DomainInfo `type:"list"` - metadataListDomainNamesOutput `json:"-" xml:"-"` -} - -type metadataListDomainNamesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -954,11 +862,7 @@ type ListTagsInput struct { // that you want to view. ARN *string `location:"querystring" locationName:"arn" type:"string" required:"true"` - metadataListTagsInput `json:"-" xml:"-"` -} - -type metadataListTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -977,11 +881,7 @@ type ListTagsOutput struct { // List of Tag for the requested Elasticsearch domain. TagList []*Tag `type:"list"` - metadataListTagsOutput `json:"-" xml:"-"` -} - -type metadataListTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1011,11 +911,7 @@ type OptionStatus struct { // Specifies the latest version for the entity. UpdateVersion *int64 `type:"integer"` - metadataOptionStatus `json:"-" xml:"-"` -} - -type metadataOptionStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1040,11 +936,7 @@ type RemoveTagsInput struct { // domain. TagKeys []*string `type:"list" required:"true"` - metadataRemoveTagsInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1058,11 +950,7 @@ func (s RemoveTagsInput) GoString() string { } type RemoveTagsOutput struct { - metadataRemoveTagsOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1082,11 +970,7 @@ type SnapshotOptions struct { // snapshot of the specified Elasticsearch domain. Default value is 0 hours. AutomatedSnapshotStartHour *int64 `type:"integer"` - metadataSnapshotOptions `json:"-" xml:"-"` -} - -type metadataSnapshotOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1107,11 +991,7 @@ type SnapshotOptionsStatus struct { // Specifies the status of a daily automated snapshot. Status *OptionStatus `type:"structure" required:"true"` - metadataSnapshotOptionsStatus `json:"-" xml:"-"` -} - -type metadataSnapshotOptionsStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1136,11 +1016,7 @@ type Tag struct { // : Trinity Value *string `type:"string" required:"true"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1178,11 +1054,7 @@ type UpdateElasticsearchDomainConfigInput struct { // Default value is 0 hours. SnapshotOptions *SnapshotOptions `type:"structure"` - metadataUpdateElasticsearchDomainConfigInput `json:"-" xml:"-"` -} - -type metadataUpdateElasticsearchDomainConfigInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1201,11 +1073,7 @@ type UpdateElasticsearchDomainConfigOutput struct { // The status of the updated Elasticsearch domain. DomainConfig *ElasticsearchDomainConfig `type:"structure" required:"true"` - metadataUpdateElasticsearchDomainConfigOutput `json:"-" xml:"-"` -} - -type metadataUpdateElasticsearchDomainConfigOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/elastictranscoder/api.go b/service/elastictranscoder/api.go index 7eb2ff99a54..3162a6fe6fd 100644 --- a/service/elastictranscoder/api.go +++ b/service/elastictranscoder/api.go @@ -648,11 +648,7 @@ type Artwork struct { // this option, Elastic Transcoder does not scale the art up. SizingPolicy *string `type:"string"` - metadataArtwork `json:"-" xml:"-"` -} - -type metadataArtwork struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -715,11 +711,7 @@ type AudioCodecOptions struct { // The supported value is Signed. Signed *string `type:"string"` - metadataAudioCodecOptions `json:"-" xml:"-"` -} - -type metadataAudioCodecOptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -846,11 +838,7 @@ type AudioParameters struct { // rate. SampleRate *string `type:"string"` - metadataAudioParameters `json:"-" xml:"-"` -} - -type metadataAudioParameters struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -871,11 +859,7 @@ type CancelJobInput struct { // Submitted, use the ListJobsByStatus API action. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataCancelJobInput `json:"-" xml:"-"` -} - -type metadataCancelJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -891,11 +875,7 @@ func (s CancelJobInput) GoString() string { // The response body contains a JSON object. If the job is successfully canceled, // the value of Success is true. type CancelJobOutput struct { - metadataCancelJobOutput `json:"-" xml:"-"` -} - -type metadataCancelJobOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -957,11 +937,7 @@ type CaptionFormat struct { // (en), the name of the first caption file will be Sydney-en-sunrise00000.srt. Pattern *string `type:"string"` - metadataCaptionFormat `json:"-" xml:"-"` -} - -type metadataCaptionFormat struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1008,11 +984,7 @@ type CaptionSource struct { // Specify the TimeOffset in the form [+-]SS.sss or [+-]HH:mm:SS.ss. TimeOffset *string `type:"string"` - metadataCaptionSource `json:"-" xml:"-"` -} - -type metadataCaptionSource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1055,11 +1027,7 @@ type Captions struct { // MergePolicy cannot be null. MergePolicy *string `type:"string"` - metadataCaptions `json:"-" xml:"-"` -} - -type metadataCaptions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1078,11 +1046,7 @@ type Clip struct { // Settings that determine when a clip begins and how long it lasts. TimeSpan *TimeSpan `type:"structure"` - metadataClip `json:"-" xml:"-"` -} - -type metadataClip struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1133,11 +1097,7 @@ type CreateJobInput struct { // will be returned in the same order in which you specify them. UserMetadata map[string]*string `type:"map"` - metadataCreateJobInput `json:"-" xml:"-"` -} - -type metadataCreateJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1290,11 +1250,7 @@ type CreateJobOutput struct { // the current output. Watermarks []*JobWatermark `type:"list"` - metadataCreateJobOutput `json:"-" xml:"-"` -} - -type metadataCreateJobOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1372,11 +1328,7 @@ type CreateJobPlaylist struct { // output files associated with this playlist. PlayReadyDrm *PlayReadyDrm `type:"structure"` - metadataCreateJobPlaylist `json:"-" xml:"-"` -} - -type metadataCreateJobPlaylist struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1395,11 +1347,7 @@ type CreateJobResponse struct { // is created. Job *Job `type:"structure"` - metadataCreateJobResponse `json:"-" xml:"-"` -} - -type metadataCreateJobResponse struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1565,11 +1513,7 @@ type CreatePipelineInput struct { // Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket. ThumbnailConfig *PipelineOutputConfig `type:"structure"` - metadataCreatePipelineInput `json:"-" xml:"-"` -} - -type metadataCreatePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1597,11 +1541,7 @@ type CreatePipelineOutput struct { // cross-regional charges. Warnings []*Warning `type:"list"` - metadataCreatePipelineOutput `json:"-" xml:"-"` -} - -type metadataCreatePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1637,11 +1577,7 @@ type CreatePresetInput struct { // A section of the request body that specifies the video parameters. Video *VideoParameters `type:"structure"` - metadataCreatePresetInput `json:"-" xml:"-"` -} - -type metadataCreatePresetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1666,11 +1602,7 @@ type CreatePresetOutput struct { // preset because the settings might produce acceptable output. Warning *string `type:"string"` - metadataCreatePresetOutput `json:"-" xml:"-"` -} - -type metadataCreatePresetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1688,11 +1620,7 @@ type DeletePipelineInput struct { // The identifier of the pipeline that you want to delete. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataDeletePipelineInput `json:"-" xml:"-"` -} - -type metadataDeletePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1707,11 +1635,7 @@ func (s DeletePipelineInput) GoString() string { // The DeletePipelineResponse structure. type DeletePipelineOutput struct { - metadataDeletePipelineOutput `json:"-" xml:"-"` -} - -type metadataDeletePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1729,11 +1653,7 @@ type DeletePresetInput struct { // The identifier of the preset for which you want to get detailed information. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataDeletePresetInput `json:"-" xml:"-"` -} - -type metadataDeletePresetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1748,11 +1668,7 @@ func (s DeletePresetInput) GoString() string { // The DeletePresetResponse structure. type DeletePresetOutput struct { - metadataDeletePresetOutput `json:"-" xml:"-"` -} - -type metadataDeletePresetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1783,11 +1699,7 @@ type DetectedProperties struct { // The detected width of the input file, in pixels. Width *int64 `type:"integer"` - metadataDetectedProperties `json:"-" xml:"-"` -} - -type metadataDetectedProperties struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1865,11 +1777,7 @@ type Encryption struct { // data. Mode *string `type:"string"` - metadataEncryption `json:"-" xml:"-"` -} - -type metadataEncryption struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1930,11 +1838,7 @@ type HlsContentProtection struct { // tag in the output playlist. Method *string `type:"string"` - metadataHlsContentProtection `json:"-" xml:"-"` -} - -type metadataHlsContentProtection struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2021,11 +1925,7 @@ type Job struct { // The following symbols: _.:/=+-%@ UserMetadata map[string]*string `type:"map"` - metadataJob `json:"-" xml:"-"` -} - -type metadataJob struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2056,11 +1956,7 @@ type JobAlbumArt struct { // file. MergePolicy *string `type:"string"` - metadataJobAlbumArt `json:"-" xml:"-"` -} - -type metadataJobAlbumArt struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2137,11 +2033,7 @@ type JobInput struct { // detect the resolution of the input file. Resolution *string `type:"string"` - metadataJobInput `json:"-" xml:"-"` -} - -type metadataJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2356,11 +2248,7 @@ type JobOutput struct { // Specifies the width of the output file in pixels. Width *int64 `type:"integer"` - metadataJobOutput `json:"-" xml:"-"` -} - -type metadataJobOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2396,11 +2284,7 @@ type JobWatermark struct { // Id tells Elastic Transcoder which settings to use. PresetWatermarkId *string `min:"1" type:"string"` - metadataJobWatermark `json:"-" xml:"-"` -} - -type metadataJobWatermark struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2426,11 +2310,7 @@ type ListJobsByPipelineInput struct { // The ID of the pipeline for which you want to get job information. PipelineId *string `location:"uri" locationName:"PipelineId" type:"string" required:"true"` - metadataListJobsByPipelineInput `json:"-" xml:"-"` -} - -type metadataListJobsByPipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2453,11 +2333,7 @@ type ListJobsByPipelineOutput struct { // reached the last page of results, the value of NextPageToken is null. NextPageToken *string `type:"string"` - metadataListJobsByPipelineOutput `json:"-" xml:"-"` -} - -type metadataListJobsByPipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2485,11 +2361,7 @@ type ListJobsByStatusInput struct { // Progressing, Complete, Canceled, or Error. Status *string `location:"uri" locationName:"Status" type:"string" required:"true"` - metadataListJobsByStatusInput `json:"-" xml:"-"` -} - -type metadataListJobsByStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2512,11 +2384,7 @@ type ListJobsByStatusOutput struct { // reached the last page of results, the value of NextPageToken is null. NextPageToken *string `type:"string"` - metadataListJobsByStatusOutput `json:"-" xml:"-"` -} - -type metadataListJobsByStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2540,11 +2408,7 @@ type ListPipelinesInput struct { // in subsequent GET requests to get each successive page of results. PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` - metadataListPipelinesInput `json:"-" xml:"-"` -} - -type metadataListPipelinesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2567,11 +2431,7 @@ type ListPipelinesOutput struct { // An array of Pipeline objects. Pipelines []*Pipeline `type:"list"` - metadataListPipelinesOutput `json:"-" xml:"-"` -} - -type metadataListPipelinesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2595,11 +2455,7 @@ type ListPresetsInput struct { // in subsequent GET requests to get each successive page of results. PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` - metadataListPresetsInput `json:"-" xml:"-"` -} - -type metadataListPresetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2622,11 +2478,7 @@ type ListPresetsOutput struct { // An array of Preset objects. Presets []*Preset `type:"list"` - metadataListPresetsOutput `json:"-" xml:"-"` -} - -type metadataListPresetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2661,11 +2513,7 @@ type Notifications struct { // a warning condition. Warning *string `type:"string"` - metadataNotifications `json:"-" xml:"-"` -} - -type metadataNotifications struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2705,11 +2553,7 @@ type Permission struct { // or LogDelivery. GranteeType *string `type:"string"` - metadataPermission `json:"-" xml:"-"` -} - -type metadataPermission struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2835,11 +2679,7 @@ type Pipeline struct { // to the thumbnails that it stores in your Amazon S3 bucket. ThumbnailConfig *PipelineOutputConfig `type:"structure"` - metadataPipeline `json:"-" xml:"-"` -} - -type metadataPipeline struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2888,11 +2728,7 @@ type PipelineOutputConfig struct { // in your Amazon S3 bucket. StorageClass *string `type:"string"` - metadataPipelineOutputConfig `json:"-" xml:"-"` -} - -type metadataPipelineOutputConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2954,11 +2790,7 @@ type PlayReadyDrm struct { // tags for HLS playlist outputs. An example URL looks like this: https://www.example.com/exampleKey/ LicenseAcquisitionUrl *string `min:"1" type:"string"` - metadataPlayReadyDrm `json:"-" xml:"-"` -} - -type metadataPlayReadyDrm struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3046,11 +2878,7 @@ type Playlist struct { // Information that further explains the status. StatusDetail *string `type:"string"` - metadataPlaylist `json:"-" xml:"-"` -} - -type metadataPlaylist struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3103,11 +2931,7 @@ type Preset struct { // preset values. Video *VideoParameters `type:"structure"` - metadataPreset `json:"-" xml:"-"` -} - -type metadataPreset struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3246,11 +3070,7 @@ type PresetWatermark struct { // offset calculation. VerticalOffset *string `type:"string"` - metadataPresetWatermark `json:"-" xml:"-"` -} - -type metadataPresetWatermark struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3268,11 +3088,7 @@ type ReadJobInput struct { // The identifier of the job for which you want to get detailed information. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataReadJobInput `json:"-" xml:"-"` -} - -type metadataReadJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3290,11 +3106,7 @@ type ReadJobOutput struct { // A section of the response body that provides information about the job. Job *Job `type:"structure"` - metadataReadJobOutput `json:"-" xml:"-"` -} - -type metadataReadJobOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3312,11 +3124,7 @@ type ReadPipelineInput struct { // The identifier of the pipeline to read. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataReadPipelineInput `json:"-" xml:"-"` -} - -type metadataReadPipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3342,11 +3150,7 @@ type ReadPipelineOutput struct { // cross-regional charges. Warnings []*Warning `type:"list"` - metadataReadPipelineOutput `json:"-" xml:"-"` -} - -type metadataReadPipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3364,11 +3168,7 @@ type ReadPresetInput struct { // The identifier of the preset for which you want to get detailed information. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataReadPresetInput `json:"-" xml:"-"` -} - -type metadataReadPresetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3386,11 +3186,7 @@ type ReadPresetOutput struct { // A section of the response body that provides information about the preset. Preset *Preset `type:"structure"` - metadataReadPresetOutput `json:"-" xml:"-"` -} - -type metadataReadPresetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3421,11 +3217,7 @@ type TestRoleInput struct { // that you want the action to send a test notification to. Topics []*string `type:"list" required:"true"` - metadataTestRoleInput `json:"-" xml:"-"` -} - -type metadataTestRoleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3448,11 +3240,7 @@ type TestRoleOutput struct { // is false. Success *string `type:"string"` - metadataTestRoleOutput `json:"-" xml:"-"` -} - -type metadataTestRoleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3540,11 +3328,7 @@ type Thumbnails struct { // Transcoder does not scale thumbnails up. SizingPolicy *string `type:"string"` - metadataThumbnails `json:"-" xml:"-"` -} - -type metadataThumbnails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3574,11 +3358,7 @@ type TimeSpan struct { // value, Elastic Transcoder starts at the beginning of the input file. StartTime *string `type:"string"` - metadataTimeSpan `json:"-" xml:"-"` -} - -type metadataTimeSpan struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3602,11 +3382,7 @@ type Timing struct { // The time the job was submitted to Elastic Transcoder, in epoch milliseconds. SubmitTimeMillis *int64 `type:"long"` - metadataTiming `json:"-" xml:"-"` -} - -type metadataTiming struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3743,11 +3519,7 @@ type UpdatePipelineInput struct { // Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket. ThumbnailConfig *PipelineOutputConfig `type:"structure"` - metadataUpdatePipelineInput `json:"-" xml:"-"` -} - -type metadataUpdatePipelineInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3784,11 +3556,7 @@ type UpdatePipelineNotificationsInput struct { // returned when you created the topic. Notifications *Notifications `type:"structure" required:"true"` - metadataUpdatePipelineNotificationsInput `json:"-" xml:"-"` -} - -type metadataUpdatePipelineNotificationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3806,11 +3574,7 @@ type UpdatePipelineNotificationsOutput struct { // A section of the response body that provides information about the pipeline. Pipeline *Pipeline `type:"structure"` - metadataUpdatePipelineNotificationsOutput `json:"-" xml:"-"` -} - -type metadataUpdatePipelineNotificationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3837,11 +3601,7 @@ type UpdatePipelineOutput struct { // cross-regional charges. Warnings []*Warning `type:"list"` - metadataUpdatePipelineOutput `json:"-" xml:"-"` -} - -type metadataUpdatePipelineOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3865,11 +3625,7 @@ type UpdatePipelineStatusInput struct { // currently processing jobs. Status *string `type:"string" required:"true"` - metadataUpdatePipelineStatusInput `json:"-" xml:"-"` -} - -type metadataUpdatePipelineStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3888,11 +3644,7 @@ type UpdatePipelineStatusOutput struct { // A section of the response body that provides information about the pipeline. Pipeline *Pipeline `type:"structure"` - metadataUpdatePipelineStatusOutput `json:"-" xml:"-"` -} - -type metadataUpdatePipelineStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4202,11 +3954,7 @@ type VideoParameters struct { // that have different dimensions. Watermarks []*PresetWatermark `type:"list"` - metadataVideoParameters `json:"-" xml:"-"` -} - -type metadataVideoParameters struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4235,11 +3983,7 @@ type Warning struct { // Note: AWS KMS keys must be in the same region as the pipeline. Message *string `type:"string"` - metadataWarning `json:"-" xml:"-"` -} - -type metadataWarning struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/elb/api.go b/service/elb/api.go index 76803cfc0b9..383bc6dd3a0 100644 --- a/service/elb/api.go +++ b/service/elb/api.go @@ -986,11 +986,7 @@ type AccessLog struct { // the root level of the bucket. S3BucketPrefix *string `type:"string"` - metadataAccessLog `json:"-" xml:"-"` -} - -type metadataAccessLog struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1010,11 +1006,7 @@ type AddTagsInput struct { // The tags. Tags []*Tag `min:"1" type:"list" required:"true"` - metadataAddTagsInput `json:"-" xml:"-"` -} - -type metadataAddTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1028,11 +1020,7 @@ func (s AddTagsInput) GoString() string { } type AddTagsOutput struct { - metadataAddTagsOutput `json:"-" xml:"-"` -} - -type metadataAddTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1053,11 +1041,7 @@ type AdditionalAttribute struct { // This parameter is reserved. Value *string `type:"string"` - metadataAdditionalAttribute `json:"-" xml:"-"` -} - -type metadataAdditionalAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1079,11 +1063,7 @@ type AppCookieStickinessPolicy struct { // a set of policies for this load balancer. PolicyName *string `type:"string"` - metadataAppCookieStickinessPolicy `json:"-" xml:"-"` -} - -type metadataAppCookieStickinessPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1104,11 +1084,7 @@ type ApplySecurityGroupsToLoadBalancerInput struct { // that you cannot specify the name of the security group. SecurityGroups []*string `type:"list" required:"true"` - metadataApplySecurityGroupsToLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataApplySecurityGroupsToLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1125,11 +1101,7 @@ type ApplySecurityGroupsToLoadBalancerOutput struct { // The IDs of the security groups associated with the load balancer. SecurityGroups []*string `type:"list"` - metadataApplySecurityGroupsToLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataApplySecurityGroupsToLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1150,11 +1122,7 @@ type AttachLoadBalancerToSubnetsInput struct { // subnet per Availability Zone. Subnets []*string `type:"list" required:"true"` - metadataAttachLoadBalancerToSubnetsInput `json:"-" xml:"-"` -} - -type metadataAttachLoadBalancerToSubnetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1171,11 +1139,7 @@ type AttachLoadBalancerToSubnetsOutput struct { // The IDs of the subnets attached to the load balancer. Subnets []*string `type:"list"` - metadataAttachLoadBalancerToSubnetsOutput `json:"-" xml:"-"` -} - -type metadataAttachLoadBalancerToSubnetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1196,11 +1160,7 @@ type BackendServerDescription struct { // The names of the policies enabled for the back-end server. PolicyNames []*string `type:"list"` - metadataBackendServerDescription `json:"-" xml:"-"` -} - -type metadataBackendServerDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1220,11 +1180,7 @@ type ConfigureHealthCheckInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataConfigureHealthCheckInput `json:"-" xml:"-"` -} - -type metadataConfigureHealthCheckInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1241,11 +1197,7 @@ type ConfigureHealthCheckOutput struct { // The updated health check. HealthCheck *HealthCheck `type:"structure"` - metadataConfigureHealthCheckOutput `json:"-" xml:"-"` -} - -type metadataConfigureHealthCheckOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1267,11 +1219,7 @@ type ConnectionDraining struct { // deregistering the instances. Timeout *int64 `type:"integer"` - metadataConnectionDraining `json:"-" xml:"-"` -} - -type metadataConnectionDraining struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1290,11 +1238,7 @@ type ConnectionSettings struct { // has been sent over the connection) before it is closed by the load balancer. IdleTimeout *int64 `min:"1" type:"integer" required:"true"` - metadataConnectionSettings `json:"-" xml:"-"` -} - -type metadataConnectionSettings struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1319,11 +1263,7 @@ type CreateAppCookieStickinessPolicyInput struct { // for this load balancer. PolicyName *string `type:"string" required:"true"` - metadataCreateAppCookieStickinessPolicyInput `json:"-" xml:"-"` -} - -type metadataCreateAppCookieStickinessPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1337,11 +1277,7 @@ func (s CreateAppCookieStickinessPolicyInput) GoString() string { } type CreateAppCookieStickinessPolicyOutput struct { - metadataCreateAppCookieStickinessPolicyOutput `json:"-" xml:"-"` -} - -type metadataCreateAppCookieStickinessPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1368,11 +1304,7 @@ type CreateLBCookieStickinessPolicyInput struct { // for this load balancer. PolicyName *string `type:"string" required:"true"` - metadataCreateLBCookieStickinessPolicyInput `json:"-" xml:"-"` -} - -type metadataCreateLBCookieStickinessPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1386,11 +1318,7 @@ func (s CreateLBCookieStickinessPolicyInput) GoString() string { } type CreateLBCookieStickinessPolicyOutput struct { - metadataCreateLBCookieStickinessPolicyOutput `json:"-" xml:"-"` -} - -type metadataCreateLBCookieStickinessPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1451,11 +1379,7 @@ type CreateLoadBalancerInput struct { // in the Elastic Load Balancing Developer Guide. Tags []*Tag `min:"1" type:"list"` - metadataCreateLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataCreateLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1475,11 +1399,7 @@ type CreateLoadBalancerListenersInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataCreateLoadBalancerListenersInput `json:"-" xml:"-"` -} - -type metadataCreateLoadBalancerListenersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1493,11 +1413,7 @@ func (s CreateLoadBalancerListenersInput) GoString() string { } type CreateLoadBalancerListenersOutput struct { - metadataCreateLoadBalancerListenersOutput `json:"-" xml:"-"` -} - -type metadataCreateLoadBalancerListenersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1514,11 +1430,7 @@ type CreateLoadBalancerOutput struct { // The DNS name of the load balancer. DNSName *string `type:"string"` - metadataCreateLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataCreateLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1545,11 +1457,7 @@ type CreateLoadBalancerPolicyInput struct { // The name of the base policy type. To get the list of policy types, use DescribeLoadBalancerPolicyTypes. PolicyTypeName *string `type:"string" required:"true"` - metadataCreateLoadBalancerPolicyInput `json:"-" xml:"-"` -} - -type metadataCreateLoadBalancerPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1563,11 +1471,7 @@ func (s CreateLoadBalancerPolicyInput) GoString() string { } type CreateLoadBalancerPolicyOutput struct { - metadataCreateLoadBalancerPolicyOutput `json:"-" xml:"-"` -} - -type metadataCreateLoadBalancerPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1585,11 +1489,7 @@ type CrossZoneLoadBalancing struct { // Specifies whether cross-zone load balancing is enabled for the load balancer. Enabled *bool `type:"boolean" required:"true"` - metadataCrossZoneLoadBalancing `json:"-" xml:"-"` -} - -type metadataCrossZoneLoadBalancing struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1606,11 +1506,7 @@ type DeleteLoadBalancerInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataDeleteLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataDeleteLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1630,11 +1526,7 @@ type DeleteLoadBalancerListenersInput struct { // The client port numbers of the listeners. LoadBalancerPorts []*int64 `type:"list" required:"true"` - metadataDeleteLoadBalancerListenersInput `json:"-" xml:"-"` -} - -type metadataDeleteLoadBalancerListenersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1648,11 +1540,7 @@ func (s DeleteLoadBalancerListenersInput) GoString() string { } type DeleteLoadBalancerListenersOutput struct { - metadataDeleteLoadBalancerListenersOutput `json:"-" xml:"-"` -} - -type metadataDeleteLoadBalancerListenersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1666,11 +1554,7 @@ func (s DeleteLoadBalancerListenersOutput) GoString() string { } type DeleteLoadBalancerOutput struct { - metadataDeleteLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataDeleteLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1691,11 +1575,7 @@ type DeleteLoadBalancerPolicyInput struct { // The name of the policy. PolicyName *string `type:"string" required:"true"` - metadataDeleteLoadBalancerPolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteLoadBalancerPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1709,11 +1589,7 @@ func (s DeleteLoadBalancerPolicyInput) GoString() string { } type DeleteLoadBalancerPolicyOutput struct { - metadataDeleteLoadBalancerPolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteLoadBalancerPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1733,11 +1609,7 @@ type DeregisterInstancesFromLoadBalancerInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataDeregisterInstancesFromLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataDeregisterInstancesFromLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1754,11 +1626,7 @@ type DeregisterInstancesFromLoadBalancerOutput struct { // The remaining instances registered with the load balancer. Instances []*Instance `type:"list"` - metadataDeregisterInstancesFromLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataDeregisterInstancesFromLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1778,11 +1646,7 @@ type DescribeInstanceHealthInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataDescribeInstanceHealthInput `json:"-" xml:"-"` -} - -type metadataDescribeInstanceHealthInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1799,11 +1663,7 @@ type DescribeInstanceHealthOutput struct { // Information about the health of the instances. InstanceStates []*InstanceState `type:"list"` - metadataDescribeInstanceHealthOutput `json:"-" xml:"-"` -} - -type metadataDescribeInstanceHealthOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1820,11 +1680,7 @@ type DescribeLoadBalancerAttributesInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataDescribeLoadBalancerAttributesInput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancerAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1841,11 +1697,7 @@ type DescribeLoadBalancerAttributesOutput struct { // Information about the load balancer attributes. LoadBalancerAttributes *LoadBalancerAttributes `type:"structure"` - metadataDescribeLoadBalancerAttributesOutput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancerAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1865,11 +1717,7 @@ type DescribeLoadBalancerPoliciesInput struct { // The names of the policies. PolicyNames []*string `type:"list"` - metadataDescribeLoadBalancerPoliciesInput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancerPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1886,11 +1734,7 @@ type DescribeLoadBalancerPoliciesOutput struct { // Information about the policies. PolicyDescriptions []*PolicyDescription `type:"list"` - metadataDescribeLoadBalancerPoliciesOutput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancerPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1908,11 +1752,7 @@ type DescribeLoadBalancerPolicyTypesInput struct { // types defined by Elastic Load Balancing. PolicyTypeNames []*string `type:"list"` - metadataDescribeLoadBalancerPolicyTypesInput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancerPolicyTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1929,11 +1769,7 @@ type DescribeLoadBalancerPolicyTypesOutput struct { // Information about the policy types. PolicyTypeDescriptions []*PolicyTypeDescription `type:"list"` - metadataDescribeLoadBalancerPolicyTypesOutput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancerPolicyTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1958,11 +1794,7 @@ type DescribeLoadBalancersInput struct { // 400). The default is 400. PageSize *int64 `min:"1" type:"integer"` - metadataDescribeLoadBalancersInput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1983,11 +1815,7 @@ type DescribeLoadBalancersOutput struct { // additional results, the string is empty. NextMarker *string `type:"string"` - metadataDescribeLoadBalancersOutput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBalancersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2004,11 +1832,7 @@ type DescribeTagsInput struct { // The names of the load balancers. LoadBalancerNames []*string `min:"1" type:"list" required:"true"` - metadataDescribeTagsInput `json:"-" xml:"-"` -} - -type metadataDescribeTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2025,11 +1849,7 @@ type DescribeTagsOutput struct { // Information about the tags. TagDescriptions []*TagDescription `type:"list"` - metadataDescribeTagsOutput `json:"-" xml:"-"` -} - -type metadataDescribeTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2049,11 +1869,7 @@ type DetachLoadBalancerFromSubnetsInput struct { // The IDs of the subnets. Subnets []*string `type:"list" required:"true"` - metadataDetachLoadBalancerFromSubnetsInput `json:"-" xml:"-"` -} - -type metadataDetachLoadBalancerFromSubnetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2070,11 +1886,7 @@ type DetachLoadBalancerFromSubnetsOutput struct { // The IDs of the remaining subnets for the load balancer. Subnets []*string `type:"list"` - metadataDetachLoadBalancerFromSubnetsOutput `json:"-" xml:"-"` -} - -type metadataDetachLoadBalancerFromSubnetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2094,11 +1906,7 @@ type DisableAvailabilityZonesForLoadBalancerInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataDisableAvailabilityZonesForLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataDisableAvailabilityZonesForLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2115,11 +1923,7 @@ type DisableAvailabilityZonesForLoadBalancerOutput struct { // The remaining Availability Zones for the load balancer. AvailabilityZones []*string `type:"list"` - metadataDisableAvailabilityZonesForLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataDisableAvailabilityZonesForLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2139,11 +1943,7 @@ type EnableAvailabilityZonesForLoadBalancerInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataEnableAvailabilityZonesForLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataEnableAvailabilityZonesForLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2160,11 +1960,7 @@ type EnableAvailabilityZonesForLoadBalancerOutput struct { // The updated list of Availability Zones for the load balancer. AvailabilityZones []*string `type:"list"` - metadataEnableAvailabilityZonesForLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataEnableAvailabilityZonesForLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2217,11 +2013,7 @@ type HealthCheck struct { // instance to the Unhealthy state. UnhealthyThreshold *int64 `min:"2" type:"integer" required:"true"` - metadataHealthCheck `json:"-" xml:"-"` -} - -type metadataHealthCheck struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2239,11 +2031,7 @@ type Instance struct { // The ID of the instance. InstanceId *string `type:"string"` - metadataInstance `json:"-" xml:"-"` -} - -type metadataInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2303,11 +2091,7 @@ type InstanceState struct { // Valid values: InService | OutOfService | Unknown State *string `type:"string"` - metadataInstanceState `json:"-" xml:"-"` -} - -type metadataInstanceState struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2331,11 +2115,7 @@ type LBCookieStickinessPolicy struct { // set of policies for this load balancer. PolicyName *string `type:"string"` - metadataLBCookieStickinessPolicy `json:"-" xml:"-"` -} - -type metadataLBCookieStickinessPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2382,11 +2162,7 @@ type Listener struct { // The Amazon Resource Name (ARN) of the server certificate. SSLCertificateId *string `type:"string"` - metadataListener `json:"-" xml:"-"` -} - -type metadataListener struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2411,11 +2187,7 @@ type ListenerDescription struct { // The policies. If there are no policies enabled, the list is empty. PolicyNames []*string `type:"list"` - metadataListenerDescription `json:"-" xml:"-"` -} - -type metadataListenerDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2464,11 +2236,7 @@ type LoadBalancerAttributes struct { // in the Elastic Load Balancing Developer Guide. CrossZoneLoadBalancing *CrossZoneLoadBalancing `type:"structure"` - metadataLoadBalancerAttributes `json:"-" xml:"-"` -} - -type metadataLoadBalancerAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2545,11 +2313,7 @@ type LoadBalancerDescription struct { // The ID of the VPC for the load balancer. VPCId *string `type:"string"` - metadataLoadBalancerDescription `json:"-" xml:"-"` -} - -type metadataLoadBalancerDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2569,11 +2333,7 @@ type ModifyLoadBalancerAttributesInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataModifyLoadBalancerAttributesInput `json:"-" xml:"-"` -} - -type metadataModifyLoadBalancerAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2593,11 +2353,7 @@ type ModifyLoadBalancerAttributesOutput struct { // The name of the load balancer. LoadBalancerName *string `type:"string"` - metadataModifyLoadBalancerAttributesOutput `json:"-" xml:"-"` -} - -type metadataModifyLoadBalancerAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2621,11 +2377,7 @@ type Policies struct { // The policies other than the stickiness policies. OtherPolicies []*string `type:"list"` - metadataPolicies `json:"-" xml:"-"` -} - -type metadataPolicies struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2646,11 +2398,7 @@ type PolicyAttribute struct { // The value of the attribute. AttributeValue *string `type:"string"` - metadataPolicyAttribute `json:"-" xml:"-"` -} - -type metadataPolicyAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2671,11 +2419,7 @@ type PolicyAttributeDescription struct { // The value of the attribute. AttributeValue *string `type:"string"` - metadataPolicyAttributeDescription `json:"-" xml:"-"` -} - -type metadataPolicyAttributeDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2711,11 +2455,7 @@ type PolicyAttributeTypeDescription struct { // A description of the attribute. Description *string `type:"string"` - metadataPolicyAttributeTypeDescription `json:"-" xml:"-"` -} - -type metadataPolicyAttributeTypeDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2739,11 +2479,7 @@ type PolicyDescription struct { // The name of the policy type. PolicyTypeName *string `type:"string"` - metadataPolicyDescription `json:"-" xml:"-"` -} - -type metadataPolicyDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2768,11 +2504,7 @@ type PolicyTypeDescription struct { // The name of the policy type. PolicyTypeName *string `type:"string"` - metadataPolicyTypeDescription `json:"-" xml:"-"` -} - -type metadataPolicyTypeDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2792,11 +2524,7 @@ type RegisterInstancesWithLoadBalancerInput struct { // The name of the load balancer. LoadBalancerName *string `type:"string" required:"true"` - metadataRegisterInstancesWithLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataRegisterInstancesWithLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2813,11 +2541,7 @@ type RegisterInstancesWithLoadBalancerOutput struct { // The updated list of instances for the load balancer. Instances []*Instance `type:"list"` - metadataRegisterInstancesWithLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataRegisterInstancesWithLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2838,11 +2562,7 @@ type RemoveTagsInput struct { // The list of tag keys to remove. Tags []*TagKeyOnly `min:"1" type:"list" required:"true"` - metadataRemoveTagsInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2856,11 +2576,7 @@ func (s RemoveTagsInput) GoString() string { } type RemoveTagsOutput struct { - metadataRemoveTagsOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2883,11 +2599,7 @@ type SetLoadBalancerListenerSSLCertificateInput struct { // The Amazon Resource Name (ARN) of the SSL certificate. SSLCertificateId *string `type:"string" required:"true"` - metadataSetLoadBalancerListenerSSLCertificateInput `json:"-" xml:"-"` -} - -type metadataSetLoadBalancerListenerSSLCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2901,11 +2613,7 @@ func (s SetLoadBalancerListenerSSLCertificateInput) GoString() string { } type SetLoadBalancerListenerSSLCertificateOutput struct { - metadataSetLoadBalancerListenerSSLCertificateOutput `json:"-" xml:"-"` -} - -type metadataSetLoadBalancerListenerSSLCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2929,11 +2637,7 @@ type SetLoadBalancerPoliciesForBackendServerInput struct { // are removed from the back-end server. PolicyNames []*string `type:"list" required:"true"` - metadataSetLoadBalancerPoliciesForBackendServerInput `json:"-" xml:"-"` -} - -type metadataSetLoadBalancerPoliciesForBackendServerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2947,11 +2651,7 @@ func (s SetLoadBalancerPoliciesForBackendServerInput) GoString() string { } type SetLoadBalancerPoliciesForBackendServerOutput struct { - metadataSetLoadBalancerPoliciesForBackendServerOutput `json:"-" xml:"-"` -} - -type metadataSetLoadBalancerPoliciesForBackendServerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2975,11 +2675,7 @@ type SetLoadBalancerPoliciesOfListenerInput struct { // from the listener. PolicyNames []*string `type:"list" required:"true"` - metadataSetLoadBalancerPoliciesOfListenerInput `json:"-" xml:"-"` -} - -type metadataSetLoadBalancerPoliciesOfListenerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2993,11 +2689,7 @@ func (s SetLoadBalancerPoliciesOfListenerInput) GoString() string { } type SetLoadBalancerPoliciesOfListenerOutput struct { - metadataSetLoadBalancerPoliciesOfListenerOutput `json:"-" xml:"-"` -} - -type metadataSetLoadBalancerPoliciesOfListenerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3018,11 +2710,7 @@ type SourceSecurityGroup struct { // The owner of the security group. OwnerAlias *string `type:"string"` - metadataSourceSecurityGroup `json:"-" xml:"-"` -} - -type metadataSourceSecurityGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3043,11 +2731,7 @@ type Tag struct { // The value of the tag. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3068,11 +2752,7 @@ type TagDescription struct { // The tags. Tags []*Tag `min:"1" type:"list"` - metadataTagDescription `json:"-" xml:"-"` -} - -type metadataTagDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3090,11 +2770,7 @@ type TagKeyOnly struct { // The name of the key. Key *string `min:"1" type:"string"` - metadataTagKeyOnly `json:"-" xml:"-"` -} - -type metadataTagKeyOnly struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/emr/api.go b/service/emr/api.go index 1e75c636661..d8612d92a26 100644 --- a/service/emr/api.go +++ b/service/emr/api.go @@ -658,11 +658,7 @@ type AddInstanceGroupsInput struct { // Job flow in which to add the instance groups. JobFlowId *string `type:"string" required:"true"` - metadataAddInstanceGroupsInput `json:"-" xml:"-"` -} - -type metadataAddInstanceGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -683,11 +679,7 @@ type AddInstanceGroupsOutput struct { // The job flow ID in which the instance groups are added. JobFlowId *string `type:"string"` - metadataAddInstanceGroupsOutput `json:"-" xml:"-"` -} - -type metadataAddInstanceGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -709,11 +701,7 @@ type AddJobFlowStepsInput struct { // A list of StepConfig to be executed by the job flow. Steps []*StepConfig `type:"list" required:"true"` - metadataAddJobFlowStepsInput `json:"-" xml:"-"` -} - -type metadataAddJobFlowStepsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -731,11 +719,7 @@ type AddJobFlowStepsOutput struct { // The identifiers of the list of steps added to the job flow. StepIds []*string `type:"list"` - metadataAddJobFlowStepsOutput `json:"-" xml:"-"` -} - -type metadataAddJobFlowStepsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -760,11 +744,7 @@ type AddTagsInput struct { // of 256 characters. Tags []*Tag `type:"list" required:"true"` - metadataAddTagsInput `json:"-" xml:"-"` -} - -type metadataAddTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -779,11 +759,7 @@ func (s AddTagsInput) GoString() string { // This output indicates the result of adding tags to a resource. type AddTagsOutput struct { - metadataAddTagsOutput `json:"-" xml:"-"` -} - -type metadataAddTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -824,11 +800,7 @@ type Application struct { // The version of the application. Version *string `type:"string"` - metadataApplication `json:"-" xml:"-"` -} - -type metadataApplication struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -849,11 +821,7 @@ type BootstrapActionConfig struct { // The script run by the bootstrap action. ScriptBootstrapAction *ScriptBootstrapActionConfig `type:"structure" required:"true"` - metadataBootstrapActionConfig `json:"-" xml:"-"` -} - -type metadataBootstrapActionConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -871,11 +839,7 @@ type BootstrapActionDetail struct { // A description of the bootstrap action. BootstrapActionConfig *BootstrapActionConfig `type:"structure"` - metadataBootstrapActionDetail `json:"-" xml:"-"` -} - -type metadataBootstrapActionDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -958,11 +922,7 @@ type Cluster struct { // action. VisibleToAllUsers *bool `type:"boolean"` - metadataCluster `json:"-" xml:"-"` -} - -type metadataCluster struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -983,11 +943,7 @@ type ClusterStateChangeReason struct { // The descriptive message for the state change reason. Message *string `type:"string"` - metadataClusterStateChangeReason `json:"-" xml:"-"` -} - -type metadataClusterStateChangeReason struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1012,11 +968,7 @@ type ClusterStatus struct { // cluster. Timeline *ClusterTimeline `type:"structure"` - metadataClusterStatus `json:"-" xml:"-"` -} - -type metadataClusterStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1048,11 +1000,7 @@ type ClusterSummary struct { // The details about the current status of the cluster. Status *ClusterStatus `type:"structure"` - metadataClusterSummary `json:"-" xml:"-"` -} - -type metadataClusterSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1076,11 +1024,7 @@ type ClusterTimeline struct { // The date and time when the cluster was ready to execute steps. ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataClusterTimeline `json:"-" xml:"-"` -} - -type metadataClusterTimeline struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1104,11 +1048,7 @@ type Command struct { // The Amazon S3 location of the command script. ScriptPath *string `type:"string"` - metadataCommand `json:"-" xml:"-"` -} - -type metadataCommand struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1139,11 +1079,7 @@ type Configuration struct { // A set of properties supplied to the Configuration object. Properties map[string]*string `type:"map"` - metadataConfiguration `json:"-" xml:"-"` -} - -type metadataConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1161,11 +1097,7 @@ type DescribeClusterInput struct { // The identifier of the cluster to describe. ClusterId *string `type:"string" required:"true"` - metadataDescribeClusterInput `json:"-" xml:"-"` -} - -type metadataDescribeClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1183,11 +1115,7 @@ type DescribeClusterOutput struct { // This output contains the details for the requested cluster. Cluster *Cluster `type:"structure"` - metadataDescribeClusterOutput `json:"-" xml:"-"` -} - -type metadataDescribeClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1214,11 +1142,7 @@ type DescribeJobFlowsInput struct { // Return only job flows whose state is contained in this list. JobFlowStates []*string `type:"list"` - metadataDescribeJobFlowsInput `json:"-" xml:"-"` -} - -type metadataDescribeJobFlowsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1236,11 +1160,7 @@ type DescribeJobFlowsOutput struct { // A list of job flows matching the parameters supplied. JobFlows []*JobFlowDetail `type:"list"` - metadataDescribeJobFlowsOutput `json:"-" xml:"-"` -} - -type metadataDescribeJobFlowsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1261,11 +1181,7 @@ type DescribeStepInput struct { // The identifier of the step to describe. StepId *string `type:"string" required:"true"` - metadataDescribeStepInput `json:"-" xml:"-"` -} - -type metadataDescribeStepInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1283,11 +1199,7 @@ type DescribeStepOutput struct { // The step details for the requested step identifier. Step *Step `type:"structure"` - metadataDescribeStepOutput `json:"-" xml:"-"` -} - -type metadataDescribeStepOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1338,11 +1250,7 @@ type Ec2InstanceAttributes struct { // of the job flow assume this role. IamInstanceProfile *string `type:"string"` - metadataEc2InstanceAttributes `json:"-" xml:"-"` -} - -type metadataEc2InstanceAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1374,11 +1282,7 @@ type HadoopJarStepConfig struct { // properties to pass key value pairs to your main function. Properties []*KeyValue `type:"list"` - metadataHadoopJarStepConfig `json:"-" xml:"-"` -} - -type metadataHadoopJarStepConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1410,11 +1314,7 @@ type HadoopStepConfig struct { // these properties to pass key value pairs to your main function. Properties map[string]*string `type:"map"` - metadataHadoopStepConfig `json:"-" xml:"-"` -} - -type metadataHadoopStepConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1450,11 +1350,7 @@ type Instance struct { // The current status of the instance. Status *InstanceStatus `type:"structure"` - metadataInstance `json:"-" xml:"-"` -} - -type metadataInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1506,11 +1402,7 @@ type InstanceGroup struct { // The current status of the instance group. Status *InstanceGroupStatus `type:"structure"` - metadataInstanceGroup `json:"-" xml:"-"` -} - -type metadataInstanceGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1551,11 +1443,7 @@ type InstanceGroupConfig struct { // Friendly name given to the instance group. Name *string `type:"string"` - metadataInstanceGroupConfig `json:"-" xml:"-"` -} - -type metadataInstanceGroupConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1614,11 +1502,7 @@ type InstanceGroupDetail struct { // and FAILED. State *string `type:"string" required:"true" enum:"InstanceGroupState"` - metadataInstanceGroupDetail `json:"-" xml:"-"` -} - -type metadataInstanceGroupDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1644,11 +1528,7 @@ type InstanceGroupModifyConfig struct { // Unique ID of the instance group to expand or shrink. InstanceGroupId *string `type:"string" required:"true"` - metadataInstanceGroupModifyConfig `json:"-" xml:"-"` -} - -type metadataInstanceGroupModifyConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1669,11 +1549,7 @@ type InstanceGroupStateChangeReason struct { // The status change reason description. Message *string `type:"string"` - metadataInstanceGroupStateChangeReason `json:"-" xml:"-"` -} - -type metadataInstanceGroupStateChangeReason struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1697,11 +1573,7 @@ type InstanceGroupStatus struct { // The timeline of the instance group status over time. Timeline *InstanceGroupTimeline `type:"structure"` - metadataInstanceGroupStatus `json:"-" xml:"-"` -} - -type metadataInstanceGroupStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1725,11 +1597,7 @@ type InstanceGroupTimeline struct { // The date and time when the instance group became ready to perform tasks. ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataInstanceGroupTimeline `json:"-" xml:"-"` -} - -type metadataInstanceGroupTimeline struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1750,11 +1618,7 @@ type InstanceStateChangeReason struct { // The status change reason description. Message *string `type:"string"` - metadataInstanceStateChangeReason `json:"-" xml:"-"` -} - -type metadataInstanceStateChangeReason struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1778,11 +1642,7 @@ type InstanceStatus struct { // The timeline of the instance status over time. Timeline *InstanceTimeline `type:"structure"` - metadataInstanceStatus `json:"-" xml:"-"` -} - -type metadataInstanceStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1806,11 +1666,7 @@ type InstanceTimeline struct { // The date and time when the instance was ready to perform tasks. ReadyDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataInstanceTimeline `json:"-" xml:"-"` -} - -type metadataInstanceTimeline struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1873,11 +1729,7 @@ type JobFlowDetail struct { // SetVisibleToAllUsers action. VisibleToAllUsers *bool `type:"boolean"` - metadataJobFlowDetail `json:"-" xml:"-"` -} - -type metadataJobFlowDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1911,11 +1763,7 @@ type JobFlowExecutionStatusDetail struct { // The state of the job flow. State *string `type:"string" required:"true" enum:"JobFlowExecutionState"` - metadataJobFlowExecutionStatusDetail `json:"-" xml:"-"` -} - -type metadataJobFlowExecutionStatusDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1992,11 +1840,7 @@ type JobFlowInstancesConfig struct { // a job flow error. TerminationProtected *bool `type:"boolean"` - metadataJobFlowInstancesConfig `json:"-" xml:"-"` -} - -type metadataJobFlowInstancesConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2061,11 +1905,7 @@ type JobFlowInstancesDetail struct { // error. TerminationProtected *bool `type:"boolean"` - metadataJobFlowInstancesDetail `json:"-" xml:"-"` -} - -type metadataJobFlowInstancesDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2086,11 +1926,7 @@ type KeyValue struct { // The value part of the identified key. Value *string `type:"string"` - metadataKeyValue `json:"-" xml:"-"` -} - -type metadataKeyValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2111,11 +1947,7 @@ type ListBootstrapActionsInput struct { // The pagination token that indicates the next set of results to retrieve . Marker *string `type:"string"` - metadataListBootstrapActionsInput `json:"-" xml:"-"` -} - -type metadataListBootstrapActionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2136,11 +1968,7 @@ type ListBootstrapActionsOutput struct { // The pagination token that indicates the next set of results to retrieve . Marker *string `type:"string"` - metadataListBootstrapActionsOutput `json:"-" xml:"-"` -} - -type metadataListBootstrapActionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2168,11 +1996,7 @@ type ListClustersInput struct { // The pagination token that indicates the next set of results to retrieve. Marker *string `type:"string"` - metadataListClustersInput `json:"-" xml:"-"` -} - -type metadataListClustersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2194,11 +2018,7 @@ type ListClustersOutput struct { // The pagination token that indicates the next set of results to retrieve. Marker *string `type:"string"` - metadataListClustersOutput `json:"-" xml:"-"` -} - -type metadataListClustersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2219,11 +2039,7 @@ type ListInstanceGroupsInput struct { // The pagination token that indicates the next set of results to retrieve. Marker *string `type:"string"` - metadataListInstanceGroupsInput `json:"-" xml:"-"` -} - -type metadataListInstanceGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2244,11 +2060,7 @@ type ListInstanceGroupsOutput struct { // The pagination token that indicates the next set of results to retrieve. Marker *string `type:"string"` - metadataListInstanceGroupsOutput `json:"-" xml:"-"` -} - -type metadataListInstanceGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2275,11 +2087,7 @@ type ListInstancesInput struct { // The pagination token that indicates the next set of results to retrieve. Marker *string `type:"string"` - metadataListInstancesInput `json:"-" xml:"-"` -} - -type metadataListInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2300,11 +2108,7 @@ type ListInstancesOutput struct { // The pagination token that indicates the next set of results to retrieve. Marker *string `type:"string"` - metadataListInstancesOutput `json:"-" xml:"-"` -} - -type metadataListInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2331,11 +2135,7 @@ type ListStepsInput struct { // The filter to limit the step list based on certain states. StepStates []*string `type:"list"` - metadataListStepsInput `json:"-" xml:"-"` -} - -type metadataListStepsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2356,11 +2156,7 @@ type ListStepsOutput struct { // The filtered list of steps for the cluster. Steps []*StepSummary `type:"list"` - metadataListStepsOutput `json:"-" xml:"-"` -} - -type metadataListStepsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2378,11 +2174,7 @@ type ModifyInstanceGroupsInput struct { // Instance groups to change. InstanceGroups []*InstanceGroupModifyConfig `type:"list"` - metadataModifyInstanceGroupsInput `json:"-" xml:"-"` -} - -type metadataModifyInstanceGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2396,11 +2188,7 @@ func (s ModifyInstanceGroupsInput) GoString() string { } type ModifyInstanceGroupsOutput struct { - metadataModifyInstanceGroupsOutput `json:"-" xml:"-"` -} - -type metadataModifyInstanceGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2418,11 +2206,7 @@ type PlacementType struct { // The Amazon EC2 Availability Zone for the job flow. AvailabilityZone *string `type:"string" required:"true"` - metadataPlacementType `json:"-" xml:"-"` -} - -type metadataPlacementType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2444,11 +2228,7 @@ type RemoveTagsInput struct { // A list of tag keys to remove from a resource. TagKeys []*string `type:"list" required:"true"` - metadataRemoveTagsInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2463,11 +2243,7 @@ func (s RemoveTagsInput) GoString() string { // This output indicates the result of removing tags from a resource. type RemoveTagsOutput struct { - metadataRemoveTagsOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2587,11 +2363,7 @@ type RunJobFlowInput struct { // flow can view and manage it. VisibleToAllUsers *bool `type:"boolean"` - metadataRunJobFlowInput `json:"-" xml:"-"` -} - -type metadataRunJobFlowInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2609,11 +2381,7 @@ type RunJobFlowOutput struct { // An unique identifier for the job flow. JobFlowId *string `type:"string"` - metadataRunJobFlowOutput `json:"-" xml:"-"` -} - -type metadataRunJobFlowOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2635,11 +2403,7 @@ type ScriptBootstrapActionConfig struct { // location in Amazon S3 or on a local file system. Path *string `type:"string" required:"true"` - metadataScriptBootstrapActionConfig `json:"-" xml:"-"` -} - -type metadataScriptBootstrapActionConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2664,11 +2428,7 @@ type SetTerminationProtectionInput struct { // user intervention, or job-flow error. TerminationProtected *bool `type:"boolean" required:"true"` - metadataSetTerminationProtectionInput `json:"-" xml:"-"` -} - -type metadataSetTerminationProtectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2682,11 +2442,7 @@ func (s SetTerminationProtectionInput) GoString() string { } type SetTerminationProtectionOutput struct { - metadataSetTerminationProtectionOutput `json:"-" xml:"-"` -} - -type metadataSetTerminationProtectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2711,11 +2467,7 @@ type SetVisibleToAllUsersInput struct { // created a job flow can view and manage it. VisibleToAllUsers *bool `type:"boolean" required:"true"` - metadataSetVisibleToAllUsersInput `json:"-" xml:"-"` -} - -type metadataSetVisibleToAllUsersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2729,11 +2481,7 @@ func (s SetVisibleToAllUsersInput) GoString() string { } type SetVisibleToAllUsersOutput struct { - metadataSetVisibleToAllUsersOutput `json:"-" xml:"-"` -} - -type metadataSetVisibleToAllUsersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2764,11 +2512,7 @@ type Step struct { // The current execution status details of the cluster step. Status *StepStatus `type:"structure"` - metadataStep `json:"-" xml:"-"` -} - -type metadataStep struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2792,11 +2536,7 @@ type StepConfig struct { // The name of the job flow step. Name *string `type:"string" required:"true"` - metadataStepConfig `json:"-" xml:"-"` -} - -type metadataStepConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2817,11 +2557,7 @@ type StepDetail struct { // The step configuration. StepConfig *StepConfig `type:"structure" required:"true"` - metadataStepDetail `json:"-" xml:"-"` -} - -type metadataStepDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2851,11 +2587,7 @@ type StepExecutionStatusDetail struct { // The state of the job flow step. State *string `type:"string" required:"true" enum:"StepExecutionState"` - metadataStepExecutionStatusDetail `json:"-" xml:"-"` -} - -type metadataStepExecutionStatusDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2877,11 +2609,7 @@ type StepStateChangeReason struct { // The descriptive message for the state change reason. Message *string `type:"string"` - metadataStepStateChangeReason `json:"-" xml:"-"` -} - -type metadataStepStateChangeReason struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2905,11 +2633,7 @@ type StepStatus struct { // The timeline of the cluster step status over time. Timeline *StepTimeline `type:"structure"` - metadataStepStatus `json:"-" xml:"-"` -} - -type metadataStepStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2940,11 +2664,7 @@ type StepSummary struct { // The current execution status details of the cluster step. Status *StepStatus `type:"structure"` - metadataStepSummary `json:"-" xml:"-"` -} - -type metadataStepSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2968,11 +2688,7 @@ type StepTimeline struct { // The date and time when the cluster step execution started. StartDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` - metadataStepTimeline `json:"-" xml:"-"` -} - -type metadataStepTimeline struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2995,11 +2711,7 @@ type SupportedProductConfig struct { // The name of the product configuration. Name *string `type:"string"` - metadataSupportedProductConfig `json:"-" xml:"-"` -} - -type metadataSupportedProductConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3026,11 +2738,7 @@ type Tag struct { // Tagging Amazon EMR Resources (http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html). Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3048,11 +2756,7 @@ type TerminateJobFlowsInput struct { // A list of job flows to be shutdown. JobFlowIds []*string `type:"list" required:"true"` - metadataTerminateJobFlowsInput `json:"-" xml:"-"` -} - -type metadataTerminateJobFlowsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3066,11 +2770,7 @@ func (s TerminateJobFlowsInput) GoString() string { } type TerminateJobFlowsOutput struct { - metadataTerminateJobFlowsOutput `json:"-" xml:"-"` -} - -type metadataTerminateJobFlowsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/firehose/api.go b/service/firehose/api.go index b124436a730..5ef9aaf7f0a 100644 --- a/service/firehose/api.go +++ b/service/firehose/api.go @@ -399,11 +399,7 @@ type BufferingHints struct { // if you typically ingest data at 1 MB/sec set SizeInMBs to be 10 MB or higher. SizeInMBs *int64 `min:"1" type:"integer"` - metadataBufferingHints `json:"-" xml:"-"` -} - -type metadataBufferingHints struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -446,11 +442,7 @@ type CopyCommand struct { // The name of the target table. The table must already exist in the database. DataTableName *string `min:"1" type:"string" required:"true"` - metadataCopyCommand `json:"-" xml:"-"` -} - -type metadataCopyCommand struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -476,11 +468,7 @@ type CreateDeliveryStreamInput struct { // is specified (see restrictions listed above). S3DestinationConfiguration *S3DestinationConfiguration `type:"structure"` - metadataCreateDeliveryStreamInput `json:"-" xml:"-"` -} - -type metadataCreateDeliveryStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -498,11 +486,7 @@ type CreateDeliveryStreamOutput struct { // The ARN of the delivery stream. DeliveryStreamARN *string `type:"string"` - metadataCreateDeliveryStreamOutput `json:"-" xml:"-"` -} - -type metadataCreateDeliveryStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -520,11 +504,7 @@ type DeleteDeliveryStreamInput struct { // The name of the delivery stream. DeliveryStreamName *string `min:"1" type:"string" required:"true"` - metadataDeleteDeliveryStreamInput `json:"-" xml:"-"` -} - -type metadataDeleteDeliveryStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -539,11 +519,7 @@ func (s DeleteDeliveryStreamInput) GoString() string { // Contains the output of DeleteDeliveryStream. type DeleteDeliveryStreamOutput struct { - metadataDeleteDeliveryStreamOutput `json:"-" xml:"-"` -} - -type metadataDeleteDeliveryStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -586,11 +562,7 @@ type DeliveryStreamDescription struct { // stream. VersionId *string `min:"1" type:"string" required:"true"` - metadataDeliveryStreamDescription `json:"-" xml:"-"` -} - -type metadataDeliveryStreamDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -616,11 +588,7 @@ type DescribeDeliveryStreamInput struct { // one destination per delivery stream. Limit *int64 `min:"1" type:"integer"` - metadataDescribeDeliveryStreamInput `json:"-" xml:"-"` -} - -type metadataDescribeDeliveryStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -638,11 +606,7 @@ type DescribeDeliveryStreamOutput struct { // Information about the delivery stream. DeliveryStreamDescription *DeliveryStreamDescription `type:"structure" required:"true"` - metadataDescribeDeliveryStreamOutput `json:"-" xml:"-"` -} - -type metadataDescribeDeliveryStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -666,11 +630,7 @@ type DestinationDescription struct { // The Amazon S3 destination. S3DestinationDescription *S3DestinationDescription `type:"structure"` - metadataDestinationDescription `json:"-" xml:"-"` -} - -type metadataDestinationDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -692,11 +652,7 @@ type EncryptionConfiguration struct { // is used. NoEncryptionConfig *string `type:"string" enum:"NoEncryptionConfig"` - metadataEncryptionConfiguration `json:"-" xml:"-"` -} - -type metadataEncryptionConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -715,11 +671,7 @@ type KMSEncryptionConfig struct { // Amazon S3 bucket. AWSKMSKeyARN *string `min:"1" type:"string" required:"true"` - metadataKMSEncryptionConfig `json:"-" xml:"-"` -} - -type metadataKMSEncryptionConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -740,11 +692,7 @@ type ListDeliveryStreamsInput struct { // The maximum number of delivery streams to list. Limit *int64 `min:"1" type:"integer"` - metadataListDeliveryStreamsInput `json:"-" xml:"-"` -} - -type metadataListDeliveryStreamsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -765,11 +713,7 @@ type ListDeliveryStreamsOutput struct { // Indicates whether there are more delivery streams available to list. HasMoreDeliveryStreams *bool `type:"boolean" required:"true"` - metadataListDeliveryStreamsOutput `json:"-" xml:"-"` -} - -type metadataListDeliveryStreamsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -790,11 +734,7 @@ type PutRecordBatchInput struct { // One or more records. Records []*Record `min:"1" type:"list" required:"true"` - metadataPutRecordBatchInput `json:"-" xml:"-"` -} - -type metadataPutRecordBatchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -816,11 +756,7 @@ type PutRecordBatchOutput struct { // the same index in which records were sent. RequestResponses []*PutRecordBatchResponseEntry `min:"1" type:"list" required:"true"` - metadataPutRecordBatchOutput `json:"-" xml:"-"` -} - -type metadataPutRecordBatchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -847,11 +783,7 @@ type PutRecordBatchResponseEntry struct { // The ID of the record. RecordId *string `min:"1" type:"string"` - metadataPutRecordBatchResponseEntry `json:"-" xml:"-"` -} - -type metadataPutRecordBatchResponseEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -872,11 +804,7 @@ type PutRecordInput struct { // The record. Record *Record `type:"structure" required:"true"` - metadataPutRecordInput `json:"-" xml:"-"` -} - -type metadataPutRecordInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -894,11 +822,7 @@ type PutRecordOutput struct { // The ID of the record. RecordId *string `min:"1" type:"string" required:"true"` - metadataPutRecordOutput `json:"-" xml:"-"` -} - -type metadataPutRecordOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -917,11 +841,7 @@ type Record struct { // size of the data blob, before base64-encoding, is 1,000 KB. Data []byte `type:"blob" required:"true"` - metadataRecord `json:"-" xml:"-"` -} - -type metadataRecord struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -959,11 +879,7 @@ type RedshiftDestinationConfiguration struct { // The name of the user. Username *string `min:"1" type:"string" required:"true"` - metadataRedshiftDestinationConfiguration `json:"-" xml:"-"` -} - -type metadataRedshiftDestinationConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -993,11 +909,7 @@ type RedshiftDestinationDescription struct { // The name of the user. Username *string `min:"1" type:"string" required:"true"` - metadataRedshiftDestinationDescription `json:"-" xml:"-"` -} - -type metadataRedshiftDestinationDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1034,11 +946,7 @@ type RedshiftDestinationUpdate struct { // The name of the user. Username *string `min:"1" type:"string"` - metadataRedshiftDestinationUpdate `json:"-" xml:"-"` -} - -type metadataRedshiftDestinationUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1082,11 +990,7 @@ type S3DestinationConfiguration struct { // The ARN of the AWS credentials. RoleARN *string `min:"1" type:"string" required:"true"` - metadataS3DestinationConfiguration `json:"-" xml:"-"` -} - -type metadataS3DestinationConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1126,11 +1030,7 @@ type S3DestinationDescription struct { // The ARN of the AWS credentials. RoleARN *string `min:"1" type:"string" required:"true"` - metadataS3DestinationDescription `json:"-" xml:"-"` -} - -type metadataS3DestinationDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1174,11 +1074,7 @@ type S3DestinationUpdate struct { // The ARN of the AWS credentials. RoleARN *string `min:"1" type:"string"` - metadataS3DestinationUpdate `json:"-" xml:"-"` -} - -type metadataS3DestinationUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1213,11 +1109,7 @@ type UpdateDestinationInput struct { // Describes an update for a destination in Amazon S3. S3DestinationUpdate *S3DestinationUpdate `type:"structure"` - metadataUpdateDestinationInput `json:"-" xml:"-"` -} - -type metadataUpdateDestinationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1232,11 +1124,7 @@ func (s UpdateDestinationInput) GoString() string { // Contains the output of UpdateDestination. type UpdateDestinationOutput struct { - metadataUpdateDestinationOutput `json:"-" xml:"-"` -} - -type metadataUpdateDestinationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/glacier/api.go b/service/glacier/api.go index 394f66847a9..948133cccfa 100644 --- a/service/glacier/api.go +++ b/service/glacier/api.go @@ -1643,11 +1643,7 @@ type AbortMultipartUploadInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataAbortMultipartUploadInput `json:"-" xml:"-"` -} - -type metadataAbortMultipartUploadInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1661,11 +1657,7 @@ func (s AbortMultipartUploadInput) GoString() string { } type AbortMultipartUploadOutput struct { - metadataAbortMultipartUploadOutput `json:"-" xml:"-"` -} - -type metadataAbortMultipartUploadOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1691,11 +1683,7 @@ type AbortVaultLockInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataAbortVaultLockInput `json:"-" xml:"-"` -} - -type metadataAbortVaultLockInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1709,11 +1697,7 @@ func (s AbortVaultLockInput) GoString() string { } type AbortVaultLockOutput struct { - metadataAbortVaultLockOutput `json:"-" xml:"-"` -} - -type metadataAbortVaultLockOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1742,11 +1726,7 @@ type AddTagsToVaultInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataAddTagsToVaultInput `json:"-" xml:"-"` -} - -type metadataAddTagsToVaultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1760,11 +1740,7 @@ func (s AddTagsToVaultInput) GoString() string { } type AddTagsToVaultOutput struct { - metadataAddTagsToVaultOutput `json:"-" xml:"-"` -} - -type metadataAddTagsToVaultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1792,11 +1768,7 @@ type ArchiveCreationOutput struct { // The relative URI path of the newly added archive resource. Location *string `location:"header" locationName:"Location" type:"string"` - metadataArchiveCreationOutput `json:"-" xml:"-"` -} - -type metadataArchiveCreationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1838,11 +1810,7 @@ type CompleteMultipartUploadInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataCompleteMultipartUploadInput `json:"-" xml:"-"` -} - -type metadataCompleteMultipartUploadInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1871,11 +1839,7 @@ type CompleteVaultLockInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataCompleteVaultLockInput `json:"-" xml:"-"` -} - -type metadataCompleteVaultLockInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1889,11 +1853,7 @@ func (s CompleteVaultLockInput) GoString() string { } type CompleteVaultLockOutput struct { - metadataCompleteVaultLockOutput `json:"-" xml:"-"` -} - -type metadataCompleteVaultLockOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1919,11 +1879,7 @@ type CreateVaultInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataCreateVaultInput `json:"-" xml:"-"` -} - -type metadataCreateVaultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1941,11 +1897,7 @@ type CreateVaultOutput struct { // The URI of the vault that was created. Location *string `location:"header" locationName:"Location" type:"string"` - metadataCreateVaultOutput `json:"-" xml:"-"` -} - -type metadataCreateVaultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1964,11 +1916,7 @@ type DataRetrievalPolicy struct { // one rule, which contains a Strategy field and optionally a BytesPerHour field. Rules []*DataRetrievalRule `type:"list"` - metadataDataRetrievalPolicy `json:"-" xml:"-"` -} - -type metadataDataRetrievalPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1995,11 +1943,7 @@ type DataRetrievalRule struct { // Valid values: BytesPerHour|FreeTier|None Strategy *string `type:"string"` - metadataDataRetrievalRule `json:"-" xml:"-"` -} - -type metadataDataRetrievalRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2027,11 +1971,7 @@ type DeleteArchiveInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataDeleteArchiveInput `json:"-" xml:"-"` -} - -type metadataDeleteArchiveInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2045,11 +1985,7 @@ func (s DeleteArchiveInput) GoString() string { } type DeleteArchiveOutput struct { - metadataDeleteArchiveOutput `json:"-" xml:"-"` -} - -type metadataDeleteArchiveOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2074,11 +2010,7 @@ type DeleteVaultAccessPolicyInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataDeleteVaultAccessPolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteVaultAccessPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2092,11 +2024,7 @@ func (s DeleteVaultAccessPolicyInput) GoString() string { } type DeleteVaultAccessPolicyOutput struct { - metadataDeleteVaultAccessPolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteVaultAccessPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2121,11 +2049,7 @@ type DeleteVaultInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataDeleteVaultInput `json:"-" xml:"-"` -} - -type metadataDeleteVaultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2151,11 +2075,7 @@ type DeleteVaultNotificationsInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataDeleteVaultNotificationsInput `json:"-" xml:"-"` -} - -type metadataDeleteVaultNotificationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2169,11 +2089,7 @@ func (s DeleteVaultNotificationsInput) GoString() string { } type DeleteVaultNotificationsOutput struct { - metadataDeleteVaultNotificationsOutput `json:"-" xml:"-"` -} - -type metadataDeleteVaultNotificationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2187,11 +2103,7 @@ func (s DeleteVaultNotificationsOutput) GoString() string { } type DeleteVaultOutput struct { - metadataDeleteVaultOutput `json:"-" xml:"-"` -} - -type metadataDeleteVaultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2219,11 +2131,7 @@ type DescribeJobInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataDescribeJobInput `json:"-" xml:"-"` -} - -type metadataDescribeJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2248,11 +2156,7 @@ type DescribeVaultInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataDescribeVaultInput `json:"-" xml:"-"` -} - -type metadataDescribeVaultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2291,11 +2195,7 @@ type DescribeVaultOutput struct { // The name of the vault. VaultName *string `type:"string"` - metadataDescribeVaultOutput `json:"-" xml:"-"` -} - -type metadataDescribeVaultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2318,11 +2218,7 @@ type GetDataRetrievalPolicyInput struct { // not include any hyphens (apos-apos) in the ID. AccountId *string `location:"uri" locationName:"accountId" type:"string" required:"true"` - metadataGetDataRetrievalPolicyInput `json:"-" xml:"-"` -} - -type metadataGetDataRetrievalPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2340,11 +2236,7 @@ type GetDataRetrievalPolicyOutput struct { // Contains the returned data retrieval policy in JSON format. Policy *DataRetrievalPolicy `type:"structure"` - metadataGetDataRetrievalPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetDataRetrievalPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2377,11 +2269,7 @@ type GetJobOutputInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataGetJobOutputInput `json:"-" xml:"-"` -} - -type metadataGetJobOutputInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2434,11 +2322,7 @@ type GetJobOutputOutput struct { // a range was specified in the request. Status *int64 `location:"statusCode" locationName:"status" type:"integer"` - metadataGetJobOutputOutput `json:"-" xml:"-"` -} - -type metadataGetJobOutputOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } // String returns the string representation @@ -2463,11 +2347,7 @@ type GetVaultAccessPolicyInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataGetVaultAccessPolicyInput `json:"-" xml:"-"` -} - -type metadataGetVaultAccessPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2485,11 +2365,7 @@ type GetVaultAccessPolicyOutput struct { // Contains the returned vault access policy as a JSON string. Policy *VaultAccessPolicy `locationName:"policy" type:"structure"` - metadataGetVaultAccessPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetVaultAccessPolicyOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Policy"` + _ struct{} `type:"structure" payload:"Policy"` } // String returns the string representation @@ -2514,11 +2390,7 @@ type GetVaultLockInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataGetVaultLockInput `json:"-" xml:"-"` -} - -type metadataGetVaultLockInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2547,11 +2419,7 @@ type GetVaultLockOutput struct { // The state of the vault lock. InProgress or Locked. State *string `type:"string"` - metadataGetVaultLockOutput `json:"-" xml:"-"` -} - -type metadataGetVaultLockOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2577,11 +2445,7 @@ type GetVaultNotificationsInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataGetVaultNotificationsInput `json:"-" xml:"-"` -} - -type metadataGetVaultNotificationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2599,11 +2463,7 @@ type GetVaultNotificationsOutput struct { // Returns the notification configuration set on the vault. VaultNotificationConfig *VaultNotificationConfig `locationName:"vaultNotificationConfig" type:"structure"` - metadataGetVaultNotificationsOutput `json:"-" xml:"-"` -} - -type metadataGetVaultNotificationsOutput struct { - SDKShapeTraits bool `type:"structure" payload:"VaultNotificationConfig"` + _ struct{} `type:"structure" payload:"VaultNotificationConfig"` } // String returns the string representation @@ -2631,11 +2491,7 @@ type InitiateJobInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataInitiateJobInput `json:"-" xml:"-"` -} - -type metadataInitiateJobInput struct { - SDKShapeTraits bool `type:"structure" payload:"JobParameters"` + _ struct{} `type:"structure" payload:"JobParameters"` } // String returns the string representation @@ -2656,11 +2512,7 @@ type InitiateJobOutput struct { // The relative URI path of the job. Location *string `location:"header" locationName:"Location" type:"string"` - metadataInitiateJobOutput `json:"-" xml:"-"` -} - -type metadataInitiateJobOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2697,11 +2549,7 @@ type InitiateMultipartUploadInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataInitiateMultipartUploadInput `json:"-" xml:"-"` -} - -type metadataInitiateMultipartUploadInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2723,11 +2571,7 @@ type InitiateMultipartUploadOutput struct { // location. UploadId *string `location:"header" locationName:"x-amz-multipart-upload-id" type:"string"` - metadataInitiateMultipartUploadOutput `json:"-" xml:"-"` -} - -type metadataInitiateMultipartUploadOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2756,11 +2600,7 @@ type InitiateVaultLockInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataInitiateVaultLockInput `json:"-" xml:"-"` -} - -type metadataInitiateVaultLockInput struct { - SDKShapeTraits bool `type:"structure" payload:"Policy"` + _ struct{} `type:"structure" payload:"Policy"` } // String returns the string representation @@ -2778,11 +2618,7 @@ type InitiateVaultLockOutput struct { // The lock ID, which is used to complete the vault locking process. LockId *string `location:"header" locationName:"x-amz-lock-id" type:"string"` - metadataInitiateVaultLockOutput `json:"-" xml:"-"` -} - -type metadataInitiateVaultLockOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2824,11 +2660,7 @@ type InventoryRetrievalJobDescription struct { // date format, for example, 2013-03-20T17:03:43Z. StartDate *string `type:"string"` - metadataInventoryRetrievalJobDescription `json:"-" xml:"-"` -} - -type metadataInventoryRetrievalJobDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2863,11 +2695,7 @@ type InventoryRetrievalJobInput struct { // date format, for example, 2013-03-20T17:03:43Z. StartDate *string `type:"string"` - metadataInventoryRetrievalJobInput `json:"-" xml:"-"` -} - -type metadataInventoryRetrievalJobInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2960,11 +2788,7 @@ type JobDescription struct { // was requested. VaultARN *string `type:"string"` - metadataJobDescription `json:"-" xml:"-"` -} - -type metadataJobDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3019,11 +2843,7 @@ type JobParameters struct { // of a vault. Valid values are "archive-retrieval" and "inventory-retrieval". Type *string `type:"string"` - metadataJobParameters `json:"-" xml:"-"` -} - -type metadataJobParameters struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3065,11 +2885,7 @@ type ListJobsInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataListJobsInput `json:"-" xml:"-"` -} - -type metadataListJobsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3092,11 +2908,7 @@ type ListJobsOutput struct { // list. If there are no more jobs, this value is null. Marker *string `type:"string"` - metadataListJobsOutput `json:"-" xml:"-"` -} - -type metadataListJobsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3133,11 +2945,7 @@ type ListMultipartUploadsInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataListMultipartUploadsInput `json:"-" xml:"-"` -} - -type metadataListMultipartUploadsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3160,11 +2968,7 @@ type ListMultipartUploadsOutput struct { // A list of in-progress multipart uploads. UploadsList []*UploadListElement `type:"list"` - metadataListMultipartUploadsOutput `json:"-" xml:"-"` -} - -type metadataListMultipartUploadsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3204,11 +3008,7 @@ type ListPartsInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataListPartsInput `json:"-" xml:"-"` -} - -type metadataListPartsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3248,11 +3048,7 @@ type ListPartsOutput struct { // was initiated. VaultARN *string `type:"string"` - metadataListPartsOutput `json:"-" xml:"-"` -} - -type metadataListPartsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3277,11 +3073,7 @@ type ListTagsForVaultInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataListTagsForVaultInput `json:"-" xml:"-"` -} - -type metadataListTagsForVaultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3299,11 +3091,7 @@ type ListTagsForVaultOutput struct { // The tags attached to the vault. Each tag is composed of a key and a value. Tags map[string]*string `type:"map"` - metadataListTagsForVaultOutput `json:"-" xml:"-"` -} - -type metadataListTagsForVaultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3335,11 +3123,7 @@ type ListVaultsInput struct { // the listing of vaults should begin. Marker *string `location:"querystring" locationName:"marker" type:"string"` - metadataListVaultsInput `json:"-" xml:"-"` -} - -type metadataListVaultsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3361,11 +3145,7 @@ type ListVaultsOutput struct { // List of vaults. VaultList []*DescribeVaultOutput `type:"list"` - metadataListVaultsOutput `json:"-" xml:"-"` -} - -type metadataListVaultsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3387,11 +3167,7 @@ type PartListElement struct { // field is never null. SHA256TreeHash *string `type:"string"` - metadataPartListElement `json:"-" xml:"-"` -} - -type metadataPartListElement struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3419,11 +3195,7 @@ type RemoveTagsFromVaultInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataRemoveTagsFromVaultInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromVaultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3437,11 +3209,7 @@ func (s RemoveTagsFromVaultInput) GoString() string { } type RemoveTagsFromVaultOutput struct { - metadataRemoveTagsFromVaultOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromVaultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3467,11 +3235,7 @@ type SetDataRetrievalPolicyInput struct { // The data retrieval policy in JSON format. Policy *DataRetrievalPolicy `type:"structure"` - metadataSetDataRetrievalPolicyInput `json:"-" xml:"-"` -} - -type metadataSetDataRetrievalPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3485,11 +3249,7 @@ func (s SetDataRetrievalPolicyInput) GoString() string { } type SetDataRetrievalPolicyOutput struct { - metadataSetDataRetrievalPolicyOutput `json:"-" xml:"-"` -} - -type metadataSetDataRetrievalPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3517,11 +3277,7 @@ type SetVaultAccessPolicyInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataSetVaultAccessPolicyInput `json:"-" xml:"-"` -} - -type metadataSetVaultAccessPolicyInput struct { - SDKShapeTraits bool `type:"structure" payload:"Policy"` + _ struct{} `type:"structure" payload:"Policy"` } // String returns the string representation @@ -3535,11 +3291,7 @@ func (s SetVaultAccessPolicyInput) GoString() string { } type SetVaultAccessPolicyOutput struct { - metadataSetVaultAccessPolicyOutput `json:"-" xml:"-"` -} - -type metadataSetVaultAccessPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3568,11 +3320,7 @@ type SetVaultNotificationsInput struct { // Provides options for specifying notification configuration. VaultNotificationConfig *VaultNotificationConfig `locationName:"vaultNotificationConfig" type:"structure"` - metadataSetVaultNotificationsInput `json:"-" xml:"-"` -} - -type metadataSetVaultNotificationsInput struct { - SDKShapeTraits bool `type:"structure" payload:"VaultNotificationConfig"` + _ struct{} `type:"structure" payload:"VaultNotificationConfig"` } // String returns the string representation @@ -3586,11 +3334,7 @@ func (s SetVaultNotificationsInput) GoString() string { } type SetVaultNotificationsOutput struct { - metadataSetVaultNotificationsOutput `json:"-" xml:"-"` -} - -type metadataSetVaultNotificationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3624,11 +3368,7 @@ type UploadArchiveInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataUploadArchiveInput `json:"-" xml:"-"` -} - -type metadataUploadArchiveInput struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } // String returns the string representation @@ -3661,11 +3401,7 @@ type UploadListElement struct { // The Amazon Resource Name (ARN) of the vault that contains the archive. VaultARN *string `type:"string"` - metadataUploadListElement `json:"-" xml:"-"` -} - -type metadataUploadListElement struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3705,11 +3441,7 @@ type UploadMultipartPartInput struct { // The name of the vault. VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` - metadataUploadMultipartPartInput `json:"-" xml:"-"` -} - -type metadataUploadMultipartPartInput struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } // String returns the string representation @@ -3727,11 +3459,7 @@ type UploadMultipartPartOutput struct { // The SHA256 tree hash that Amazon Glacier computed for the uploaded part. Checksum *string `location:"header" locationName:"x-amz-sha256-tree-hash" type:"string"` - metadataUploadMultipartPartOutput `json:"-" xml:"-"` -} - -type metadataUploadMultipartPartOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3749,11 +3477,7 @@ type VaultAccessPolicy struct { // The vault access policy. Policy *string `type:"string"` - metadataVaultAccessPolicy `json:"-" xml:"-"` -} - -type metadataVaultAccessPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3771,11 +3495,7 @@ type VaultLockPolicy struct { // The vault lock policy. Policy *string `type:"string"` - metadataVaultLockPolicy `json:"-" xml:"-"` -} - -type metadataVaultLockPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3798,11 +3518,7 @@ type VaultNotificationConfig struct { // Name (ARN). SNSTopic *string `type:"string"` - metadataVaultNotificationConfig `json:"-" xml:"-"` -} - -type metadataVaultNotificationConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/iam/api.go b/service/iam/api.go index 118022be5bb..f48bbdfc8e5 100644 --- a/service/iam/api.go +++ b/service/iam/api.go @@ -4194,11 +4194,7 @@ type AccessKey struct { // The name of the IAM user that the access key is associated with. UserName *string `min:"1" type:"string" required:"true"` - metadataAccessKey `json:"-" xml:"-"` -} - -type metadataAccessKey struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4252,11 +4248,7 @@ type AccessKeyLastUsed struct { // There is no sign-in data associated with the user ServiceName *string `type:"string" required:"true"` - metadataAccessKeyLastUsed `json:"-" xml:"-"` -} - -type metadataAccessKeyLastUsed struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4286,11 +4278,7 @@ type AccessKeyMetadata struct { // The name of the IAM user that the key is associated with. UserName *string `min:"1" type:"string"` - metadataAccessKeyMetadata `json:"-" xml:"-"` -} - -type metadataAccessKeyMetadata struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4312,11 +4300,7 @@ type AddClientIDToOpenIDConnectProviderInput struct { // the ListOpenIDConnectProviders action. OpenIDConnectProviderArn *string `min:"20" type:"string" required:"true"` - metadataAddClientIDToOpenIDConnectProviderInput `json:"-" xml:"-"` -} - -type metadataAddClientIDToOpenIDConnectProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4330,11 +4314,7 @@ func (s AddClientIDToOpenIDConnectProviderInput) GoString() string { } type AddClientIDToOpenIDConnectProviderOutput struct { - metadataAddClientIDToOpenIDConnectProviderOutput `json:"-" xml:"-"` -} - -type metadataAddClientIDToOpenIDConnectProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4354,11 +4334,7 @@ type AddRoleToInstanceProfileInput struct { // The name of the role to add. RoleName *string `min:"1" type:"string" required:"true"` - metadataAddRoleToInstanceProfileInput `json:"-" xml:"-"` -} - -type metadataAddRoleToInstanceProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4372,11 +4348,7 @@ func (s AddRoleToInstanceProfileInput) GoString() string { } type AddRoleToInstanceProfileOutput struct { - metadataAddRoleToInstanceProfileOutput `json:"-" xml:"-"` -} - -type metadataAddRoleToInstanceProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4396,11 +4368,7 @@ type AddUserToGroupInput struct { // The name of the user to add. UserName *string `min:"1" type:"string" required:"true"` - metadataAddUserToGroupInput `json:"-" xml:"-"` -} - -type metadataAddUserToGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4414,11 +4382,7 @@ func (s AddUserToGroupInput) GoString() string { } type AddUserToGroupOutput struct { - metadataAddUserToGroupOutput `json:"-" xml:"-"` -} - -type metadataAddUserToGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4442,11 +4406,7 @@ type AttachGroupPolicyInput struct { // in the AWS General Reference. PolicyArn *string `min:"20" type:"string" required:"true"` - metadataAttachGroupPolicyInput `json:"-" xml:"-"` -} - -type metadataAttachGroupPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4460,11 +4420,7 @@ func (s AttachGroupPolicyInput) GoString() string { } type AttachGroupPolicyOutput struct { - metadataAttachGroupPolicyOutput `json:"-" xml:"-"` -} - -type metadataAttachGroupPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4488,11 +4444,7 @@ type AttachRolePolicyInput struct { // The name (friendly name, not ARN) of the role to attach the policy to. RoleName *string `min:"1" type:"string" required:"true"` - metadataAttachRolePolicyInput `json:"-" xml:"-"` -} - -type metadataAttachRolePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4506,11 +4458,7 @@ func (s AttachRolePolicyInput) GoString() string { } type AttachRolePolicyOutput struct { - metadataAttachRolePolicyOutput `json:"-" xml:"-"` -} - -type metadataAttachRolePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4534,11 +4482,7 @@ type AttachUserPolicyInput struct { // The name (friendly name, not ARN) of the user to attach the policy to. UserName *string `min:"1" type:"string" required:"true"` - metadataAttachUserPolicyInput `json:"-" xml:"-"` -} - -type metadataAttachUserPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4552,11 +4496,7 @@ func (s AttachUserPolicyInput) GoString() string { } type AttachUserPolicyOutput struct { - metadataAttachUserPolicyOutput `json:"-" xml:"-"` -} - -type metadataAttachUserPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4590,11 +4530,7 @@ type AttachedPolicy struct { // The friendly name of the attached policy. PolicyName *string `min:"1" type:"string"` - metadataAttachedPolicy `json:"-" xml:"-"` -} - -type metadataAttachedPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4615,11 +4551,7 @@ type ChangePasswordInput struct { // The IAM user's current password. OldPassword *string `min:"1" type:"string" required:"true"` - metadataChangePasswordInput `json:"-" xml:"-"` -} - -type metadataChangePasswordInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4633,11 +4565,7 @@ func (s ChangePasswordInput) GoString() string { } type ChangePasswordOutput struct { - metadataChangePasswordOutput `json:"-" xml:"-"` -} - -type metadataChangePasswordOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4670,11 +4598,7 @@ type ContextEntry struct { // element in an input policy. ContextKeyValues []*string `type:"list"` - metadataContextEntry `json:"-" xml:"-"` -} - -type metadataContextEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4691,11 +4615,7 @@ type CreateAccessKeyInput struct { // The user name that the new key will belong to. UserName *string `min:"1" type:"string"` - metadataCreateAccessKeyInput `json:"-" xml:"-"` -} - -type metadataCreateAccessKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4713,11 +4633,7 @@ type CreateAccessKeyOutput struct { // Information about the access key. AccessKey *AccessKey `type:"structure" required:"true"` - metadataCreateAccessKeyOutput `json:"-" xml:"-"` -} - -type metadataCreateAccessKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4734,11 +4650,7 @@ type CreateAccountAliasInput struct { // The account alias to create. AccountAlias *string `min:"3" type:"string" required:"true"` - metadataCreateAccountAliasInput `json:"-" xml:"-"` -} - -type metadataCreateAccountAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4752,11 +4664,7 @@ func (s CreateAccountAliasInput) GoString() string { } type CreateAccountAliasOutput struct { - metadataCreateAccountAliasOutput `json:"-" xml:"-"` -} - -type metadataCreateAccountAliasOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4781,11 +4689,7 @@ type CreateGroupInput struct { // (/). Path *string `min:"1" type:"string"` - metadataCreateGroupInput `json:"-" xml:"-"` -} - -type metadataCreateGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4803,11 +4707,7 @@ type CreateGroupOutput struct { // Information about the group. Group *Group `type:"structure" required:"true"` - metadataCreateGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4832,11 +4732,7 @@ type CreateInstanceProfileInput struct { // (/). Path *string `min:"1" type:"string"` - metadataCreateInstanceProfileInput `json:"-" xml:"-"` -} - -type metadataCreateInstanceProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4854,11 +4750,7 @@ type CreateInstanceProfileOutput struct { // Information about the instance profile. InstanceProfile *InstanceProfile `type:"structure" required:"true"` - metadataCreateInstanceProfileOutput `json:"-" xml:"-"` -} - -type metadataCreateInstanceProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4881,11 +4773,7 @@ type CreateLoginProfileInput struct { // The name of the user to create a password for. UserName *string `min:"1" type:"string" required:"true"` - metadataCreateLoginProfileInput `json:"-" xml:"-"` -} - -type metadataCreateLoginProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4903,11 +4791,7 @@ type CreateLoginProfileOutput struct { // The user name and password create date. LoginProfile *LoginProfile `type:"structure" required:"true"` - metadataCreateLoginProfileOutput `json:"-" xml:"-"` -} - -type metadataCreateLoginProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4966,11 +4850,7 @@ type CreateOpenIDConnectProviderInput struct { // provider in the AWS account, you will get an error. Url *string `min:"1" type:"string" required:"true"` - metadataCreateOpenIDConnectProviderInput `json:"-" xml:"-"` -} - -type metadataCreateOpenIDConnectProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4989,11 +4869,7 @@ type CreateOpenIDConnectProviderOutput struct { // created. For more information, see OpenIDConnectProviderListEntry. OpenIDConnectProviderArn *string `min:"20" type:"string"` - metadataCreateOpenIDConnectProviderOutput `json:"-" xml:"-"` -} - -type metadataCreateOpenIDConnectProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5031,11 +4907,7 @@ type CreatePolicyInput struct { // The name of the policy document. PolicyName *string `min:"1" type:"string" required:"true"` - metadataCreatePolicyInput `json:"-" xml:"-"` -} - -type metadataCreatePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5053,11 +4925,7 @@ type CreatePolicyOutput struct { // Information about the policy. Policy *Policy `type:"structure"` - metadataCreatePolicyOutput `json:"-" xml:"-"` -} - -type metadataCreatePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5092,11 +4960,7 @@ type CreatePolicyVersionInput struct { // in the IAM User Guide. SetAsDefault *bool `type:"boolean"` - metadataCreatePolicyVersionInput `json:"-" xml:"-"` -} - -type metadataCreatePolicyVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5114,11 +4978,7 @@ type CreatePolicyVersionOutput struct { // Information about the policy version. PolicyVersion *PolicyVersion `type:"structure"` - metadataCreatePolicyVersionOutput `json:"-" xml:"-"` -} - -type metadataCreatePolicyVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5146,11 +5006,7 @@ type CreateRoleInput struct { // The name of the role to create. RoleName *string `min:"1" type:"string" required:"true"` - metadataCreateRoleInput `json:"-" xml:"-"` -} - -type metadataCreateRoleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5168,11 +5024,7 @@ type CreateRoleOutput struct { // Information about the role. Role *Role `type:"structure" required:"true"` - metadataCreateRoleOutput `json:"-" xml:"-"` -} - -type metadataCreateRoleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5199,11 +5051,7 @@ type CreateSAMLProviderInput struct { // in the IAM User Guide SAMLMetadataDocument *string `min:"1000" type:"string" required:"true"` - metadataCreateSAMLProviderInput `json:"-" xml:"-"` -} - -type metadataCreateSAMLProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5221,11 +5069,7 @@ type CreateSAMLProviderOutput struct { // The Amazon Resource Name (ARN) of the SAML provider. SAMLProviderArn *string `min:"20" type:"string"` - metadataCreateSAMLProviderOutput `json:"-" xml:"-"` -} - -type metadataCreateSAMLProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5250,11 +5094,7 @@ type CreateUserInput struct { // The name of the user to create. UserName *string `min:"1" type:"string" required:"true"` - metadataCreateUserInput `json:"-" xml:"-"` -} - -type metadataCreateUserInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5272,11 +5112,7 @@ type CreateUserOutput struct { // Information about the user. User *User `type:"structure"` - metadataCreateUserOutput `json:"-" xml:"-"` -} - -type metadataCreateUserOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5302,11 +5138,7 @@ type CreateVirtualMFADeviceInput struct { // virtual MFA device. VirtualMFADeviceName *string `min:"1" type:"string" required:"true"` - metadataCreateVirtualMFADeviceInput `json:"-" xml:"-"` -} - -type metadataCreateVirtualMFADeviceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5324,11 +5156,7 @@ type CreateVirtualMFADeviceOutput struct { // A newly created virtual MFA device. VirtualMFADevice *VirtualMFADevice `type:"structure" required:"true"` - metadataCreateVirtualMFADeviceOutput `json:"-" xml:"-"` -} - -type metadataCreateVirtualMFADeviceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5349,11 +5177,7 @@ type DeactivateMFADeviceInput struct { // The name of the user whose MFA device you want to deactivate. UserName *string `min:"1" type:"string" required:"true"` - metadataDeactivateMFADeviceInput `json:"-" xml:"-"` -} - -type metadataDeactivateMFADeviceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5367,11 +5191,7 @@ func (s DeactivateMFADeviceInput) GoString() string { } type DeactivateMFADeviceOutput struct { - metadataDeactivateMFADeviceOutput `json:"-" xml:"-"` -} - -type metadataDeactivateMFADeviceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5392,11 +5212,7 @@ type DeleteAccessKeyInput struct { // The name of the user whose key you want to delete. UserName *string `min:"1" type:"string"` - metadataDeleteAccessKeyInput `json:"-" xml:"-"` -} - -type metadataDeleteAccessKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5410,11 +5226,7 @@ func (s DeleteAccessKeyInput) GoString() string { } type DeleteAccessKeyOutput struct { - metadataDeleteAccessKeyOutput `json:"-" xml:"-"` -} - -type metadataDeleteAccessKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5431,11 +5243,7 @@ type DeleteAccountAliasInput struct { // The name of the account alias to delete. AccountAlias *string `min:"3" type:"string" required:"true"` - metadataDeleteAccountAliasInput `json:"-" xml:"-"` -} - -type metadataDeleteAccountAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5449,11 +5257,7 @@ func (s DeleteAccountAliasInput) GoString() string { } type DeleteAccountAliasOutput struct { - metadataDeleteAccountAliasOutput `json:"-" xml:"-"` -} - -type metadataDeleteAccountAliasOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5467,11 +5271,7 @@ func (s DeleteAccountAliasOutput) GoString() string { } type DeleteAccountPasswordPolicyInput struct { - metadataDeleteAccountPasswordPolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteAccountPasswordPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5485,11 +5285,7 @@ func (s DeleteAccountPasswordPolicyInput) GoString() string { } type DeleteAccountPasswordPolicyOutput struct { - metadataDeleteAccountPasswordPolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteAccountPasswordPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5506,11 +5302,7 @@ type DeleteGroupInput struct { // The name of the group to delete. GroupName *string `min:"1" type:"string" required:"true"` - metadataDeleteGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5524,11 +5316,7 @@ func (s DeleteGroupInput) GoString() string { } type DeleteGroupOutput struct { - metadataDeleteGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5549,11 +5337,7 @@ type DeleteGroupPolicyInput struct { // The name identifying the policy document to delete. PolicyName *string `min:"1" type:"string" required:"true"` - metadataDeleteGroupPolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteGroupPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5567,11 +5351,7 @@ func (s DeleteGroupPolicyInput) GoString() string { } type DeleteGroupPolicyOutput struct { - metadataDeleteGroupPolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteGroupPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5588,11 +5368,7 @@ type DeleteInstanceProfileInput struct { // The name of the instance profile to delete. InstanceProfileName *string `min:"1" type:"string" required:"true"` - metadataDeleteInstanceProfileInput `json:"-" xml:"-"` -} - -type metadataDeleteInstanceProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5606,11 +5382,7 @@ func (s DeleteInstanceProfileInput) GoString() string { } type DeleteInstanceProfileOutput struct { - metadataDeleteInstanceProfileOutput `json:"-" xml:"-"` -} - -type metadataDeleteInstanceProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5627,11 +5399,7 @@ type DeleteLoginProfileInput struct { // The name of the user whose password you want to delete. UserName *string `min:"1" type:"string" required:"true"` - metadataDeleteLoginProfileInput `json:"-" xml:"-"` -} - -type metadataDeleteLoginProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5645,11 +5413,7 @@ func (s DeleteLoginProfileInput) GoString() string { } type DeleteLoginProfileOutput struct { - metadataDeleteLoginProfileOutput `json:"-" xml:"-"` -} - -type metadataDeleteLoginProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5668,11 +5432,7 @@ type DeleteOpenIDConnectProviderInput struct { // action. OpenIDConnectProviderArn *string `min:"20" type:"string" required:"true"` - metadataDeleteOpenIDConnectProviderInput `json:"-" xml:"-"` -} - -type metadataDeleteOpenIDConnectProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5686,11 +5446,7 @@ func (s DeleteOpenIDConnectProviderInput) GoString() string { } type DeleteOpenIDConnectProviderOutput struct { - metadataDeleteOpenIDConnectProviderOutput `json:"-" xml:"-"` -} - -type metadataDeleteOpenIDConnectProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5711,11 +5467,7 @@ type DeletePolicyInput struct { // in the AWS General Reference. PolicyArn *string `min:"20" type:"string" required:"true"` - metadataDeletePolicyInput `json:"-" xml:"-"` -} - -type metadataDeletePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5729,11 +5481,7 @@ func (s DeletePolicyInput) GoString() string { } type DeletePolicyOutput struct { - metadataDeletePolicyOutput `json:"-" xml:"-"` -} - -type metadataDeletePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5761,11 +5509,7 @@ type DeletePolicyVersionInput struct { // in the IAM User Guide. VersionId *string `type:"string" required:"true"` - metadataDeletePolicyVersionInput `json:"-" xml:"-"` -} - -type metadataDeletePolicyVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5779,11 +5523,7 @@ func (s DeletePolicyVersionInput) GoString() string { } type DeletePolicyVersionOutput struct { - metadataDeletePolicyVersionOutput `json:"-" xml:"-"` -} - -type metadataDeletePolicyVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5800,11 +5540,7 @@ type DeleteRoleInput struct { // The name of the role to delete. RoleName *string `min:"1" type:"string" required:"true"` - metadataDeleteRoleInput `json:"-" xml:"-"` -} - -type metadataDeleteRoleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5818,11 +5554,7 @@ func (s DeleteRoleInput) GoString() string { } type DeleteRoleOutput struct { - metadataDeleteRoleOutput `json:"-" xml:"-"` -} - -type metadataDeleteRoleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5843,11 +5575,7 @@ type DeleteRolePolicyInput struct { // embedded in. RoleName *string `min:"1" type:"string" required:"true"` - metadataDeleteRolePolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteRolePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5861,11 +5589,7 @@ func (s DeleteRolePolicyInput) GoString() string { } type DeleteRolePolicyOutput struct { - metadataDeleteRolePolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteRolePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5882,11 +5606,7 @@ type DeleteSAMLProviderInput struct { // The Amazon Resource Name (ARN) of the SAML provider to delete. SAMLProviderArn *string `min:"20" type:"string" required:"true"` - metadataDeleteSAMLProviderInput `json:"-" xml:"-"` -} - -type metadataDeleteSAMLProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5900,11 +5620,7 @@ func (s DeleteSAMLProviderInput) GoString() string { } type DeleteSAMLProviderOutput struct { - metadataDeleteSAMLProviderOutput `json:"-" xml:"-"` -} - -type metadataDeleteSAMLProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5924,11 +5640,7 @@ type DeleteSSHPublicKeyInput struct { // The name of the IAM user associated with the SSH public key. UserName *string `min:"1" type:"string" required:"true"` - metadataDeleteSSHPublicKeyInput `json:"-" xml:"-"` -} - -type metadataDeleteSSHPublicKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5942,11 +5654,7 @@ func (s DeleteSSHPublicKeyInput) GoString() string { } type DeleteSSHPublicKeyOutput struct { - metadataDeleteSSHPublicKeyOutput `json:"-" xml:"-"` -} - -type metadataDeleteSSHPublicKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5963,11 +5671,7 @@ type DeleteServerCertificateInput struct { // The name of the server certificate you want to delete. ServerCertificateName *string `min:"1" type:"string" required:"true"` - metadataDeleteServerCertificateInput `json:"-" xml:"-"` -} - -type metadataDeleteServerCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5981,11 +5685,7 @@ func (s DeleteServerCertificateInput) GoString() string { } type DeleteServerCertificateOutput struct { - metadataDeleteServerCertificateOutput `json:"-" xml:"-"` -} - -type metadataDeleteServerCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6005,11 +5705,7 @@ type DeleteSigningCertificateInput struct { // The name of the user the signing certificate belongs to. UserName *string `min:"1" type:"string"` - metadataDeleteSigningCertificateInput `json:"-" xml:"-"` -} - -type metadataDeleteSigningCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6023,11 +5719,7 @@ func (s DeleteSigningCertificateInput) GoString() string { } type DeleteSigningCertificateOutput struct { - metadataDeleteSigningCertificateOutput `json:"-" xml:"-"` -} - -type metadataDeleteSigningCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6044,11 +5736,7 @@ type DeleteUserInput struct { // The name of the user to delete. UserName *string `min:"1" type:"string" required:"true"` - metadataDeleteUserInput `json:"-" xml:"-"` -} - -type metadataDeleteUserInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6062,11 +5750,7 @@ func (s DeleteUserInput) GoString() string { } type DeleteUserOutput struct { - metadataDeleteUserOutput `json:"-" xml:"-"` -} - -type metadataDeleteUserOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6087,11 +5771,7 @@ type DeleteUserPolicyInput struct { // embedded in. UserName *string `min:"1" type:"string" required:"true"` - metadataDeleteUserPolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteUserPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6105,11 +5785,7 @@ func (s DeleteUserPolicyInput) GoString() string { } type DeleteUserPolicyOutput struct { - metadataDeleteUserPolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteUserPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6127,11 +5803,7 @@ type DeleteVirtualMFADeviceInput struct { // devices, the serial number is the same as the ARN. SerialNumber *string `min:"9" type:"string" required:"true"` - metadataDeleteVirtualMFADeviceInput `json:"-" xml:"-"` -} - -type metadataDeleteVirtualMFADeviceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6145,11 +5817,7 @@ func (s DeleteVirtualMFADeviceInput) GoString() string { } type DeleteVirtualMFADeviceOutput struct { - metadataDeleteVirtualMFADeviceOutput `json:"-" xml:"-"` -} - -type metadataDeleteVirtualMFADeviceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6173,11 +5841,7 @@ type DetachGroupPolicyInput struct { // in the AWS General Reference. PolicyArn *string `min:"20" type:"string" required:"true"` - metadataDetachGroupPolicyInput `json:"-" xml:"-"` -} - -type metadataDetachGroupPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6191,11 +5855,7 @@ func (s DetachGroupPolicyInput) GoString() string { } type DetachGroupPolicyOutput struct { - metadataDetachGroupPolicyOutput `json:"-" xml:"-"` -} - -type metadataDetachGroupPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6219,11 +5879,7 @@ type DetachRolePolicyInput struct { // The name (friendly name, not ARN) of the role to detach the policy from. RoleName *string `min:"1" type:"string" required:"true"` - metadataDetachRolePolicyInput `json:"-" xml:"-"` -} - -type metadataDetachRolePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6237,11 +5893,7 @@ func (s DetachRolePolicyInput) GoString() string { } type DetachRolePolicyOutput struct { - metadataDetachRolePolicyOutput `json:"-" xml:"-"` -} - -type metadataDetachRolePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6265,11 +5917,7 @@ type DetachUserPolicyInput struct { // The name (friendly name, not ARN) of the user to detach the policy from. UserName *string `min:"1" type:"string" required:"true"` - metadataDetachUserPolicyInput `json:"-" xml:"-"` -} - -type metadataDetachUserPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6283,11 +5931,7 @@ func (s DetachUserPolicyInput) GoString() string { } type DetachUserPolicyOutput struct { - metadataDetachUserPolicyOutput `json:"-" xml:"-"` -} - -type metadataDetachUserPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6314,11 +5958,7 @@ type EnableMFADeviceInput struct { // The name of the user for whom you want to enable the MFA device. UserName *string `min:"1" type:"string" required:"true"` - metadataEnableMFADeviceInput `json:"-" xml:"-"` -} - -type metadataEnableMFADeviceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6332,11 +5972,7 @@ func (s EnableMFADeviceInput) GoString() string { } type EnableMFADeviceOutput struct { - metadataEnableMFADeviceOutput `json:"-" xml:"-"` -} - -type metadataEnableMFADeviceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6392,11 +6028,7 @@ type EvaluationResult struct { // on each resource. ResourceSpecificResults []*ResourceSpecificResult `type:"list"` - metadataEvaluationResult `json:"-" xml:"-"` -} - -type metadataEvaluationResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6410,11 +6042,7 @@ func (s EvaluationResult) GoString() string { } type GenerateCredentialReportInput struct { - metadataGenerateCredentialReportInput `json:"-" xml:"-"` -} - -type metadataGenerateCredentialReportInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6435,11 +6063,7 @@ type GenerateCredentialReportOutput struct { // Information about the state of the credential report. State *string `type:"string" enum:"ReportStateType"` - metadataGenerateCredentialReportOutput `json:"-" xml:"-"` -} - -type metadataGenerateCredentialReportOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6456,11 +6080,7 @@ type GetAccessKeyLastUsedInput struct { // The identifier of an access key. AccessKeyId *string `min:"16" type:"string" required:"true"` - metadataGetAccessKeyLastUsedInput `json:"-" xml:"-"` -} - -type metadataGetAccessKeyLastUsedInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6483,11 +6103,7 @@ type GetAccessKeyLastUsedOutput struct { // The name of the AWS IAM user that owns this access key. UserName *string `min:"1" type:"string"` - metadataGetAccessKeyLastUsedOutput `json:"-" xml:"-"` -} - -type metadataGetAccessKeyLastUsedOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6522,11 +6138,7 @@ type GetAccountAuthorizationDetailsInput struct { // service where to continue from. MaxItems *int64 `min:"1" type:"integer"` - metadataGetAccountAuthorizationDetailsInput `json:"-" xml:"-"` -} - -type metadataGetAccountAuthorizationDetailsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6565,11 +6177,7 @@ type GetAccountAuthorizationDetailsOutput struct { // A list containing information about IAM users. UserDetailList []*UserDetail `type:"list"` - metadataGetAccountAuthorizationDetailsOutput `json:"-" xml:"-"` -} - -type metadataGetAccountAuthorizationDetailsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6583,11 +6191,7 @@ func (s GetAccountAuthorizationDetailsOutput) GoString() string { } type GetAccountPasswordPolicyInput struct { - metadataGetAccountPasswordPolicyInput `json:"-" xml:"-"` -} - -type metadataGetAccountPasswordPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6608,11 +6212,7 @@ type GetAccountPasswordPolicyOutput struct { // action. PasswordPolicy *PasswordPolicy `type:"structure" required:"true"` - metadataGetAccountPasswordPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetAccountPasswordPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6626,11 +6226,7 @@ func (s GetAccountPasswordPolicyOutput) GoString() string { } type GetAccountSummaryInput struct { - metadataGetAccountSummaryInput `json:"-" xml:"-"` -} - -type metadataGetAccountSummaryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6790,11 +6386,7 @@ type GetAccountSummaryOutput struct { // The maximum number of policy versions allowed for each managed policy. SummaryMap map[string]*int64 `type:"map"` - metadataGetAccountSummaryOutput `json:"-" xml:"-"` -} - -type metadataGetAccountSummaryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6813,11 +6405,7 @@ type GetContextKeysForCustomPolicyInput struct { // valid JSON text of an IAM policy. PolicyInputList []*string `type:"list" required:"true"` - metadataGetContextKeysForCustomPolicyInput `json:"-" xml:"-"` -} - -type metadataGetContextKeysForCustomPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6837,11 +6425,7 @@ type GetContextKeysForPolicyResponse struct { // policies. ContextKeyNames []*string `type:"list"` - metadataGetContextKeysForPolicyResponse `json:"-" xml:"-"` -} - -type metadataGetContextKeysForPolicyResponse struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6868,11 +6452,7 @@ type GetContextKeysForPrincipalPolicyInput struct { // must be URL encoded to be included as a part of a real HTML request. PolicySourceArn *string `min:"20" type:"string" required:"true"` - metadataGetContextKeysForPrincipalPolicyInput `json:"-" xml:"-"` -} - -type metadataGetContextKeysForPrincipalPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6886,11 +6466,7 @@ func (s GetContextKeysForPrincipalPolicyInput) GoString() string { } type GetCredentialReportInput struct { - metadataGetCredentialReportInput `json:"-" xml:"-"` -} - -type metadataGetCredentialReportInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6915,11 +6491,7 @@ type GetCredentialReportOutput struct { // The format (MIME type) of the credential report. ReportFormat *string `type:"string" enum:"ReportFormatType"` - metadataGetCredentialReportOutput `json:"-" xml:"-"` -} - -type metadataGetCredentialReportOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6953,11 +6525,7 @@ type GetGroupInput struct { // service where to continue from. MaxItems *int64 `min:"1" type:"integer"` - metadataGetGroupInput `json:"-" xml:"-"` -} - -type metadataGetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6990,11 +6558,7 @@ type GetGroupOutput struct { // A list of users in the group. Users []*User `type:"list" required:"true"` - metadataGetGroupOutput `json:"-" xml:"-"` -} - -type metadataGetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7014,11 +6578,7 @@ type GetGroupPolicyInput struct { // The name of the policy document to get. PolicyName *string `min:"1" type:"string" required:"true"` - metadataGetGroupPolicyInput `json:"-" xml:"-"` -} - -type metadataGetGroupPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7042,11 +6602,7 @@ type GetGroupPolicyOutput struct { // The name of the policy. PolicyName *string `min:"1" type:"string" required:"true"` - metadataGetGroupPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetGroupPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7063,11 +6619,7 @@ type GetInstanceProfileInput struct { // The name of the instance profile to get information about. InstanceProfileName *string `min:"1" type:"string" required:"true"` - metadataGetInstanceProfileInput `json:"-" xml:"-"` -} - -type metadataGetInstanceProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7085,11 +6637,7 @@ type GetInstanceProfileOutput struct { // Information about the instance profile. InstanceProfile *InstanceProfile `type:"structure" required:"true"` - metadataGetInstanceProfileOutput `json:"-" xml:"-"` -} - -type metadataGetInstanceProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7106,11 +6654,7 @@ type GetLoginProfileInput struct { // The name of the user whose login profile you want to retrieve. UserName *string `min:"1" type:"string" required:"true"` - metadataGetLoginProfileInput `json:"-" xml:"-"` -} - -type metadataGetLoginProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7128,11 +6672,7 @@ type GetLoginProfileOutput struct { // The user name and password create date for the user. LoginProfile *LoginProfile `type:"structure" required:"true"` - metadataGetLoginProfileOutput `json:"-" xml:"-"` -} - -type metadataGetLoginProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7151,11 +6691,7 @@ type GetOpenIDConnectProviderInput struct { // the ListOpenIDConnectProviders action. OpenIDConnectProviderArn *string `min:"20" type:"string" required:"true"` - metadataGetOpenIDConnectProviderInput `json:"-" xml:"-"` -} - -type metadataGetOpenIDConnectProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7186,11 +6722,7 @@ type GetOpenIDConnectProviderOutput struct { // information, see CreateOpenIDConnectProvider. Url *string `min:"1" type:"string"` - metadataGetOpenIDConnectProviderOutput `json:"-" xml:"-"` -} - -type metadataGetOpenIDConnectProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7211,11 +6743,7 @@ type GetPolicyInput struct { // in the AWS General Reference. PolicyArn *string `min:"20" type:"string" required:"true"` - metadataGetPolicyInput `json:"-" xml:"-"` -} - -type metadataGetPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7233,11 +6761,7 @@ type GetPolicyOutput struct { // Information about the policy. Policy *Policy `type:"structure"` - metadataGetPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7261,11 +6785,7 @@ type GetPolicyVersionInput struct { // Identifies the policy version to retrieve. VersionId *string `type:"string" required:"true"` - metadataGetPolicyVersionInput `json:"-" xml:"-"` -} - -type metadataGetPolicyVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7287,11 +6807,7 @@ type GetPolicyVersionOutput struct { // in the IAM User Guide. PolicyVersion *PolicyVersion `type:"structure"` - metadataGetPolicyVersionOutput `json:"-" xml:"-"` -} - -type metadataGetPolicyVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7308,11 +6824,7 @@ type GetRoleInput struct { // The name of the role to get information about. RoleName *string `min:"1" type:"string" required:"true"` - metadataGetRoleInput `json:"-" xml:"-"` -} - -type metadataGetRoleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7330,11 +6842,7 @@ type GetRoleOutput struct { // Information about the role. Role *Role `type:"structure" required:"true"` - metadataGetRoleOutput `json:"-" xml:"-"` -} - -type metadataGetRoleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7354,11 +6862,7 @@ type GetRolePolicyInput struct { // The name of the role associated with the policy. RoleName *string `min:"1" type:"string" required:"true"` - metadataGetRolePolicyInput `json:"-" xml:"-"` -} - -type metadataGetRolePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7382,11 +6886,7 @@ type GetRolePolicyOutput struct { // The role the policy is associated with. RoleName *string `min:"1" type:"string" required:"true"` - metadataGetRolePolicyOutput `json:"-" xml:"-"` -} - -type metadataGetRolePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7403,11 +6903,7 @@ type GetSAMLProviderInput struct { // The Amazon Resource Name (ARN) of the SAML provider to get information about. SAMLProviderArn *string `min:"20" type:"string" required:"true"` - metadataGetSAMLProviderInput `json:"-" xml:"-"` -} - -type metadataGetSAMLProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7431,11 +6927,7 @@ type GetSAMLProviderOutput struct { // The expiration date and time for the SAML provider. ValidUntil *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataGetSAMLProviderOutput `json:"-" xml:"-"` -} - -type metadataGetSAMLProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7460,11 +6952,7 @@ type GetSSHPublicKeyInput struct { // The name of the IAM user associated with the SSH public key. UserName *string `min:"1" type:"string" required:"true"` - metadataGetSSHPublicKeyInput `json:"-" xml:"-"` -} - -type metadataGetSSHPublicKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7482,11 +6970,7 @@ type GetSSHPublicKeyOutput struct { // Information about the SSH public key. SSHPublicKey *SSHPublicKey `type:"structure"` - metadataGetSSHPublicKeyOutput `json:"-" xml:"-"` -} - -type metadataGetSSHPublicKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7503,11 +6987,7 @@ type GetServerCertificateInput struct { // The name of the server certificate you want to retrieve information about. ServerCertificateName *string `min:"1" type:"string" required:"true"` - metadataGetServerCertificateInput `json:"-" xml:"-"` -} - -type metadataGetServerCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7525,11 +7005,7 @@ type GetServerCertificateOutput struct { // Information about the server certificate. ServerCertificate *ServerCertificate `type:"structure" required:"true"` - metadataGetServerCertificateOutput `json:"-" xml:"-"` -} - -type metadataGetServerCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7549,11 +7025,7 @@ type GetUserInput struct { // making the request. UserName *string `min:"1" type:"string"` - metadataGetUserInput `json:"-" xml:"-"` -} - -type metadataGetUserInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7571,11 +7043,7 @@ type GetUserOutput struct { // Information about the user. User *User `type:"structure" required:"true"` - metadataGetUserOutput `json:"-" xml:"-"` -} - -type metadataGetUserOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7595,11 +7063,7 @@ type GetUserPolicyInput struct { // The name of the user who the policy is associated with. UserName *string `min:"1" type:"string" required:"true"` - metadataGetUserPolicyInput `json:"-" xml:"-"` -} - -type metadataGetUserPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7623,11 +7087,7 @@ type GetUserPolicyOutput struct { // The user the policy is associated with. UserName *string `min:"1" type:"string" required:"true"` - metadataGetUserPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetUserPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7668,11 +7128,7 @@ type Group struct { // in the Using IAM guide. Path *string `min:"1" type:"string" required:"true"` - metadataGroup `json:"-" xml:"-"` -} - -type metadataGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7720,11 +7176,7 @@ type GroupDetail struct { // in the Using IAM guide. Path *string `min:"1" type:"string"` - metadataGroupDetail `json:"-" xml:"-"` -} - -type metadataGroupDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7774,11 +7226,7 @@ type InstanceProfile struct { // The role associated with the instance profile. Roles []*Role `type:"list" required:"true"` - metadataInstanceProfile `json:"-" xml:"-"` -} - -type metadataInstanceProfile struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7812,11 +7260,7 @@ type ListAccessKeysInput struct { // The name of the user. UserName *string `min:"1" type:"string"` - metadataListAccessKeysInput `json:"-" xml:"-"` -} - -type metadataListAccessKeysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7846,11 +7290,7 @@ type ListAccessKeysOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListAccessKeysOutput `json:"-" xml:"-"` -} - -type metadataListAccessKeysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7881,11 +7321,7 @@ type ListAccountAliasesInput struct { // service where to continue from. MaxItems *int64 `min:"1" type:"integer"` - metadataListAccountAliasesInput `json:"-" xml:"-"` -} - -type metadataListAccountAliasesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7916,11 +7352,7 @@ type ListAccountAliasesOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListAccountAliasesOutput `json:"-" xml:"-"` -} - -type metadataListAccountAliasesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7959,11 +7391,7 @@ type ListAttachedGroupPoliciesInput struct { // it is not included, it defaults to a slash (/), listing all policies. PathPrefix *string `type:"string"` - metadataListAttachedGroupPoliciesInput `json:"-" xml:"-"` -} - -type metadataListAttachedGroupPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7993,11 +7421,7 @@ type ListAttachedGroupPoliciesOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListAttachedGroupPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListAttachedGroupPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8035,11 +7459,7 @@ type ListAttachedRolePoliciesInput struct { // The name (friendly name, not ARN) of the role to list attached policies for. RoleName *string `min:"1" type:"string" required:"true"` - metadataListAttachedRolePoliciesInput `json:"-" xml:"-"` -} - -type metadataListAttachedRolePoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8069,11 +7489,7 @@ type ListAttachedRolePoliciesOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListAttachedRolePoliciesOutput `json:"-" xml:"-"` -} - -type metadataListAttachedRolePoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8111,11 +7527,7 @@ type ListAttachedUserPoliciesInput struct { // The name (friendly name, not ARN) of the user to list attached policies for. UserName *string `min:"1" type:"string" required:"true"` - metadataListAttachedUserPoliciesInput `json:"-" xml:"-"` -} - -type metadataListAttachedUserPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8145,11 +7557,7 @@ type ListAttachedUserPoliciesOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListAttachedUserPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListAttachedUserPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8198,11 +7606,7 @@ type ListEntitiesForPolicyInput struct { // in the AWS General Reference. PolicyArn *string `min:"20" type:"string" required:"true"` - metadataListEntitiesForPolicyInput `json:"-" xml:"-"` -} - -type metadataListEntitiesForPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8238,11 +7642,7 @@ type ListEntitiesForPolicyOutput struct { // A list of users that the policy is attached to. PolicyUsers []*PolicyUser `type:"list"` - metadataListEntitiesForPolicyOutput `json:"-" xml:"-"` -} - -type metadataListEntitiesForPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8276,11 +7676,7 @@ type ListGroupPoliciesInput struct { // service where to continue from. MaxItems *int64 `min:"1" type:"integer"` - metadataListGroupPoliciesInput `json:"-" xml:"-"` -} - -type metadataListGroupPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8310,11 +7706,7 @@ type ListGroupPoliciesOutput struct { // A list of policy names. PolicyNames []*string `type:"list" required:"true"` - metadataListGroupPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListGroupPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8348,11 +7740,7 @@ type ListGroupsForUserInput struct { // The name of the user to list groups for. UserName *string `min:"1" type:"string" required:"true"` - metadataListGroupsForUserInput `json:"-" xml:"-"` -} - -type metadataListGroupsForUserInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8382,11 +7770,7 @@ type ListGroupsForUserOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListGroupsForUserOutput `json:"-" xml:"-"` -} - -type metadataListGroupsForUserOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8424,11 +7808,7 @@ type ListGroupsInput struct { // (/), listing all groups. PathPrefix *string `min:"1" type:"string"` - metadataListGroupsInput `json:"-" xml:"-"` -} - -type metadataListGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8458,11 +7838,7 @@ type ListGroupsOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListGroupsOutput `json:"-" xml:"-"` -} - -type metadataListGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8496,11 +7872,7 @@ type ListInstanceProfilesForRoleInput struct { // The name of the role to list instance profiles for. RoleName *string `min:"1" type:"string" required:"true"` - metadataListInstanceProfilesForRoleInput `json:"-" xml:"-"` -} - -type metadataListInstanceProfilesForRoleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8530,11 +7902,7 @@ type ListInstanceProfilesForRoleOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListInstanceProfilesForRoleOutput `json:"-" xml:"-"` -} - -type metadataListInstanceProfilesForRoleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8572,11 +7940,7 @@ type ListInstanceProfilesInput struct { // (/), listing all instance profiles. PathPrefix *string `min:"1" type:"string"` - metadataListInstanceProfilesInput `json:"-" xml:"-"` -} - -type metadataListInstanceProfilesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8606,11 +7970,7 @@ type ListInstanceProfilesOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListInstanceProfilesOutput `json:"-" xml:"-"` -} - -type metadataListInstanceProfilesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8644,11 +8004,7 @@ type ListMFADevicesInput struct { // The name of the user whose MFA devices you want to list. UserName *string `min:"1" type:"string"` - metadataListMFADevicesInput `json:"-" xml:"-"` -} - -type metadataListMFADevicesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8678,11 +8034,7 @@ type ListMFADevicesOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListMFADevicesOutput `json:"-" xml:"-"` -} - -type metadataListMFADevicesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8696,11 +8048,7 @@ func (s ListMFADevicesOutput) GoString() string { } type ListOpenIDConnectProvidersInput struct { - metadataListOpenIDConnectProvidersInput `json:"-" xml:"-"` -} - -type metadataListOpenIDConnectProvidersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8718,11 +8066,7 @@ type ListOpenIDConnectProvidersOutput struct { // The list of IAM OpenID Connect providers in the AWS account. OpenIDConnectProviderList []*OpenIDConnectProviderListEntry `type:"list"` - metadataListOpenIDConnectProvidersOutput `json:"-" xml:"-"` -} - -type metadataListOpenIDConnectProvidersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8773,11 +8117,7 @@ type ListPoliciesInput struct { // all policies are returned. Scope *string `type:"string" enum:"policyScopeType"` - metadataListPoliciesInput `json:"-" xml:"-"` -} - -type metadataListPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8807,11 +8147,7 @@ type ListPoliciesOutput struct { // A list of policies. Policies []*Policy `type:"list"` - metadataListPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8849,11 +8185,7 @@ type ListPolicyVersionsInput struct { // in the AWS General Reference. PolicyArn *string `min:"20" type:"string" required:"true"` - metadataListPolicyVersionsInput `json:"-" xml:"-"` -} - -type metadataListPolicyVersionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8887,11 +8219,7 @@ type ListPolicyVersionsOutput struct { // in the IAM User Guide. Versions []*PolicyVersion `type:"list"` - metadataListPolicyVersionsOutput `json:"-" xml:"-"` -} - -type metadataListPolicyVersionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8925,11 +8253,7 @@ type ListRolePoliciesInput struct { // The name of the role to list policies for. RoleName *string `min:"1" type:"string" required:"true"` - metadataListRolePoliciesInput `json:"-" xml:"-"` -} - -type metadataListRolePoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8959,11 +8283,7 @@ type ListRolePoliciesOutput struct { // A list of policy names. PolicyNames []*string `type:"list" required:"true"` - metadataListRolePoliciesOutput `json:"-" xml:"-"` -} - -type metadataListRolePoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9001,11 +8321,7 @@ type ListRolesInput struct { // (/), listing all roles. PathPrefix *string `min:"1" type:"string"` - metadataListRolesInput `json:"-" xml:"-"` -} - -type metadataListRolesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9035,11 +8351,7 @@ type ListRolesOutput struct { // A list of roles. Roles []*Role `type:"list" required:"true"` - metadataListRolesOutput `json:"-" xml:"-"` -} - -type metadataListRolesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9053,11 +8365,7 @@ func (s ListRolesOutput) GoString() string { } type ListSAMLProvidersInput struct { - metadataListSAMLProvidersInput `json:"-" xml:"-"` -} - -type metadataListSAMLProvidersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9075,11 +8383,7 @@ type ListSAMLProvidersOutput struct { // The list of SAML providers for this account. SAMLProviderList []*SAMLProviderListEntry `type:"list"` - metadataListSAMLProvidersOutput `json:"-" xml:"-"` -} - -type metadataListSAMLProvidersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9115,11 +8419,7 @@ type ListSSHPublicKeysInput struct { // to sign the request. UserName *string `min:"1" type:"string"` - metadataListSSHPublicKeysInput `json:"-" xml:"-"` -} - -type metadataListSSHPublicKeysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9149,11 +8449,7 @@ type ListSSHPublicKeysOutput struct { // A list of SSH public keys. SSHPublicKeys []*SSHPublicKeyMetadata `type:"list"` - metadataListSSHPublicKeysOutput `json:"-" xml:"-"` -} - -type metadataListSSHPublicKeysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9191,11 +8487,7 @@ type ListServerCertificatesInput struct { // (/), listing all server certificates. PathPrefix *string `min:"1" type:"string"` - metadataListServerCertificatesInput `json:"-" xml:"-"` -} - -type metadataListServerCertificatesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9225,11 +8517,7 @@ type ListServerCertificatesOutput struct { // A list of server certificates. ServerCertificateMetadataList []*ServerCertificateMetadata `type:"list" required:"true"` - metadataListServerCertificatesOutput `json:"-" xml:"-"` -} - -type metadataListServerCertificatesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9263,11 +8551,7 @@ type ListSigningCertificatesInput struct { // The name of the user. UserName *string `min:"1" type:"string"` - metadataListSigningCertificatesInput `json:"-" xml:"-"` -} - -type metadataListSigningCertificatesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9297,11 +8581,7 @@ type ListSigningCertificatesOutput struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataListSigningCertificatesOutput `json:"-" xml:"-"` -} - -type metadataListSigningCertificatesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9335,11 +8615,7 @@ type ListUserPoliciesInput struct { // The name of the user to list policies for. UserName *string `min:"1" type:"string" required:"true"` - metadataListUserPoliciesInput `json:"-" xml:"-"` -} - -type metadataListUserPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9369,11 +8645,7 @@ type ListUserPoliciesOutput struct { // A list of policy names. PolicyNames []*string `type:"list" required:"true"` - metadataListUserPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListUserPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9411,11 +8683,7 @@ type ListUsersInput struct { // (/), listing all user names. PathPrefix *string `min:"1" type:"string"` - metadataListUsersInput `json:"-" xml:"-"` -} - -type metadataListUsersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9445,11 +8713,7 @@ type ListUsersOutput struct { // A list of users. Users []*User `type:"list" required:"true"` - metadataListUsersOutput `json:"-" xml:"-"` -} - -type metadataListUsersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9485,11 +8749,7 @@ type ListVirtualMFADevicesInput struct { // service where to continue from. MaxItems *int64 `min:"1" type:"integer"` - metadataListVirtualMFADevicesInput `json:"-" xml:"-"` -} - -type metadataListVirtualMFADevicesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9520,11 +8780,7 @@ type ListVirtualMFADevicesOutput struct { // value that was passed in the request. VirtualMFADevices []*VirtualMFADevice `type:"list" required:"true"` - metadataListVirtualMFADevicesOutput `json:"-" xml:"-"` -} - -type metadataListVirtualMFADevicesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9552,11 +8808,7 @@ type LoginProfile struct { // Console. UserName *string `min:"1" type:"string" required:"true"` - metadataLoginProfile `json:"-" xml:"-"` -} - -type metadataLoginProfile struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9583,11 +8835,7 @@ type MFADevice struct { // The user with whom the MFA device is associated. UserName *string `min:"1" type:"string" required:"true"` - metadataMFADevice `json:"-" xml:"-"` -} - -type metadataMFADevice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9667,11 +8915,7 @@ type ManagedPolicyDetail struct { // created. UpdateDate *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataManagedPolicyDetail `json:"-" xml:"-"` -} - -type metadataManagedPolicyDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9693,11 +8937,7 @@ type OpenIDConnectProviderListEntry struct { // in the AWS General Reference. Arn *string `min:"20" type:"string"` - metadataOpenIDConnectProviderListEntry `json:"-" xml:"-"` -} - -type metadataOpenIDConnectProviderListEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9749,11 +8989,7 @@ type PasswordPolicy struct { // Specifies whether to require uppercase characters for IAM user passwords. RequireUppercaseCharacters *bool `type:"boolean"` - metadataPasswordPolicy `json:"-" xml:"-"` -} - -type metadataPasswordPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9826,11 +9062,7 @@ type Policy struct { // created. UpdateDate *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataPolicy `json:"-" xml:"-"` -} - -type metadataPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9854,11 +9086,7 @@ type PolicyDetail struct { // The name of the policy. PolicyName *string `min:"1" type:"string"` - metadataPolicyDetail `json:"-" xml:"-"` -} - -type metadataPolicyDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9883,11 +9111,7 @@ type PolicyGroup struct { // The name (friendly name, not ARN) identifying the group. GroupName *string `min:"1" type:"string"` - metadataPolicyGroup `json:"-" xml:"-"` -} - -type metadataPolicyGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9912,11 +9136,7 @@ type PolicyRole struct { // The name (friendly name, not ARN) identifying the role. RoleName *string `min:"1" type:"string"` - metadataPolicyRole `json:"-" xml:"-"` -} - -type metadataPolicyRole struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9941,11 +9161,7 @@ type PolicyUser struct { // The name (friendly name, not ARN) identifying the user. UserName *string `min:"1" type:"string"` - metadataPolicyUser `json:"-" xml:"-"` -} - -type metadataPolicyUser struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9988,11 +9204,7 @@ type PolicyVersion struct { // a policy is created, the first policy version is v1. VersionId *string `type:"string"` - metadataPolicyVersion `json:"-" xml:"-"` -} - -type metadataPolicyVersion struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10016,11 +9228,7 @@ type Position struct { // The line containing the specified position in the document. Line *int64 `type:"integer"` - metadataPosition `json:"-" xml:"-"` -} - -type metadataPosition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10043,11 +9251,7 @@ type PutGroupPolicyInput struct { // The name of the policy document. PolicyName *string `min:"1" type:"string" required:"true"` - metadataPutGroupPolicyInput `json:"-" xml:"-"` -} - -type metadataPutGroupPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10061,11 +9265,7 @@ func (s PutGroupPolicyInput) GoString() string { } type PutGroupPolicyOutput struct { - metadataPutGroupPolicyOutput `json:"-" xml:"-"` -} - -type metadataPutGroupPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10088,11 +9288,7 @@ type PutRolePolicyInput struct { // The name of the role to associate the policy with. RoleName *string `min:"1" type:"string" required:"true"` - metadataPutRolePolicyInput `json:"-" xml:"-"` -} - -type metadataPutRolePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10106,11 +9302,7 @@ func (s PutRolePolicyInput) GoString() string { } type PutRolePolicyOutput struct { - metadataPutRolePolicyOutput `json:"-" xml:"-"` -} - -type metadataPutRolePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10133,11 +9325,7 @@ type PutUserPolicyInput struct { // The name of the user to associate the policy with. UserName *string `min:"1" type:"string" required:"true"` - metadataPutUserPolicyInput `json:"-" xml:"-"` -} - -type metadataPutUserPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10151,11 +9339,7 @@ func (s PutUserPolicyInput) GoString() string { } type PutUserPolicyOutput struct { - metadataPutUserPolicyOutput `json:"-" xml:"-"` -} - -type metadataPutUserPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10178,11 +9362,7 @@ type RemoveClientIDFromOpenIDConnectProviderInput struct { // using the ListOpenIDConnectProviders action. OpenIDConnectProviderArn *string `min:"20" type:"string" required:"true"` - metadataRemoveClientIDFromOpenIDConnectProviderInput `json:"-" xml:"-"` -} - -type metadataRemoveClientIDFromOpenIDConnectProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10196,11 +9376,7 @@ func (s RemoveClientIDFromOpenIDConnectProviderInput) GoString() string { } type RemoveClientIDFromOpenIDConnectProviderOutput struct { - metadataRemoveClientIDFromOpenIDConnectProviderOutput `json:"-" xml:"-"` -} - -type metadataRemoveClientIDFromOpenIDConnectProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10220,11 +9396,7 @@ type RemoveRoleFromInstanceProfileInput struct { // The name of the role to remove. RoleName *string `min:"1" type:"string" required:"true"` - metadataRemoveRoleFromInstanceProfileInput `json:"-" xml:"-"` -} - -type metadataRemoveRoleFromInstanceProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10238,11 +9410,7 @@ func (s RemoveRoleFromInstanceProfileInput) GoString() string { } type RemoveRoleFromInstanceProfileOutput struct { - metadataRemoveRoleFromInstanceProfileOutput `json:"-" xml:"-"` -} - -type metadataRemoveRoleFromInstanceProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10262,11 +9430,7 @@ type RemoveUserFromGroupInput struct { // The name of the user to remove. UserName *string `min:"1" type:"string" required:"true"` - metadataRemoveUserFromGroupInput `json:"-" xml:"-"` -} - -type metadataRemoveUserFromGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10280,11 +9444,7 @@ func (s RemoveUserFromGroupInput) GoString() string { } type RemoveUserFromGroupOutput struct { - metadataRemoveUserFromGroupOutput `json:"-" xml:"-"` -} - -type metadataRemoveUserFromGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10329,11 +9489,7 @@ type ResourceSpecificResult struct { // or GetContextKeysForPrincipalPolicy. MissingContextValues []*string `type:"list"` - metadataResourceSpecificResult `json:"-" xml:"-"` -} - -type metadataResourceSpecificResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10359,11 +9515,7 @@ type ResyncMFADeviceInput struct { // The name of the user whose MFA device you want to resynchronize. UserName *string `min:"1" type:"string" required:"true"` - metadataResyncMFADeviceInput `json:"-" xml:"-"` -} - -type metadataResyncMFADeviceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10377,11 +9529,7 @@ func (s ResyncMFADeviceInput) GoString() string { } type ResyncMFADeviceOutput struct { - metadataResyncMFADeviceOutput `json:"-" xml:"-"` -} - -type metadataResyncMFADeviceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10429,11 +9577,7 @@ type Role struct { // The friendly name that identifies the role. RoleName *string `min:"1" type:"string" required:"true"` - metadataRole `json:"-" xml:"-"` -} - -type metadataRole struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10489,11 +9633,7 @@ type RoleDetail struct { // access (permissions) policies. RolePolicyList []*PolicyDetail `type:"list"` - metadataRoleDetail `json:"-" xml:"-"` -} - -type metadataRoleDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10517,11 +9657,7 @@ type SAMLProviderListEntry struct { // The expiration date and time for the SAML provider. ValidUntil *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataSAMLProviderListEntry `json:"-" xml:"-"` -} - -type metadataSAMLProviderListEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10559,11 +9695,7 @@ type SSHPublicKey struct { // The name of the IAM user associated with the SSH public key. UserName *string `min:"1" type:"string" required:"true"` - metadataSSHPublicKey `json:"-" xml:"-"` -} - -type metadataSSHPublicKey struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10594,11 +9726,7 @@ type SSHPublicKeyMetadata struct { // The name of the IAM user associated with the SSH public key. UserName *string `min:"1" type:"string" required:"true"` - metadataSSHPublicKeyMetadata `json:"-" xml:"-"` -} - -type metadataSSHPublicKeyMetadata struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10626,11 +9754,7 @@ type ServerCertificate struct { // and ARN. ServerCertificateMetadata *ServerCertificateMetadata `type:"structure" required:"true"` - metadataServerCertificate `json:"-" xml:"-"` -} - -type metadataServerCertificate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10674,11 +9798,7 @@ type ServerCertificateMetadata struct { // The date when the server certificate was uploaded. UploadDate *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataServerCertificateMetadata `json:"-" xml:"-"` -} - -type metadataServerCertificateMetadata struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10706,11 +9826,7 @@ type SetDefaultPolicyVersionInput struct { // in the IAM User Guide. VersionId *string `type:"string" required:"true"` - metadataSetDefaultPolicyVersionInput `json:"-" xml:"-"` -} - -type metadataSetDefaultPolicyVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10724,11 +9840,7 @@ func (s SetDefaultPolicyVersionInput) GoString() string { } type SetDefaultPolicyVersionOutput struct { - metadataSetDefaultPolicyVersionOutput `json:"-" xml:"-"` -} - -type metadataSetDefaultPolicyVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10762,11 +9874,7 @@ type SigningCertificate struct { // The name of the user the signing certificate is associated with. UserName *string `min:"1" type:"string" required:"true"` - metadataSigningCertificate `json:"-" xml:"-"` -} - -type metadataSigningCertificate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10896,11 +10004,7 @@ type SimulateCustomPolicyInput struct { // You can include only one resource-based policy in a simulation. ResourcePolicy *string `min:"1" type:"string"` - metadataSimulateCustomPolicyInput `json:"-" xml:"-"` -} - -type metadataSimulateCustomPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10931,11 +10035,7 @@ type SimulatePolicyResponse struct { // to use for the Marker parameter in a subsequent pagination request. Marker *string `min:"1" type:"string"` - metadataSimulatePolicyResponse `json:"-" xml:"-"` -} - -type metadataSimulatePolicyResponse struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11071,11 +10171,7 @@ type SimulatePrincipalPolicyInput struct { // You can include only one resource-based policy in a simulation. ResourcePolicy *string `min:"1" type:"string"` - metadataSimulatePrincipalPolicyInput `json:"-" xml:"-"` -} - -type metadataSimulatePrincipalPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11106,11 +10202,7 @@ type Statement struct { // The row and column of the beginning of the Statement in an IAM policy. StartPosition *Position `type:"structure"` - metadataStatement `json:"-" xml:"-"` -} - -type metadataStatement struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11135,11 +10227,7 @@ type UpdateAccessKeyInput struct { // The name of the user whose key you want to update. UserName *string `min:"1" type:"string"` - metadataUpdateAccessKeyInput `json:"-" xml:"-"` -} - -type metadataUpdateAccessKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11153,11 +10241,7 @@ func (s UpdateAccessKeyInput) GoString() string { } type UpdateAccessKeyOutput struct { - metadataUpdateAccessKeyOutput `json:"-" xml:"-"` -} - -type metadataUpdateAccessKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11228,11 +10312,7 @@ type UpdateAccountPasswordPolicyInput struct { // Default value: false RequireUppercaseCharacters *bool `type:"boolean"` - metadataUpdateAccountPasswordPolicyInput `json:"-" xml:"-"` -} - -type metadataUpdateAccountPasswordPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11246,11 +10326,7 @@ func (s UpdateAccountPasswordPolicyInput) GoString() string { } type UpdateAccountPasswordPolicyOutput struct { - metadataUpdateAccountPasswordPolicyOutput `json:"-" xml:"-"` -} - -type metadataUpdateAccountPasswordPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11270,11 +10346,7 @@ type UpdateAssumeRolePolicyInput struct { // The name of the role to update. RoleName *string `min:"1" type:"string" required:"true"` - metadataUpdateAssumeRolePolicyInput `json:"-" xml:"-"` -} - -type metadataUpdateAssumeRolePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11288,11 +10360,7 @@ func (s UpdateAssumeRolePolicyInput) GoString() string { } type UpdateAssumeRolePolicyOutput struct { - metadataUpdateAssumeRolePolicyOutput `json:"-" xml:"-"` -} - -type metadataUpdateAssumeRolePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11316,11 +10384,7 @@ type UpdateGroupInput struct { // New path for the group. Only include this if changing the group's path. NewPath *string `min:"1" type:"string"` - metadataUpdateGroupInput `json:"-" xml:"-"` -} - -type metadataUpdateGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11334,11 +10398,7 @@ func (s UpdateGroupInput) GoString() string { } type UpdateGroupOutput struct { - metadataUpdateGroupOutput `json:"-" xml:"-"` -} - -type metadataUpdateGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11361,11 +10421,7 @@ type UpdateLoginProfileInput struct { // The name of the user whose password you want to update. UserName *string `min:"1" type:"string" required:"true"` - metadataUpdateLoginProfileInput `json:"-" xml:"-"` -} - -type metadataUpdateLoginProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11379,11 +10435,7 @@ func (s UpdateLoginProfileInput) GoString() string { } type UpdateLoginProfileOutput struct { - metadataUpdateLoginProfileOutput `json:"-" xml:"-"` -} - -type metadataUpdateLoginProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11406,11 +10458,7 @@ type UpdateOpenIDConnectProviderThumbprintInput struct { // IAM OpenID Connect provider. For more information, see CreateOpenIDConnectProvider. ThumbprintList []*string `type:"list" required:"true"` - metadataUpdateOpenIDConnectProviderThumbprintInput `json:"-" xml:"-"` -} - -type metadataUpdateOpenIDConnectProviderThumbprintInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11424,11 +10472,7 @@ func (s UpdateOpenIDConnectProviderThumbprintInput) GoString() string { } type UpdateOpenIDConnectProviderThumbprintOutput struct { - metadataUpdateOpenIDConnectProviderThumbprintOutput `json:"-" xml:"-"` -} - -type metadataUpdateOpenIDConnectProviderThumbprintOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11452,11 +10496,7 @@ type UpdateSAMLProviderInput struct { // The Amazon Resource Name (ARN) of the SAML provider to update. SAMLProviderArn *string `min:"20" type:"string" required:"true"` - metadataUpdateSAMLProviderInput `json:"-" xml:"-"` -} - -type metadataUpdateSAMLProviderInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11474,11 +10514,7 @@ type UpdateSAMLProviderOutput struct { // The Amazon Resource Name (ARN) of the SAML provider that was updated. SAMLProviderArn *string `min:"20" type:"string"` - metadataUpdateSAMLProviderOutput `json:"-" xml:"-"` -} - -type metadataUpdateSAMLProviderOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11503,11 +10539,7 @@ type UpdateSSHPublicKeyInput struct { // The name of the IAM user associated with the SSH public key. UserName *string `min:"1" type:"string" required:"true"` - metadataUpdateSSHPublicKeyInput `json:"-" xml:"-"` -} - -type metadataUpdateSSHPublicKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11521,11 +10553,7 @@ func (s UpdateSSHPublicKeyInput) GoString() string { } type UpdateSSHPublicKeyOutput struct { - metadataUpdateSSHPublicKeyOutput `json:"-" xml:"-"` -} - -type metadataUpdateSSHPublicKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11551,11 +10579,7 @@ type UpdateServerCertificateInput struct { // The name of the server certificate that you want to update. ServerCertificateName *string `min:"1" type:"string" required:"true"` - metadataUpdateServerCertificateInput `json:"-" xml:"-"` -} - -type metadataUpdateServerCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11569,11 +10593,7 @@ func (s UpdateServerCertificateInput) GoString() string { } type UpdateServerCertificateOutput struct { - metadataUpdateServerCertificateOutput `json:"-" xml:"-"` -} - -type metadataUpdateServerCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11598,11 +10618,7 @@ type UpdateSigningCertificateInput struct { // The name of the user the signing certificate belongs to. UserName *string `min:"1" type:"string"` - metadataUpdateSigningCertificateInput `json:"-" xml:"-"` -} - -type metadataUpdateSigningCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11616,11 +10632,7 @@ func (s UpdateSigningCertificateInput) GoString() string { } type UpdateSigningCertificateOutput struct { - metadataUpdateSigningCertificateOutput `json:"-" xml:"-"` -} - -type metadataUpdateSigningCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11646,11 +10658,7 @@ type UpdateUserInput struct { // is the original user name. UserName *string `min:"1" type:"string" required:"true"` - metadataUpdateUserInput `json:"-" xml:"-"` -} - -type metadataUpdateUserInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11664,11 +10672,7 @@ func (s UpdateUserInput) GoString() string { } type UpdateUserOutput struct { - metadataUpdateUserOutput `json:"-" xml:"-"` -} - -type metadataUpdateUserOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11689,11 +10693,7 @@ type UploadSSHPublicKeyInput struct { // The name of the IAM user to associate the SSH public key with. UserName *string `min:"1" type:"string" required:"true"` - metadataUploadSSHPublicKeyInput `json:"-" xml:"-"` -} - -type metadataUploadSSHPublicKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11711,11 +10711,7 @@ type UploadSSHPublicKeyOutput struct { // Contains information about the SSH public key. SSHPublicKey *SSHPublicKey `type:"structure"` - metadataUploadSSHPublicKeyOutput `json:"-" xml:"-"` -} - -type metadataUploadSSHPublicKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11756,11 +10752,7 @@ type UploadServerCertificateInput struct { // The name of the certificate cannot contain any spaces. ServerCertificateName *string `min:"1" type:"string" required:"true"` - metadataUploadServerCertificateInput `json:"-" xml:"-"` -} - -type metadataUploadServerCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11779,11 +10771,7 @@ type UploadServerCertificateOutput struct { // body, certificate chain, and private key. ServerCertificateMetadata *ServerCertificateMetadata `type:"structure"` - metadataUploadServerCertificateOutput `json:"-" xml:"-"` -} - -type metadataUploadServerCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11803,11 +10791,7 @@ type UploadSigningCertificateInput struct { // The name of the user the signing certificate is for. UserName *string `min:"1" type:"string"` - metadataUploadSigningCertificateInput `json:"-" xml:"-"` -} - -type metadataUploadSigningCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11825,11 +10809,7 @@ type UploadSigningCertificateOutput struct { // Information about the certificate. Certificate *SigningCertificate `type:"structure" required:"true"` - metadataUploadSigningCertificateOutput `json:"-" xml:"-"` -} - -type metadataUploadSigningCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11892,11 +10872,7 @@ type User struct { // The friendly name identifying the user. UserName *string `min:"1" type:"string" required:"true"` - metadataUser `json:"-" xml:"-"` -} - -type metadataUser struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11948,11 +10924,7 @@ type UserDetail struct { // A list of the inline policies embedded in the user. UserPolicyList []*PolicyDetail `type:"list"` - metadataUserDetail `json:"-" xml:"-"` -} - -type metadataUserDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11994,11 +10966,7 @@ type VirtualMFADevice struct { // ListUsers User *User `type:"structure"` - metadataVirtualMFADevice `json:"-" xml:"-"` -} - -type metadataVirtualMFADevice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/inspector/api.go b/service/inspector/api.go index 0ac044704a3..dc9e8270aab 100644 --- a/service/inspector/api.go +++ b/service/inspector/api.go @@ -1013,11 +1013,7 @@ type AddAttributesToFindingsInput struct { // The ARNs specifying the findings that you want to assign attributes to. FindingArns []*string `locationName:"findingArns" type:"list" required:"true"` - metadataAddAttributesToFindingsInput `json:"-" xml:"-"` -} - -type metadataAddAttributesToFindingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1034,11 +1030,7 @@ type AddAttributesToFindingsOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataAddAttributesToFindingsOutput `json:"-" xml:"-"` -} - -type metadataAddAttributesToFindingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1079,11 +1071,7 @@ type Agent struct { // The Inspector application data metrics collected by the agent. Telemetry []*Telemetry `locationName:"telemetry" type:"list"` - metadataAgent `json:"-" xml:"-"` -} - -type metadataAgent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1105,11 +1093,7 @@ type AgentPreview struct { // The autoscaling group for the EC2 instance where the agent is installed. AutoScalingGroup *string `locationName:"autoScalingGroup" type:"string"` - metadataAgentPreview `json:"-" xml:"-"` -} - -type metadataAgentPreview struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1130,11 +1114,7 @@ type AgentsFilter struct { // data type. AgentHealthList []*string `locationName:"agentHealthList" type:"list"` - metadataAgentsFilter `json:"-" xml:"-"` -} - -type metadataAgentsFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1161,11 +1141,7 @@ type Application struct { // The ARN specifying the resource group that is associated with the application. ResourceGroupArn *string `locationName:"resourceGroupArn" type:"string"` - metadataApplication `json:"-" xml:"-"` -} - -type metadataApplication struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1185,11 +1161,7 @@ type ApplicationsFilter struct { // the applicationName property of the Application data type. ApplicationNamePatterns []*string `locationName:"applicationNamePatterns" type:"list"` - metadataApplicationsFilter `json:"-" xml:"-"` -} - -type metadataApplicationsFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1240,11 +1212,7 @@ type Assessment struct { // The user-defined attributes that are assigned to every generated finding. UserAttributesForFindings []*Attribute `locationName:"userAttributesForFindings" type:"list"` - metadataAssessment `json:"-" xml:"-"` -} - -type metadataAssessment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1290,11 +1258,7 @@ type AssessmentsFilter struct { // values of the startTime property of the Assessment data type. StartTimeRange *TimestampRange `locationName:"startTimeRange" type:"structure"` - metadataAssessmentsFilter `json:"-" xml:"-"` -} - -type metadataAssessmentsFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1314,11 +1278,7 @@ type AttachAssessmentAndRulesPackageInput struct { // The ARN specifying the rules package that you want to attach to the assessment. RulesPackageArn *string `locationName:"rulesPackageArn" type:"string" required:"true"` - metadataAttachAssessmentAndRulesPackageInput `json:"-" xml:"-"` -} - -type metadataAttachAssessmentAndRulesPackageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1335,11 +1295,7 @@ type AttachAssessmentAndRulesPackageOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataAttachAssessmentAndRulesPackageOutput `json:"-" xml:"-"` -} - -type metadataAttachAssessmentAndRulesPackageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1361,11 +1317,7 @@ type Attribute struct { // The value assigned to the attribute key. Value *string `locationName:"value" type:"string"` - metadataAttribute `json:"-" xml:"-"` -} - -type metadataAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1386,11 +1338,7 @@ type CreateApplicationInput struct { // The ARN specifying the resource group that is used to create the application. ResourceGroupArn *string `locationName:"resourceGroupArn" type:"string" required:"true"` - metadataCreateApplicationInput `json:"-" xml:"-"` -} - -type metadataCreateApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1407,11 +1355,7 @@ type CreateApplicationOutput struct { // The ARN specifying the application that is created. ApplicationArn *string `locationName:"applicationArn" type:"string"` - metadataCreateApplicationOutput `json:"-" xml:"-"` -} - -type metadataCreateApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1441,11 +1385,7 @@ type CreateAssessmentInput struct { // by running this assessment. UserAttributesForFindings []*Attribute `locationName:"userAttributesForFindings" type:"list"` - metadataCreateAssessmentInput `json:"-" xml:"-"` -} - -type metadataCreateAssessmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1462,11 +1402,7 @@ type CreateAssessmentOutput struct { // The ARN specifying the assessment that is created. AssessmentArn *string `locationName:"assessmentArn" type:"string"` - metadataCreateAssessmentOutput `json:"-" xml:"-"` -} - -type metadataCreateAssessmentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1485,11 +1421,7 @@ type CreateResourceGroupInput struct { // For example, [{ "key1" : ["Value1","Value2"]},{"Key2": ["Value3"]}] ResourceGroupTags *string `locationName:"resourceGroupTags" type:"string" required:"true"` - metadataCreateResourceGroupInput `json:"-" xml:"-"` -} - -type metadataCreateResourceGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1506,11 +1438,7 @@ type CreateResourceGroupOutput struct { // The ARN specifying the resource group that is created. ResourceGroupArn *string `locationName:"resourceGroupArn" type:"string"` - metadataCreateResourceGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateResourceGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1527,11 +1455,7 @@ type DeleteApplicationInput struct { // The ARN specifying the application that you want to delete. ApplicationArn *string `locationName:"applicationArn" type:"string" required:"true"` - metadataDeleteApplicationInput `json:"-" xml:"-"` -} - -type metadataDeleteApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1548,11 +1472,7 @@ type DeleteApplicationOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataDeleteApplicationOutput `json:"-" xml:"-"` -} - -type metadataDeleteApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1569,11 +1489,7 @@ type DeleteAssessmentInput struct { // The ARN specifying the assessment that you want to delete. AssessmentArn *string `locationName:"assessmentArn" type:"string" required:"true"` - metadataDeleteAssessmentInput `json:"-" xml:"-"` -} - -type metadataDeleteAssessmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1590,11 +1506,7 @@ type DeleteAssessmentOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataDeleteAssessmentOutput `json:"-" xml:"-"` -} - -type metadataDeleteAssessmentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1611,11 +1523,7 @@ type DeleteRunInput struct { // The ARN specifying the assessment run that you want to delete. RunArn *string `locationName:"runArn" type:"string" required:"true"` - metadataDeleteRunInput `json:"-" xml:"-"` -} - -type metadataDeleteRunInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1632,11 +1540,7 @@ type DeleteRunOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataDeleteRunOutput `json:"-" xml:"-"` -} - -type metadataDeleteRunOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1653,11 +1557,7 @@ type DescribeApplicationInput struct { // The ARN specifying the application that you want to describe. ApplicationArn *string `locationName:"applicationArn" type:"string" required:"true"` - metadataDescribeApplicationInput `json:"-" xml:"-"` -} - -type metadataDescribeApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1674,11 +1574,7 @@ type DescribeApplicationOutput struct { // Information about the application. Application *Application `locationName:"application" type:"structure"` - metadataDescribeApplicationOutput `json:"-" xml:"-"` -} - -type metadataDescribeApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1695,11 +1591,7 @@ type DescribeAssessmentInput struct { // The ARN specifying the assessment that you want to describe. AssessmentArn *string `locationName:"assessmentArn" type:"string" required:"true"` - metadataDescribeAssessmentInput `json:"-" xml:"-"` -} - -type metadataDescribeAssessmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1716,11 +1608,7 @@ type DescribeAssessmentOutput struct { // Information about the assessment. Assessment *Assessment `locationName:"assessment" type:"structure"` - metadataDescribeAssessmentOutput `json:"-" xml:"-"` -} - -type metadataDescribeAssessmentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1734,11 +1622,7 @@ func (s DescribeAssessmentOutput) GoString() string { } type DescribeCrossAccountAccessRoleInput struct { - metadataDescribeCrossAccountAccessRoleInput `json:"-" xml:"-"` -} - -type metadataDescribeCrossAccountAccessRoleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1759,11 +1643,7 @@ type DescribeCrossAccountAccessRoleOutput struct { // attached to enable Inspector to access your AWS account. Valid *bool `locationName:"valid" type:"boolean"` - metadataDescribeCrossAccountAccessRoleOutput `json:"-" xml:"-"` -} - -type metadataDescribeCrossAccountAccessRoleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1780,11 +1660,7 @@ type DescribeFindingInput struct { // The ARN specifying the finding that you want to describe. FindingArn *string `locationName:"findingArn" type:"string" required:"true"` - metadataDescribeFindingInput `json:"-" xml:"-"` -} - -type metadataDescribeFindingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1801,11 +1677,7 @@ type DescribeFindingOutput struct { // Information about the finding. Finding *Finding `locationName:"finding" type:"structure"` - metadataDescribeFindingOutput `json:"-" xml:"-"` -} - -type metadataDescribeFindingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1822,11 +1694,7 @@ type DescribeResourceGroupInput struct { // The ARN specifying the resource group that you want to describe. ResourceGroupArn *string `locationName:"resourceGroupArn" type:"string" required:"true"` - metadataDescribeResourceGroupInput `json:"-" xml:"-"` -} - -type metadataDescribeResourceGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1843,11 +1711,7 @@ type DescribeResourceGroupOutput struct { // Information about the resource group. ResourceGroup *ResourceGroup `locationName:"resourceGroup" type:"structure"` - metadataDescribeResourceGroupOutput `json:"-" xml:"-"` -} - -type metadataDescribeResourceGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1864,11 +1728,7 @@ type DescribeRulesPackageInput struct { // The ARN specifying the rules package that you want to describe. RulesPackageArn *string `locationName:"rulesPackageArn" type:"string" required:"true"` - metadataDescribeRulesPackageInput `json:"-" xml:"-"` -} - -type metadataDescribeRulesPackageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1885,11 +1745,7 @@ type DescribeRulesPackageOutput struct { // Information about the rules package. RulesPackage *RulesPackage `locationName:"rulesPackage" type:"structure"` - metadataDescribeRulesPackageOutput `json:"-" xml:"-"` -} - -type metadataDescribeRulesPackageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1906,11 +1762,7 @@ type DescribeRunInput struct { // The ARN specifying the assessment run that you want to describe. RunArn *string `locationName:"runArn" type:"string" required:"true"` - metadataDescribeRunInput `json:"-" xml:"-"` -} - -type metadataDescribeRunInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1927,11 +1779,7 @@ type DescribeRunOutput struct { // Information about the assessment run. Run *Run `locationName:"run" type:"structure"` - metadataDescribeRunOutput `json:"-" xml:"-"` -} - -type metadataDescribeRunOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1951,11 +1799,7 @@ type DetachAssessmentAndRulesPackageInput struct { // The ARN specifying the rules package that you want to detach from the assessment. RulesPackageArn *string `locationName:"rulesPackageArn" type:"string" required:"true"` - metadataDetachAssessmentAndRulesPackageInput `json:"-" xml:"-"` -} - -type metadataDetachAssessmentAndRulesPackageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1972,11 +1816,7 @@ type DetachAssessmentAndRulesPackageOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataDetachAssessmentAndRulesPackageOutput `json:"-" xml:"-"` -} - -type metadataDetachAssessmentAndRulesPackageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1998,11 +1838,7 @@ type DurationRange struct { // The minimum value of the duration range. Must be greater than zero. Minimum *int64 `locationName:"minimum" type:"integer"` - metadataDurationRange `json:"-" xml:"-"` -} - -type metadataDurationRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2057,11 +1893,7 @@ type Finding struct { // The user-defined attributes that are assigned to the finding. UserAttributes []*Attribute `locationName:"userAttributes" type:"list"` - metadataFinding `json:"-" xml:"-"` -} - -type metadataFinding struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2101,11 +1933,7 @@ type FindingsFilter struct { // Finding data type. UserAttributes []*Attribute `locationName:"userAttributes" type:"list"` - metadataFindingsFilter `json:"-" xml:"-"` -} - -type metadataFindingsFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2122,11 +1950,7 @@ type GetAssessmentTelemetryInput struct { // The ARN specifying the assessment the telemetry of which you want to obtain. AssessmentArn *string `locationName:"assessmentArn" type:"string" required:"true"` - metadataGetAssessmentTelemetryInput `json:"-" xml:"-"` -} - -type metadataGetAssessmentTelemetryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2143,11 +1967,7 @@ type GetAssessmentTelemetryOutput struct { // Telemetry details. Telemetry []*Telemetry `locationName:"telemetry" type:"list"` - metadataGetAssessmentTelemetryOutput `json:"-" xml:"-"` -} - -type metadataGetAssessmentTelemetryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2179,11 +1999,7 @@ type ListApplicationsInput struct { // from previous response to continue listing data. NextToken *string `locationName:"nextToken" type:"string"` - metadataListApplicationsInput `json:"-" xml:"-"` -} - -type metadataListApplicationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2206,11 +2022,7 @@ type ListApplicationsOutput struct { // be listed, this parameter is set to 'null'. NextToken *string `locationName:"nextToken" type:"string"` - metadataListApplicationsOutput `json:"-" xml:"-"` -} - -type metadataListApplicationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2245,11 +2057,7 @@ type ListAssessmentAgentsInput struct { // of NextToken from previous response to continue listing data. NextToken *string `locationName:"nextToken" type:"string"` - metadataListAssessmentAgentsInput `json:"-" xml:"-"` -} - -type metadataListAssessmentAgentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2272,11 +2080,7 @@ type ListAssessmentAgentsOutput struct { // be listed, this parameter is set to 'null'. NextToken *string `locationName:"nextToken" type:"string"` - metadataListAssessmentAgentsOutput `json:"-" xml:"-"` -} - -type metadataListAssessmentAgentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2312,11 +2116,7 @@ type ListAssessmentsInput struct { // from previous response to continue listing data. NextToken *string `locationName:"nextToken" type:"string"` - metadataListAssessmentsInput `json:"-" xml:"-"` -} - -type metadataListAssessmentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2339,11 +2139,7 @@ type ListAssessmentsOutput struct { // be listed, this parameter is set to 'null'. NextToken *string `locationName:"nextToken" type:"string"` - metadataListAssessmentsOutput `json:"-" xml:"-"` -} - -type metadataListAssessmentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2378,11 +2174,7 @@ type ListAttachedAssessmentsInput struct { // The ARN specifying the rules package whose assessments you want to list. RulesPackageArn *string `locationName:"rulesPackageArn" type:"string" required:"true"` - metadataListAttachedAssessmentsInput `json:"-" xml:"-"` -} - -type metadataListAttachedAssessmentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2405,11 +2197,7 @@ type ListAttachedAssessmentsOutput struct { // be listed, this parameter is set to 'null'. NextToken *string `locationName:"nextToken" type:"string"` - metadataListAttachedAssessmentsOutput `json:"-" xml:"-"` -} - -type metadataListAttachedAssessmentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2436,11 +2224,7 @@ type ListAttachedRulesPackagesInput struct { // of NextToken from previous response to continue listing data. NextToken *string `locationName:"nextToken" type:"string"` - metadataListAttachedRulesPackagesInput `json:"-" xml:"-"` -} - -type metadataListAttachedRulesPackagesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2463,11 +2247,7 @@ type ListAttachedRulesPackagesOutput struct { // A list of ARNs specifying the rules packages returned by the action. RulesPackageArnList []*string `locationName:"rulesPackageArnList" type:"list"` - metadataListAttachedRulesPackagesOutput `json:"-" xml:"-"` -} - -type metadataListAttachedRulesPackagesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2503,11 +2283,7 @@ type ListFindingsInput struct { // to list. RunArns []*string `locationName:"runArns" type:"list"` - metadataListFindingsInput `json:"-" xml:"-"` -} - -type metadataListFindingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2530,11 +2306,7 @@ type ListFindingsOutput struct { // be listed, this parameter is set to 'null'. NextToken *string `locationName:"nextToken" type:"string"` - metadataListFindingsOutput `json:"-" xml:"-"` -} - -type metadataListFindingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2558,11 +2330,7 @@ type ListRulesPackagesInput struct { // from previous response to continue listing data. NextToken *string `locationName:"nextToken" type:"string"` - metadataListRulesPackagesInput `json:"-" xml:"-"` -} - -type metadataListRulesPackagesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2585,11 +2353,7 @@ type ListRulesPackagesOutput struct { // The list of ARNs specifying the rules packages returned by the action. RulesPackageArnList []*string `locationName:"rulesPackageArnList" type:"list"` - metadataListRulesPackagesOutput `json:"-" xml:"-"` -} - -type metadataListRulesPackagesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2624,11 +2388,7 @@ type ListRunsInput struct { // from previous response to continue listing data. NextToken *string `locationName:"nextToken" type:"string"` - metadataListRunsInput `json:"-" xml:"-"` -} - -type metadataListRunsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2651,11 +2411,7 @@ type ListRunsOutput struct { // A list of ARNs specifying the assessment runs returned by the action. RunArnList []*string `locationName:"runArnList" type:"list"` - metadataListRunsOutput `json:"-" xml:"-"` -} - -type metadataListRunsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2672,11 +2428,7 @@ type ListTagsForResourceInput struct { // The ARN specifying the resource whose tags you want to list. ResourceArn *string `locationName:"resourceArn" type:"string" required:"true"` - metadataListTagsForResourceInput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2693,11 +2445,7 @@ type ListTagsForResourceOutput struct { // A collection of key and value pairs. TagList []*Tag `locationName:"tagList" type:"list"` - metadataListTagsForResourceOutput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2717,11 +2465,7 @@ type LocalizeTextInput struct { // A list of textual identifiers. LocalizedTexts []*LocalizedText `locationName:"localizedTexts" type:"list" required:"true"` - metadataLocalizeTextInput `json:"-" xml:"-"` -} - -type metadataLocalizeTextInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2741,11 +2485,7 @@ type LocalizeTextOutput struct { // The resulting list of user-readable texts. Results []*string `locationName:"results" type:"list"` - metadataLocalizeTextOutput `json:"-" xml:"-"` -} - -type metadataLocalizeTextOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2767,11 +2507,7 @@ type LocalizedText struct { // Values for the dynamic elements of the string specified by the textual identifier. Parameters []*Parameter `locationName:"parameters" type:"list"` - metadataLocalizedText `json:"-" xml:"-"` -} - -type metadataLocalizedText struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2792,11 +2528,7 @@ type LocalizedTextKey struct { // Part of the module response source of the text. Id *string `locationName:"id" type:"string"` - metadataLocalizedTextKey `json:"-" xml:"-"` -} - -type metadataLocalizedTextKey struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2826,11 +2558,7 @@ type MessageTypeTelemetry struct { // A specific type of behavioral data that is collected by the agent. MessageType *string `locationName:"messageType" type:"string"` - metadataMessageTypeTelemetry `json:"-" xml:"-"` -} - -type metadataMessageTypeTelemetry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2851,11 +2579,7 @@ type Parameter struct { // The value assigned to the variable that is being replaced. Value *string `locationName:"value" type:"string"` - metadataParameter `json:"-" xml:"-"` -} - -type metadataParameter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2882,11 +2606,7 @@ type PreviewAgentsForResourceGroupInput struct { // The ARN of the resource group that is used to create an application. ResourceGroupArn *string `locationName:"resourceGroupArn" type:"string" required:"true"` - metadataPreviewAgentsForResourceGroupInput `json:"-" xml:"-"` -} - -type metadataPreviewAgentsForResourceGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2909,11 +2629,7 @@ type PreviewAgentsForResourceGroupOutput struct { // be listed, this parameter is set to 'null'. NextToken *string `locationName:"nextToken" type:"string"` - metadataPreviewAgentsForResourceGroupOutput `json:"-" xml:"-"` -} - -type metadataPreviewAgentsForResourceGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2931,11 +2647,7 @@ type RegisterCrossAccountAccessRoleInput struct { // the assessment. RoleArn *string `locationName:"roleArn" type:"string" required:"true"` - metadataRegisterCrossAccountAccessRoleInput `json:"-" xml:"-"` -} - -type metadataRegisterCrossAccountAccessRoleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2952,11 +2664,7 @@ type RegisterCrossAccountAccessRoleOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataRegisterCrossAccountAccessRoleOutput `json:"-" xml:"-"` -} - -type metadataRegisterCrossAccountAccessRoleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2976,11 +2684,7 @@ type RemoveAttributesFromFindingsInput struct { // The ARNs specifying the findings that you want to remove attributes from. FindingArns []*string `locationName:"findingArns" type:"list" required:"true"` - metadataRemoveAttributesFromFindingsInput `json:"-" xml:"-"` -} - -type metadataRemoveAttributesFromFindingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2997,11 +2701,7 @@ type RemoveAttributesFromFindingsOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataRemoveAttributesFromFindingsOutput `json:"-" xml:"-"` -} - -type metadataRemoveAttributesFromFindingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3033,11 +2733,7 @@ type ResourceGroup struct { // For example, [{ "key1" : ["Value1","Value2"]},{"Key2": ["Value3"]}] ResourceGroupTags *string `locationName:"resourceGroupTags" type:"string"` - metadataResourceGroup `json:"-" xml:"-"` -} - -type metadataResourceGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3070,11 +2766,7 @@ type RulesPackage struct { // The version id of the rules package. Version *string `locationName:"version" type:"string"` - metadataRulesPackage `json:"-" xml:"-"` -} - -type metadataRulesPackage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3115,11 +2807,7 @@ type Run struct { // EvaluatingPoliciesErrorCanRetry, Completed, Failed, TombStoned. RunState *string `locationName:"runState" type:"string"` - metadataRun `json:"-" xml:"-"` -} - -type metadataRun struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3139,11 +2827,7 @@ type RunAssessmentInput struct { // A name specifying the run of the assessment. RunName *string `locationName:"runName" type:"string" required:"true"` - metadataRunAssessmentInput `json:"-" xml:"-"` -} - -type metadataRunAssessmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3160,11 +2844,7 @@ type RunAssessmentOutput struct { // The ARN specifying the run of the assessment. RunArn *string `locationName:"runArn" type:"string"` - metadataRunAssessmentOutput `json:"-" xml:"-"` -} - -type metadataRunAssessmentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3204,11 +2884,7 @@ type RunsFilter struct { // data type. RunStates []*string `locationName:"runStates" type:"list"` - metadataRunsFilter `json:"-" xml:"-"` -} - -type metadataRunsFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3228,11 +2904,7 @@ type SetTagsForResourceInput struct { // A collection of key and value pairs that you want to set to an assessment. Tags []*Tag `locationName:"tags" type:"list"` - metadataSetTagsForResourceInput `json:"-" xml:"-"` -} - -type metadataSetTagsForResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3249,11 +2921,7 @@ type SetTagsForResourceOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataSetTagsForResourceOutput `json:"-" xml:"-"` -} - -type metadataSetTagsForResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3271,11 +2939,7 @@ type StartDataCollectionInput struct { // process. AssessmentArn *string `locationName:"assessmentArn" type:"string" required:"true"` - metadataStartDataCollectionInput `json:"-" xml:"-"` -} - -type metadataStartDataCollectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3292,11 +2956,7 @@ type StartDataCollectionOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataStartDataCollectionOutput `json:"-" xml:"-"` -} - -type metadataStartDataCollectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3314,11 +2974,7 @@ type StopDataCollectionInput struct { // process. AssessmentArn *string `locationName:"assessmentArn" type:"string" required:"true"` - metadataStopDataCollectionInput `json:"-" xml:"-"` -} - -type metadataStopDataCollectionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3335,11 +2991,7 @@ type StopDataCollectionOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataStopDataCollectionOutput `json:"-" xml:"-"` -} - -type metadataStopDataCollectionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3363,11 +3015,7 @@ type Tag struct { // The value assigned to a tag key. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3393,11 +3041,7 @@ type Telemetry struct { // that Inspector received from the agent. Status *string `locationName:"status" type:"string"` - metadataTelemetry `json:"-" xml:"-"` -} - -type metadataTelemetry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3418,11 +3062,7 @@ type TimestampRange struct { // The minimum value of the timestamp range. Minimum *time.Time `locationName:"minimum" type:"timestamp" timestampFormat:"unix"` - metadataTimestampRange `json:"-" xml:"-"` -} - -type metadataTimestampRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3445,11 +3085,7 @@ type UpdateApplicationInput struct { // The resource group ARN that you want to update. ResourceGroupArn *string `locationName:"resourceGroupArn" type:"string" required:"true"` - metadataUpdateApplicationInput `json:"-" xml:"-"` -} - -type metadataUpdateApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3466,11 +3102,7 @@ type UpdateApplicationOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataUpdateApplicationOutput `json:"-" xml:"-"` -} - -type metadataUpdateApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3494,11 +3126,7 @@ type UpdateAssessmentInput struct { // is 3600 seconds (one hour). The maximum value is 86400 seconds (one day). DurationInSeconds *int64 `locationName:"durationInSeconds" type:"integer" required:"true"` - metadataUpdateAssessmentInput `json:"-" xml:"-"` -} - -type metadataUpdateAssessmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3515,11 +3143,7 @@ type UpdateAssessmentOutput struct { // Confirmation details of the action performed. Message *string `locationName:"message" type:"string"` - metadataUpdateAssessmentOutput `json:"-" xml:"-"` -} - -type metadataUpdateAssessmentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/iot/api.go b/service/iot/api.go index 5632e6608ab..7567d9ebb99 100644 --- a/service/iot/api.go +++ b/service/iot/api.go @@ -1158,11 +1158,7 @@ type AcceptCertificateTransferInput struct { // Specifies whether the certificate is active. SetAsActive *bool `location:"querystring" locationName:"setAsActive" type:"boolean"` - metadataAcceptCertificateTransferInput `json:"-" xml:"-"` -} - -type metadataAcceptCertificateTransferInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1176,11 +1172,7 @@ func (s AcceptCertificateTransferInput) GoString() string { } type AcceptCertificateTransferOutput struct { - metadataAcceptCertificateTransferOutput `json:"-" xml:"-"` -} - -type metadataAcceptCertificateTransferOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1218,11 +1210,7 @@ type Action struct { // Publish to an SQS queue. Sqs *SqsAction `locationName:"sqs" type:"structure"` - metadataAction `json:"-" xml:"-"` -} - -type metadataAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1244,11 +1232,7 @@ type AttachPrincipalPolicyInput struct { // operation) or a Cognito ID. Principal *string `location:"header" locationName:"x-amzn-iot-principal" type:"string" required:"true"` - metadataAttachPrincipalPolicyInput `json:"-" xml:"-"` -} - -type metadataAttachPrincipalPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1262,11 +1246,7 @@ func (s AttachPrincipalPolicyInput) GoString() string { } type AttachPrincipalPolicyOutput struct { - metadataAttachPrincipalPolicyOutput `json:"-" xml:"-"` -} - -type metadataAttachPrincipalPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1287,11 +1267,7 @@ type AttachThingPrincipalInput struct { // The name of the thing. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataAttachThingPrincipalInput `json:"-" xml:"-"` -} - -type metadataAttachThingPrincipalInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1306,11 +1282,7 @@ func (s AttachThingPrincipalInput) GoString() string { // The output from the AttachThingPrincipal operation. type AttachThingPrincipalOutput struct { - metadataAttachThingPrincipalOutput `json:"-" xml:"-"` -} - -type metadataAttachThingPrincipalOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1332,11 +1304,7 @@ type AttributePayload struct { // For example: {\"attributes\":{\"string1\":\"string2\”}} Attributes map[string]*string `locationName:"attributes" type:"map"` - metadataAttributePayload `json:"-" xml:"-"` -} - -type metadataAttributePayload struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1354,11 +1322,7 @@ type CancelCertificateTransferInput struct { // The ID of the certificate. CertificateId *string `location:"uri" locationName:"certificateId" min:"64" type:"string" required:"true"` - metadataCancelCertificateTransferInput `json:"-" xml:"-"` -} - -type metadataCancelCertificateTransferInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1372,11 +1336,7 @@ func (s CancelCertificateTransferInput) GoString() string { } type CancelCertificateTransferOutput struct { - metadataCancelCertificateTransferOutput `json:"-" xml:"-"` -} - -type metadataCancelCertificateTransferOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1403,11 +1363,7 @@ type Certificate struct { // The status of the certificate. Status *string `locationName:"status" type:"string" enum:"CertificateStatus"` - metadataCertificate `json:"-" xml:"-"` -} - -type metadataCertificate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1443,11 +1399,7 @@ type CertificateDescription struct { // The status of the certificate. Status *string `locationName:"status" type:"string" enum:"CertificateStatus"` - metadataCertificateDescription `json:"-" xml:"-"` -} - -type metadataCertificateDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1468,11 +1420,7 @@ type CreateCertificateFromCsrInput struct { // Specifies whether the certificate is active. SetAsActive *bool `location:"querystring" locationName:"setAsActive" type:"boolean"` - metadataCreateCertificateFromCsrInput `json:"-" xml:"-"` -} - -type metadataCreateCertificateFromCsrInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1498,11 +1446,7 @@ type CreateCertificateFromCsrOutput struct { // The certificate data, in PEM format. CertificatePem *string `locationName:"certificatePem" type:"string"` - metadataCreateCertificateFromCsrOutput `json:"-" xml:"-"` -} - -type metadataCreateCertificateFromCsrOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1520,11 +1464,7 @@ type CreateKeysAndCertificateInput struct { // Specifies whether the certificate is active. SetAsActive *bool `location:"querystring" locationName:"setAsActive" type:"boolean"` - metadataCreateKeysAndCertificateInput `json:"-" xml:"-"` -} - -type metadataCreateKeysAndCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1552,11 +1492,7 @@ type CreateKeysAndCertificateOutput struct { // The generated key pair. KeyPair *KeyPair `locationName:"keyPair" type:"structure"` - metadataCreateKeysAndCertificateOutput `json:"-" xml:"-"` -} - -type metadataCreateKeysAndCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1578,11 +1514,7 @@ type CreatePolicyInput struct { // The policy name. PolicyName *string `location:"uri" locationName:"policyName" min:"1" type:"string" required:"true"` - metadataCreatePolicyInput `json:"-" xml:"-"` -} - -type metadataCreatePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1609,11 +1541,7 @@ type CreatePolicyOutput struct { // The policy version ID. PolicyVersionId *string `locationName:"policyVersionId" type:"string"` - metadataCreatePolicyOutput `json:"-" xml:"-"` -} - -type metadataCreatePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1637,11 +1565,7 @@ type CreatePolicyVersionInput struct { // Specifies whether the policy version is set as the default. SetAsDefault *bool `location:"querystring" locationName:"setAsDefault" type:"boolean"` - metadataCreatePolicyVersionInput `json:"-" xml:"-"` -} - -type metadataCreatePolicyVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1668,11 +1592,7 @@ type CreatePolicyVersionOutput struct { // The policy version ID. PolicyVersionId *string `locationName:"policyVersionId" type:"string"` - metadataCreatePolicyVersionOutput `json:"-" xml:"-"` -} - -type metadataCreatePolicyVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1694,11 +1614,7 @@ type CreateThingInput struct { // The name of the thing. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataCreateThingInput `json:"-" xml:"-"` -} - -type metadataCreateThingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1719,11 +1635,7 @@ type CreateThingOutput struct { // The name of the thing. ThingName *string `locationName:"thingName" min:"1" type:"string"` - metadataCreateThingOutput `json:"-" xml:"-"` -} - -type metadataCreateThingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1744,11 +1656,7 @@ type CreateTopicRuleInput struct { // The rule payload. TopicRulePayload *TopicRulePayload `locationName:"topicRulePayload" type:"structure" required:"true"` - metadataCreateTopicRuleInput `json:"-" xml:"-"` -} - -type metadataCreateTopicRuleInput struct { - SDKShapeTraits bool `type:"structure" payload:"TopicRulePayload"` + _ struct{} `type:"structure" payload:"TopicRulePayload"` } // String returns the string representation @@ -1762,11 +1670,7 @@ func (s CreateTopicRuleInput) GoString() string { } type CreateTopicRuleOutput struct { - metadataCreateTopicRuleOutput `json:"-" xml:"-"` -} - -type metadataCreateTopicRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1784,11 +1688,7 @@ type DeleteCertificateInput struct { // The ID of the certificate. CertificateId *string `location:"uri" locationName:"certificateId" min:"64" type:"string" required:"true"` - metadataDeleteCertificateInput `json:"-" xml:"-"` -} - -type metadataDeleteCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1802,11 +1702,7 @@ func (s DeleteCertificateInput) GoString() string { } type DeleteCertificateOutput struct { - metadataDeleteCertificateOutput `json:"-" xml:"-"` -} - -type metadataDeleteCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1824,11 +1720,7 @@ type DeletePolicyInput struct { // The name of the policy to delete. PolicyName *string `location:"uri" locationName:"policyName" min:"1" type:"string" required:"true"` - metadataDeletePolicyInput `json:"-" xml:"-"` -} - -type metadataDeletePolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1842,11 +1734,7 @@ func (s DeletePolicyInput) GoString() string { } type DeletePolicyOutput struct { - metadataDeletePolicyOutput `json:"-" xml:"-"` -} - -type metadataDeletePolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1867,11 +1755,7 @@ type DeletePolicyVersionInput struct { // The policy version ID. PolicyVersionId *string `location:"uri" locationName:"policyVersionId" type:"string" required:"true"` - metadataDeletePolicyVersionInput `json:"-" xml:"-"` -} - -type metadataDeletePolicyVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1885,11 +1769,7 @@ func (s DeletePolicyVersionInput) GoString() string { } type DeletePolicyVersionOutput struct { - metadataDeletePolicyVersionOutput `json:"-" xml:"-"` -} - -type metadataDeletePolicyVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1907,11 +1787,7 @@ type DeleteThingInput struct { // The thing name. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataDeleteThingInput `json:"-" xml:"-"` -} - -type metadataDeleteThingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1926,11 +1802,7 @@ func (s DeleteThingInput) GoString() string { // The output of the DeleteThing operation. type DeleteThingOutput struct { - metadataDeleteThingOutput `json:"-" xml:"-"` -} - -type metadataDeleteThingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1948,11 +1820,7 @@ type DeleteTopicRuleInput struct { // The name of the rule. RuleName *string `location:"uri" locationName:"ruleName" min:"1" type:"string" required:"true"` - metadataDeleteTopicRuleInput `json:"-" xml:"-"` -} - -type metadataDeleteTopicRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1966,11 +1834,7 @@ func (s DeleteTopicRuleInput) GoString() string { } type DeleteTopicRuleOutput struct { - metadataDeleteTopicRuleOutput `json:"-" xml:"-"` -} - -type metadataDeleteTopicRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1988,11 +1852,7 @@ type DescribeCertificateInput struct { // The ID of the certificate. CertificateId *string `location:"uri" locationName:"certificateId" min:"64" type:"string" required:"true"` - metadataDescribeCertificateInput `json:"-" xml:"-"` -} - -type metadataDescribeCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2010,11 +1870,7 @@ type DescribeCertificateOutput struct { // The description of the certificate. CertificateDescription *CertificateDescription `locationName:"certificateDescription" type:"structure"` - metadataDescribeCertificateOutput `json:"-" xml:"-"` -} - -type metadataDescribeCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2029,11 +1885,7 @@ func (s DescribeCertificateOutput) GoString() string { // The input for the DescribeEndpoint operation. type DescribeEndpointInput struct { - metadataDescribeEndpointInput `json:"-" xml:"-"` -} - -type metadataDescribeEndpointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2051,11 +1903,7 @@ type DescribeEndpointOutput struct { // The address. EndpointAddress *string `locationName:"endpointAddress" type:"string"` - metadataDescribeEndpointOutput `json:"-" xml:"-"` -} - -type metadataDescribeEndpointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2073,11 +1921,7 @@ type DescribeThingInput struct { // The name of the thing. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataDescribeThingInput `json:"-" xml:"-"` -} - -type metadataDescribeThingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2104,11 +1948,7 @@ type DescribeThingOutput struct { // The name of the thing. ThingName *string `locationName:"thingName" min:"1" type:"string"` - metadataDescribeThingOutput `json:"-" xml:"-"` -} - -type metadataDescribeThingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2132,11 +1972,7 @@ type DetachPrincipalPolicyInput struct { // is a Cognito identity specify the identity ID. Principal *string `location:"header" locationName:"x-amzn-iot-principal" type:"string" required:"true"` - metadataDetachPrincipalPolicyInput `json:"-" xml:"-"` -} - -type metadataDetachPrincipalPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2150,11 +1986,7 @@ func (s DetachPrincipalPolicyInput) GoString() string { } type DetachPrincipalPolicyOutput struct { - metadataDetachPrincipalPolicyOutput `json:"-" xml:"-"` -} - -type metadataDetachPrincipalPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2175,11 +2007,7 @@ type DetachThingPrincipalInput struct { // The name of the thing. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataDetachThingPrincipalInput `json:"-" xml:"-"` -} - -type metadataDetachThingPrincipalInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2194,11 +2022,7 @@ func (s DetachThingPrincipalInput) GoString() string { // The output from the DetachThingPrincipal operation. type DetachThingPrincipalOutput struct { - metadataDetachThingPrincipalOutput `json:"-" xml:"-"` -} - -type metadataDetachThingPrincipalOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2250,11 +2074,7 @@ type DynamoDBAction struct { // The name of the DynamoDB table. TableName *string `locationName:"tableName" type:"string" required:"true"` - metadataDynamoDBAction `json:"-" xml:"-"` -} - -type metadataDynamoDBAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2272,11 +2092,7 @@ type FirehoseAction struct { RoleArn *string `locationName:"roleArn" type:"string" required:"true"` - metadataFirehoseAction `json:"-" xml:"-"` -} - -type metadataFirehoseAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2291,11 +2107,7 @@ func (s FirehoseAction) GoString() string { // The input for the GetLoggingOptions operation. type GetLoggingOptionsInput struct { - metadataGetLoggingOptionsInput `json:"-" xml:"-"` -} - -type metadataGetLoggingOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2316,11 +2128,7 @@ type GetLoggingOptionsOutput struct { // The ARN of the IAM role that grants access. RoleArn *string `locationName:"roleArn" type:"string"` - metadataGetLoggingOptionsOutput `json:"-" xml:"-"` -} - -type metadataGetLoggingOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2338,11 +2146,7 @@ type GetPolicyInput struct { // The name of the policy. PolicyName *string `location:"uri" locationName:"policyName" min:"1" type:"string" required:"true"` - metadataGetPolicyInput `json:"-" xml:"-"` -} - -type metadataGetPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2369,11 +2173,7 @@ type GetPolicyOutput struct { // The policy name. PolicyName *string `locationName:"policyName" min:"1" type:"string"` - metadataGetPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2394,11 +2194,7 @@ type GetPolicyVersionInput struct { // The policy version ID. PolicyVersionId *string `location:"uri" locationName:"policyVersionId" type:"string" required:"true"` - metadataGetPolicyVersionInput `json:"-" xml:"-"` -} - -type metadataGetPolicyVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2428,11 +2224,7 @@ type GetPolicyVersionOutput struct { // The policy version ID. PolicyVersionId *string `locationName:"policyVersionId" type:"string"` - metadataGetPolicyVersionOutput `json:"-" xml:"-"` -} - -type metadataGetPolicyVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2450,11 +2242,7 @@ type GetTopicRuleInput struct { // The name of the rule. RuleName *string `location:"uri" locationName:"ruleName" min:"1" type:"string" required:"true"` - metadataGetTopicRuleInput `json:"-" xml:"-"` -} - -type metadataGetTopicRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2472,11 +2260,7 @@ type GetTopicRuleOutput struct { // The rule. Rule *TopicRule `locationName:"rule" type:"structure"` - metadataGetTopicRuleOutput `json:"-" xml:"-"` -} - -type metadataGetTopicRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2497,11 +2281,7 @@ type KeyPair struct { // The public key. PublicKey *string `min:"1" type:"string"` - metadataKeyPair `json:"-" xml:"-"` -} - -type metadataKeyPair struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2525,11 +2305,7 @@ type KinesisAction struct { // The name of the Kinesis stream. StreamName *string `locationName:"streamName" type:"string" required:"true"` - metadataKinesisAction `json:"-" xml:"-"` -} - -type metadataKinesisAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2547,11 +2323,7 @@ type LambdaAction struct { // The ARN of the Lambda function. FunctionArn *string `locationName:"functionArn" type:"string" required:"true"` - metadataLambdaAction `json:"-" xml:"-"` -} - -type metadataLambdaAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2576,11 +2348,7 @@ type ListCertificatesInput struct { // The result page size. PageSize *int64 `location:"querystring" locationName:"pageSize" min:"1" type:"integer"` - metadataListCertificatesInput `json:"-" xml:"-"` -} - -type metadataListCertificatesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2602,11 +2370,7 @@ type ListCertificatesOutput struct { // results. NextMarker *string `locationName:"nextMarker" type:"string"` - metadataListCertificatesOutput `json:"-" xml:"-"` -} - -type metadataListCertificatesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2631,11 +2395,7 @@ type ListPoliciesInput struct { // The result page size. PageSize *int64 `location:"querystring" locationName:"pageSize" min:"1" type:"integer"` - metadataListPoliciesInput `json:"-" xml:"-"` -} - -type metadataListPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2657,11 +2417,7 @@ type ListPoliciesOutput struct { // The descriptions of the policies. Policies []*Policy `locationName:"policies" type:"list"` - metadataListPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2679,11 +2435,7 @@ type ListPolicyVersionsInput struct { // The policy name. PolicyName *string `location:"uri" locationName:"policyName" min:"1" type:"string" required:"true"` - metadataListPolicyVersionsInput `json:"-" xml:"-"` -} - -type metadataListPolicyVersionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2701,11 +2453,7 @@ type ListPolicyVersionsOutput struct { // The policy versions. PolicyVersions []*PolicyVersion `locationName:"policyVersions" type:"list"` - metadataListPolicyVersionsOutput `json:"-" xml:"-"` -} - -type metadataListPolicyVersionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2733,11 +2481,7 @@ type ListPrincipalPoliciesInput struct { // The principal. Principal *string `location:"header" locationName:"x-amzn-iot-principal" type:"string" required:"true"` - metadataListPrincipalPoliciesInput `json:"-" xml:"-"` -} - -type metadataListPrincipalPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2759,11 +2503,7 @@ type ListPrincipalPoliciesOutput struct { // The policies. Policies []*Policy `locationName:"policies" type:"list"` - metadataListPrincipalPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListPrincipalPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2785,11 +2525,7 @@ type ListPrincipalThingsInput struct { // The principal. Principal *string `location:"header" locationName:"x-amzn-principal" type:"string" required:"true"` - metadataListPrincipalThingsInput `json:"-" xml:"-"` -} - -type metadataListPrincipalThingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2810,11 +2546,7 @@ type ListPrincipalThingsOutput struct { // The things. Things []*string `locationName:"things" type:"list"` - metadataListPrincipalThingsOutput `json:"-" xml:"-"` -} - -type metadataListPrincipalThingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2832,11 +2564,7 @@ type ListThingPrincipalsInput struct { // The name of the thing. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataListThingPrincipalsInput `json:"-" xml:"-"` -} - -type metadataListThingPrincipalsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2854,11 +2582,7 @@ type ListThingPrincipalsOutput struct { // The principals. Principals []*string `locationName:"principals" type:"list"` - metadataListThingPrincipalsOutput `json:"-" xml:"-"` -} - -type metadataListThingPrincipalsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2885,11 +2609,7 @@ type ListThingsInput struct { // The token for the next value. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` - metadataListThingsInput `json:"-" xml:"-"` -} - -type metadataListThingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2910,11 +2630,7 @@ type ListThingsOutput struct { // The things. Things []*ThingAttribute `locationName:"things" type:"list"` - metadataListThingsOutput `json:"-" xml:"-"` -} - -type metadataListThingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2941,11 +2657,7 @@ type ListTopicRulesInput struct { // The topic. Topic *string `location:"querystring" locationName:"topic" type:"string"` - metadataListTopicRulesInput `json:"-" xml:"-"` -} - -type metadataListTopicRulesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2966,11 +2678,7 @@ type ListTopicRulesOutput struct { // The rules. Rules []*TopicRuleListItem `locationName:"rules" type:"list"` - metadataListTopicRulesOutput `json:"-" xml:"-"` -} - -type metadataListTopicRulesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2991,11 +2699,7 @@ type LoggingOptionsPayload struct { // The ARN of the IAM role that grants access. RoleArn *string `locationName:"roleArn" type:"string" required:"true"` - metadataLoggingOptionsPayload `json:"-" xml:"-"` -} - -type metadataLoggingOptionsPayload struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3016,11 +2720,7 @@ type Policy struct { // The policy name. PolicyName *string `locationName:"policyName" min:"1" type:"string"` - metadataPolicy `json:"-" xml:"-"` -} - -type metadataPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3044,11 +2744,7 @@ type PolicyVersion struct { // The policy version ID. VersionId *string `locationName:"versionId" type:"string"` - metadataPolicyVersion `json:"-" xml:"-"` -} - -type metadataPolicyVersion struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3066,11 +2762,7 @@ type RejectCertificateTransferInput struct { // The ID of the certificate. CertificateId *string `location:"uri" locationName:"certificateId" min:"64" type:"string" required:"true"` - metadataRejectCertificateTransferInput `json:"-" xml:"-"` -} - -type metadataRejectCertificateTransferInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3084,11 +2776,7 @@ func (s RejectCertificateTransferInput) GoString() string { } type RejectCertificateTransferOutput struct { - metadataRejectCertificateTransferOutput `json:"-" xml:"-"` -} - -type metadataRejectCertificateTransferOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3109,11 +2797,7 @@ type ReplaceTopicRuleInput struct { // The rule payload. TopicRulePayload *TopicRulePayload `locationName:"topicRulePayload" type:"structure" required:"true"` - metadataReplaceTopicRuleInput `json:"-" xml:"-"` -} - -type metadataReplaceTopicRuleInput struct { - SDKShapeTraits bool `type:"structure" payload:"TopicRulePayload"` + _ struct{} `type:"structure" payload:"TopicRulePayload"` } // String returns the string representation @@ -3127,11 +2811,7 @@ func (s ReplaceTopicRuleInput) GoString() string { } type ReplaceTopicRuleOutput struct { - metadataReplaceTopicRuleOutput `json:"-" xml:"-"` -} - -type metadataReplaceTopicRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3152,11 +2832,7 @@ type RepublishAction struct { // The name of the MQTT topic. Topic *string `locationName:"topic" type:"string" required:"true"` - metadataRepublishAction `json:"-" xml:"-"` -} - -type metadataRepublishAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3180,11 +2856,7 @@ type S3Action struct { // The ARN of the IAM role that grants access. RoleArn *string `locationName:"roleArn" type:"string" required:"true"` - metadataS3Action `json:"-" xml:"-"` -} - -type metadataS3Action struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3205,11 +2877,7 @@ type SetDefaultPolicyVersionInput struct { // The policy version ID. PolicyVersionId *string `location:"uri" locationName:"policyVersionId" type:"string" required:"true"` - metadataSetDefaultPolicyVersionInput `json:"-" xml:"-"` -} - -type metadataSetDefaultPolicyVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3223,11 +2891,7 @@ func (s SetDefaultPolicyVersionInput) GoString() string { } type SetDefaultPolicyVersionOutput struct { - metadataSetDefaultPolicyVersionOutput `json:"-" xml:"-"` -} - -type metadataSetDefaultPolicyVersionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3245,11 +2909,7 @@ type SetLoggingOptionsInput struct { // The logging options payload. LoggingOptionsPayload *LoggingOptionsPayload `locationName:"loggingOptionsPayload" type:"structure"` - metadataSetLoggingOptionsInput `json:"-" xml:"-"` -} - -type metadataSetLoggingOptionsInput struct { - SDKShapeTraits bool `type:"structure" payload:"LoggingOptionsPayload"` + _ struct{} `type:"structure" payload:"LoggingOptionsPayload"` } // String returns the string representation @@ -3263,11 +2923,7 @@ func (s SetLoggingOptionsInput) GoString() string { } type SetLoggingOptionsOutput struct { - metadataSetLoggingOptionsOutput `json:"-" xml:"-"` -} - -type metadataSetLoggingOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3288,11 +2944,7 @@ type SnsAction struct { // The ARN of the SNS topic. TargetArn *string `locationName:"targetArn" type:"string" required:"true"` - metadataSnsAction `json:"-" xml:"-"` -} - -type metadataSnsAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3316,11 +2968,7 @@ type SqsAction struct { // Specifies whether to use Base64 encoding. UseBase64 *bool `locationName:"useBase64" type:"boolean"` - metadataSqsAction `json:"-" xml:"-"` -} - -type metadataSqsAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3341,11 +2989,7 @@ type ThingAttribute struct { // The name of the thing. ThingName *string `locationName:"thingName" min:"1" type:"string"` - metadataThingAttribute `json:"-" xml:"-"` -} - -type metadataThingAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3379,11 +3023,7 @@ type TopicRule struct { // lines, be sure to escape the newline characters properly. Sql *string `locationName:"sql" type:"string"` - metadataTopicRule `json:"-" xml:"-"` -} - -type metadataTopicRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3410,11 +3050,7 @@ type TopicRuleListItem struct { // The pattern for the topic names that apply. TopicPattern *string `locationName:"topicPattern" type:"string"` - metadataTopicRuleListItem `json:"-" xml:"-"` -} - -type metadataTopicRuleListItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3443,11 +3079,7 @@ type TopicRulePayload struct { // in the AWS IoT Developer Guide. Sql *string `locationName:"sql" type:"string" required:"true"` - metadataTopicRulePayload `json:"-" xml:"-"` -} - -type metadataTopicRulePayload struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3468,11 +3100,7 @@ type TransferCertificateInput struct { // The AWS account. TargetAwsAccount *string `location:"querystring" locationName:"targetAwsAccount" type:"string" required:"true"` - metadataTransferCertificateInput `json:"-" xml:"-"` -} - -type metadataTransferCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3490,11 +3118,7 @@ type TransferCertificateOutput struct { // The ARN of the certificate. TransferredCertificateArn *string `locationName:"transferredCertificateArn" type:"string"` - metadataTransferCertificateOutput `json:"-" xml:"-"` -} - -type metadataTransferCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3515,11 +3139,7 @@ type UpdateCertificateInput struct { // The new status. NewStatus *string `location:"querystring" locationName:"newStatus" type:"string" required:"true" enum:"CertificateStatus"` - metadataUpdateCertificateInput `json:"-" xml:"-"` -} - -type metadataUpdateCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3533,11 +3153,7 @@ func (s UpdateCertificateInput) GoString() string { } type UpdateCertificateOutput struct { - metadataUpdateCertificateOutput `json:"-" xml:"-"` -} - -type metadataUpdateCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3560,11 +3176,7 @@ type UpdateThingInput struct { // The thing name. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataUpdateThingInput `json:"-" xml:"-"` -} - -type metadataUpdateThingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3579,11 +3191,7 @@ func (s UpdateThingInput) GoString() string { // The output from the UpdateThing operation. type UpdateThingOutput struct { - metadataUpdateThingOutput `json:"-" xml:"-"` -} - -type metadataUpdateThingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/iotdataplane/api.go b/service/iotdataplane/api.go index 759ce9fb032..f6e076a0c99 100644 --- a/service/iotdataplane/api.go +++ b/service/iotdataplane/api.go @@ -133,11 +133,7 @@ type DeleteThingShadowInput struct { // The name of the thing. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataDeleteThingShadowInput `json:"-" xml:"-"` -} - -type metadataDeleteThingShadowInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -155,11 +151,7 @@ type DeleteThingShadowOutput struct { // The state information, in JSON format. Payload []byte `locationName:"payload" type:"blob" required:"true"` - metadataDeleteThingShadowOutput `json:"-" xml:"-"` -} - -type metadataDeleteThingShadowOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Payload"` + _ struct{} `type:"structure" payload:"Payload"` } // String returns the string representation @@ -177,11 +169,7 @@ type GetThingShadowInput struct { // The name of the thing. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataGetThingShadowInput `json:"-" xml:"-"` -} - -type metadataGetThingShadowInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -199,11 +187,7 @@ type GetThingShadowOutput struct { // The state information, in JSON format. Payload []byte `locationName:"payload" type:"blob"` - metadataGetThingShadowOutput `json:"-" xml:"-"` -} - -type metadataGetThingShadowOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Payload"` + _ struct{} `type:"structure" payload:"Payload"` } // String returns the string representation @@ -227,11 +211,7 @@ type PublishInput struct { // The name of the MQTT topic. Topic *string `location:"uri" locationName:"topic" type:"string" required:"true"` - metadataPublishInput `json:"-" xml:"-"` -} - -type metadataPublishInput struct { - SDKShapeTraits bool `type:"structure" payload:"Payload"` + _ struct{} `type:"structure" payload:"Payload"` } // String returns the string representation @@ -245,11 +225,7 @@ func (s PublishInput) GoString() string { } type PublishOutput struct { - metadataPublishOutput `json:"-" xml:"-"` -} - -type metadataPublishOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -270,11 +246,7 @@ type UpdateThingShadowInput struct { // The name of the thing. ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` - metadataUpdateThingShadowInput `json:"-" xml:"-"` -} - -type metadataUpdateThingShadowInput struct { - SDKShapeTraits bool `type:"structure" payload:"Payload"` + _ struct{} `type:"structure" payload:"Payload"` } // String returns the string representation @@ -292,11 +264,7 @@ type UpdateThingShadowOutput struct { // The state information, in JSON format. Payload []byte `locationName:"payload" type:"blob"` - metadataUpdateThingShadowOutput `json:"-" xml:"-"` -} - -type metadataUpdateThingShadowOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Payload"` + _ struct{} `type:"structure" payload:"Payload"` } // String returns the string representation diff --git a/service/kinesis/api.go b/service/kinesis/api.go index 19d0cfabc65..af7b515e139 100644 --- a/service/kinesis/api.go +++ b/service/kinesis/api.go @@ -825,11 +825,7 @@ type AddTagsToStreamInput struct { // The set of key-value pairs to use to create the tags. Tags map[string]*string `min:"1" type:"map" required:"true"` - metadataAddTagsToStreamInput `json:"-" xml:"-"` -} - -type metadataAddTagsToStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -843,11 +839,7 @@ func (s AddTagsToStreamInput) GoString() string { } type AddTagsToStreamOutput struct { - metadataAddTagsToStreamOutput `json:"-" xml:"-"` -} - -type metadataAddTagsToStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -876,11 +868,7 @@ type CreateStreamInput struct { // have the same name. StreamName *string `min:"1" type:"string" required:"true"` - metadataCreateStreamInput `json:"-" xml:"-"` -} - -type metadataCreateStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -894,11 +882,7 @@ func (s CreateStreamInput) GoString() string { } type CreateStreamOutput struct { - metadataCreateStreamOutput `json:"-" xml:"-"` -} - -type metadataCreateStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -920,11 +904,7 @@ type DecreaseStreamRetentionPeriodInput struct { // The name of the stream to modify. StreamName *string `min:"1" type:"string" required:"true"` - metadataDecreaseStreamRetentionPeriodInput `json:"-" xml:"-"` -} - -type metadataDecreaseStreamRetentionPeriodInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -938,11 +918,7 @@ func (s DecreaseStreamRetentionPeriodInput) GoString() string { } type DecreaseStreamRetentionPeriodOutput struct { - metadataDecreaseStreamRetentionPeriodOutput `json:"-" xml:"-"` -} - -type metadataDecreaseStreamRetentionPeriodOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -960,11 +936,7 @@ type DeleteStreamInput struct { // The name of the stream to delete. StreamName *string `min:"1" type:"string" required:"true"` - metadataDeleteStreamInput `json:"-" xml:"-"` -} - -type metadataDeleteStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -978,11 +950,7 @@ func (s DeleteStreamInput) GoString() string { } type DeleteStreamOutput struct { - metadataDeleteStreamOutput `json:"-" xml:"-"` -} - -type metadataDeleteStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1006,11 +974,7 @@ type DescribeStreamInput struct { // The name of the stream to describe. StreamName *string `min:"1" type:"string" required:"true"` - metadataDescribeStreamInput `json:"-" xml:"-"` -} - -type metadataDescribeStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1029,11 +993,7 @@ type DescribeStreamOutput struct { // that comprise the stream, and states whether there are more shards available. StreamDescription *StreamDescription `type:"structure" required:"true"` - metadataDescribeStreamOutput `json:"-" xml:"-"` -} - -type metadataDescribeStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1057,11 +1017,7 @@ type GetRecordsInput struct { // number of a data record in the shard. ShardIterator *string `min:"1" type:"string" required:"true"` - metadataGetRecordsInput `json:"-" xml:"-"` -} - -type metadataGetRecordsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1090,11 +1046,7 @@ type GetRecordsOutput struct { // The data records retrieved from the shard. Records []*Record `type:"list" required:"true"` - metadataGetRecordsOutput `json:"-" xml:"-"` -} - -type metadataGetRecordsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1133,11 +1085,7 @@ type GetShardIteratorInput struct { // The name of the stream. StreamName *string `min:"1" type:"string" required:"true"` - metadataGetShardIteratorInput `json:"-" xml:"-"` -} - -type metadataGetShardIteratorInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1157,11 +1105,7 @@ type GetShardIteratorOutput struct { // record in a shard. ShardIterator *string `min:"1" type:"string"` - metadataGetShardIteratorOutput `json:"-" xml:"-"` -} - -type metadataGetShardIteratorOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1183,11 +1127,7 @@ type HashKeyRange struct { // The starting hash key of the hash key range. StartingHashKey *string `type:"string" required:"true"` - metadataHashKeyRange `json:"-" xml:"-"` -} - -type metadataHashKeyRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1209,11 +1149,7 @@ type IncreaseStreamRetentionPeriodInput struct { // The name of the stream to modify. StreamName *string `min:"1" type:"string" required:"true"` - metadataIncreaseStreamRetentionPeriodInput `json:"-" xml:"-"` -} - -type metadataIncreaseStreamRetentionPeriodInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1227,11 +1163,7 @@ func (s IncreaseStreamRetentionPeriodInput) GoString() string { } type IncreaseStreamRetentionPeriodOutput struct { - metadataIncreaseStreamRetentionPeriodOutput `json:"-" xml:"-"` -} - -type metadataIncreaseStreamRetentionPeriodOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1252,11 +1184,7 @@ type ListStreamsInput struct { // The maximum number of streams to list. Limit *int64 `min:"1" type:"integer"` - metadataListStreamsInput `json:"-" xml:"-"` -} - -type metadataListStreamsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1278,11 +1206,7 @@ type ListStreamsOutput struct { // the ListStreams request. StreamNames []*string `type:"list" required:"true"` - metadataListStreamsOutput `json:"-" xml:"-"` -} - -type metadataListStreamsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1309,11 +1233,7 @@ type ListTagsForStreamInput struct { // The name of the stream. StreamName *string `min:"1" type:"string" required:"true"` - metadataListTagsForStreamInput `json:"-" xml:"-"` -} - -type metadataListTagsForStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1336,11 +1256,7 @@ type ListTagsForStreamOutput struct { // ExclusiveStartTagKey and up to the specified Limit. Tags []*Tag `type:"list" required:"true"` - metadataListTagsForStreamOutput `json:"-" xml:"-"` -} - -type metadataListTagsForStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1364,11 +1280,7 @@ type MergeShardsInput struct { // The name of the stream for the merge. StreamName *string `min:"1" type:"string" required:"true"` - metadataMergeShardsInput `json:"-" xml:"-"` -} - -type metadataMergeShardsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1382,11 +1294,7 @@ func (s MergeShardsInput) GoString() string { } type MergeShardsOutput struct { - metadataMergeShardsOutput `json:"-" xml:"-"` -} - -type metadataMergeShardsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1431,11 +1339,7 @@ type PutRecordInput struct { // The name of the stream to put the data record into. StreamName *string `min:"1" type:"string" required:"true"` - metadataPutRecordInput `json:"-" xml:"-"` -} - -type metadataPutRecordInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1459,11 +1363,7 @@ type PutRecordOutput struct { // The shard ID of the shard where the data record was placed. ShardId *string `min:"1" type:"string" required:"true"` - metadataPutRecordOutput `json:"-" xml:"-"` -} - -type metadataPutRecordOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1484,11 +1384,7 @@ type PutRecordsInput struct { // The stream name associated with the request. StreamName *string `min:"1" type:"string" required:"true"` - metadataPutRecordsInput `json:"-" xml:"-"` -} - -type metadataPutRecordsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1513,11 +1409,7 @@ type PutRecordsOutput struct { // ErrorCode and ErrorMessage in the result. Records []*PutRecordsResultEntry `min:"1" type:"list" required:"true"` - metadataPutRecordsOutput `json:"-" xml:"-"` -} - -type metadataPutRecordsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1552,11 +1444,7 @@ type PutRecordsRequestEntry struct { // within the stream. PartitionKey *string `min:"1" type:"string" required:"true"` - metadataPutRecordsRequestEntry `json:"-" xml:"-"` -} - -type metadataPutRecordsRequestEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1591,11 +1479,7 @@ type PutRecordsResultEntry struct { // The shard ID for an individual record result. ShardId *string `min:"1" type:"string"` - metadataPutRecordsResultEntry `json:"-" xml:"-"` -} - -type metadataPutRecordsResultEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1627,11 +1511,7 @@ type Record struct { // The unique identifier of the record in the stream. SequenceNumber *string `type:"string" required:"true"` - metadataRecord `json:"-" xml:"-"` -} - -type metadataRecord struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1652,11 +1532,7 @@ type RemoveTagsFromStreamInput struct { // A list of tag keys. Each corresponding tag is removed from the stream. TagKeys []*string `min:"1" type:"list" required:"true"` - metadataRemoveTagsFromStreamInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromStreamInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1670,11 +1546,7 @@ func (s RemoveTagsFromStreamInput) GoString() string { } type RemoveTagsFromStreamOutput struct { - metadataRemoveTagsFromStreamOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromStreamOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1696,11 +1568,7 @@ type SequenceNumberRange struct { // The starting sequence number for the range. StartingSequenceNumber *string `type:"string" required:"true"` - metadataSequenceNumberRange `json:"-" xml:"-"` -} - -type metadataSequenceNumberRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1731,11 +1599,7 @@ type Shard struct { // The unique identifier of the shard within the Amazon Kinesis stream. ShardId *string `min:"1" type:"string" required:"true"` - metadataShard `json:"-" xml:"-"` -} - -type metadataShard struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1765,11 +1629,7 @@ type SplitShardInput struct { // The name of the stream for the shard split. StreamName *string `min:"1" type:"string" required:"true"` - metadataSplitShardInput `json:"-" xml:"-"` -} - -type metadataSplitShardInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1783,11 +1643,7 @@ func (s SplitShardInput) GoString() string { } type SplitShardOutput struct { - metadataSplitShardOutput `json:"-" xml:"-"` -} - -type metadataSplitShardOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1831,11 +1687,7 @@ type StreamDescription struct { // the UPDATING state. StreamStatus *string `type:"string" required:"true" enum:"StreamStatus"` - metadataStreamDescription `json:"-" xml:"-"` -} - -type metadataStreamDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1859,11 +1711,7 @@ type Tag struct { // space, _ . / = + - % @ Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/kms/api.go b/service/kms/api.go index 5cbb9e8bbde..d8121a2ec76 100644 --- a/service/kms/api.go +++ b/service/kms/api.go @@ -1000,11 +1000,7 @@ type AliasListEntry struct { // String that contains the key identifier pointed to by the alias. TargetKeyId *string `min:"1" type:"string"` - metadataAliasListEntry `json:"-" xml:"-"` -} - -type metadataAliasListEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1030,11 +1026,7 @@ type CancelKeyDeletionInput struct { // DescribeKey. KeyId *string `min:"1" type:"string" required:"true"` - metadataCancelKeyDeletionInput `json:"-" xml:"-"` -} - -type metadataCancelKeyDeletionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1051,11 +1043,7 @@ type CancelKeyDeletionOutput struct { // The unique identifier of the master key for which deletion is canceled. KeyId *string `min:"1" type:"string"` - metadataCancelKeyDeletionOutput `json:"-" xml:"-"` -} - -type metadataCancelKeyDeletionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1080,11 +1068,7 @@ type CreateAliasInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 TargetKeyId *string `min:"1" type:"string" required:"true"` - metadataCreateAliasInput `json:"-" xml:"-"` -} - -type metadataCreateAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1098,11 +1082,7 @@ func (s CreateAliasInput) GoString() string { } type CreateAliasOutput struct { - metadataCreateAliasOutput `json:"-" xml:"-"` -} - -type metadataCreateAliasOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1179,11 +1159,7 @@ type CreateGrantInput struct { // in the Example ARNs section of the AWS General Reference. RetiringPrincipal *string `min:"1" type:"string"` - metadataCreateGrantInput `json:"-" xml:"-"` -} - -type metadataCreateGrantInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1208,11 +1184,7 @@ type CreateGrantOutput struct { // in the AWS Key Management Service Developer Guide. GrantToken *string `min:"1" type:"string"` - metadataCreateGrantOutput `json:"-" xml:"-"` -} - -type metadataCreateGrantOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1238,11 +1210,7 @@ type CreateKeyInput struct { // The key is the root of trust. The policy size limit is 32 KiB (32768 bytes). Policy *string `min:"1" type:"string"` - metadataCreateKeyInput `json:"-" xml:"-"` -} - -type metadataCreateKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1259,11 +1227,7 @@ type CreateKeyOutput struct { // Metadata associated with the key. KeyMetadata *KeyMetadata `type:"structure"` - metadataCreateKeyOutput `json:"-" xml:"-"` -} - -type metadataCreateKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1291,11 +1255,7 @@ type DecryptInput struct { // in the AWS Key Management Service Developer Guide. GrantTokens []*string `type:"list"` - metadataDecryptInput `json:"-" xml:"-"` -} - -type metadataDecryptInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1317,11 +1277,7 @@ type DecryptOutput struct { // master key is not available or if you didn't have permission to use it. Plaintext []byte `min:"1" type:"blob"` - metadataDecryptOutput `json:"-" xml:"-"` -} - -type metadataDecryptOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1339,11 +1295,7 @@ type DeleteAliasInput struct { // by a forward slash (alias/). Aliases that begin with "alias/AWS" are reserved. AliasName *string `min:"1" type:"string" required:"true"` - metadataDeleteAliasInput `json:"-" xml:"-"` -} - -type metadataDeleteAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1357,11 +1309,7 @@ func (s DeleteAliasInput) GoString() string { } type DeleteAliasOutput struct { - metadataDeleteAliasOutput `json:"-" xml:"-"` -} - -type metadataDeleteAliasOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1389,11 +1337,7 @@ type DescribeKeyInput struct { // Name Example - alias/MyAliasName KeyId *string `min:"1" type:"string" required:"true"` - metadataDescribeKeyInput `json:"-" xml:"-"` -} - -type metadataDescribeKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1410,11 +1354,7 @@ type DescribeKeyOutput struct { // Metadata associated with the key. KeyMetadata *KeyMetadata `type:"structure"` - metadataDescribeKeyOutput `json:"-" xml:"-"` -} - -type metadataDescribeKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1434,11 +1374,7 @@ type DisableKeyInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 KeyId *string `min:"1" type:"string" required:"true"` - metadataDisableKeyInput `json:"-" xml:"-"` -} - -type metadataDisableKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1452,11 +1388,7 @@ func (s DisableKeyInput) GoString() string { } type DisableKeyOutput struct { - metadataDisableKeyOutput `json:"-" xml:"-"` -} - -type metadataDisableKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1476,11 +1408,7 @@ type DisableKeyRotationInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 KeyId *string `min:"1" type:"string" required:"true"` - metadataDisableKeyRotationInput `json:"-" xml:"-"` -} - -type metadataDisableKeyRotationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1494,11 +1422,7 @@ func (s DisableKeyRotationInput) GoString() string { } type DisableKeyRotationOutput struct { - metadataDisableKeyRotationOutput `json:"-" xml:"-"` -} - -type metadataDisableKeyRotationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1518,11 +1442,7 @@ type EnableKeyInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 KeyId *string `min:"1" type:"string" required:"true"` - metadataEnableKeyInput `json:"-" xml:"-"` -} - -type metadataEnableKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1536,11 +1456,7 @@ func (s EnableKeyInput) GoString() string { } type EnableKeyOutput struct { - metadataEnableKeyOutput `json:"-" xml:"-"` -} - -type metadataEnableKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1560,11 +1476,7 @@ type EnableKeyRotationInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 KeyId *string `min:"1" type:"string" required:"true"` - metadataEnableKeyRotationInput `json:"-" xml:"-"` -} - -type metadataEnableKeyRotationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1578,11 +1490,7 @@ func (s EnableKeyRotationInput) GoString() string { } type EnableKeyRotationOutput struct { - metadataEnableKeyRotationOutput `json:"-" xml:"-"` -} - -type metadataEnableKeyRotationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1619,11 +1527,7 @@ type EncryptInput struct { // Data to be encrypted. Plaintext []byte `min:"1" type:"blob" required:"true"` - metadataEncryptInput `json:"-" xml:"-"` -} - -type metadataEncryptInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1644,11 +1548,7 @@ type EncryptOutput struct { // The ID of the key used during encryption. KeyId *string `min:"1" type:"string"` - metadataEncryptOutput `json:"-" xml:"-"` -} - -type metadataEncryptOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1690,11 +1590,7 @@ type GenerateDataKeyInput struct { // use the KeySpec parameter instead. NumberOfBytes *int64 `min:"1" type:"integer"` - metadataGenerateDataKeyInput `json:"-" xml:"-"` -} - -type metadataGenerateDataKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1726,11 +1622,7 @@ type GenerateDataKeyOutput struct { // and then remove it from memory as soon as possible. Plaintext []byte `min:"1" type:"blob"` - metadataGenerateDataKeyOutput `json:"-" xml:"-"` -} - -type metadataGenerateDataKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1771,11 +1663,7 @@ type GenerateDataKeyWithoutPlaintextInput struct { // instead. NumberOfBytes *int64 `min:"1" type:"integer"` - metadataGenerateDataKeyWithoutPlaintextInput `json:"-" xml:"-"` -} - -type metadataGenerateDataKeyWithoutPlaintextInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1800,11 +1688,7 @@ type GenerateDataKeyWithoutPlaintextOutput struct { // copy of the data key. KeyId *string `min:"1" type:"string"` - metadataGenerateDataKeyWithoutPlaintextOutput `json:"-" xml:"-"` -} - -type metadataGenerateDataKeyWithoutPlaintextOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1822,11 +1706,7 @@ type GenerateRandomInput struct { // 128, 256, 512, 1024 and so on. The current limit is 1024 bytes. NumberOfBytes *int64 `min:"1" type:"integer"` - metadataGenerateRandomInput `json:"-" xml:"-"` -} - -type metadataGenerateRandomInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1843,11 +1723,7 @@ type GenerateRandomOutput struct { // Plaintext that contains the unpredictable byte string. Plaintext []byte `min:"1" type:"blob"` - metadataGenerateRandomOutput `json:"-" xml:"-"` -} - -type metadataGenerateRandomOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1871,11 +1747,7 @@ type GetKeyPolicyInput struct { // Policy names can be discovered by calling ListKeyPolicies. PolicyName *string `min:"1" type:"string" required:"true"` - metadataGetKeyPolicyInput `json:"-" xml:"-"` -} - -type metadataGetKeyPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1892,11 +1764,7 @@ type GetKeyPolicyOutput struct { // A policy document in JSON format. Policy *string `min:"1" type:"string"` - metadataGetKeyPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetKeyPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1916,11 +1784,7 @@ type GetKeyRotationStatusInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 KeyId *string `min:"1" type:"string" required:"true"` - metadataGetKeyRotationStatusInput `json:"-" xml:"-"` -} - -type metadataGetKeyRotationStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1937,11 +1801,7 @@ type GetKeyRotationStatusOutput struct { // A Boolean value that specifies whether key rotation is enabled. KeyRotationEnabled *bool `type:"boolean"` - metadataGetKeyRotationStatusOutput `json:"-" xml:"-"` -} - -type metadataGetKeyRotationStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1976,11 +1836,7 @@ type GrantConstraints struct { // the operation. Otherwise, the operation is not allowed. EncryptionContextSubset map[string]*string `type:"map"` - metadataGrantConstraints `json:"-" xml:"-"` -} - -type metadataGrantConstraints struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2024,11 +1880,7 @@ type GrantListEntry struct { // The principal that can retire the grant. RetiringPrincipal *string `min:"1" type:"string"` - metadataGrantListEntry `json:"-" xml:"-"` -} - -type metadataGrantListEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2049,11 +1901,7 @@ type KeyListEntry struct { // Unique identifier of the key. KeyId *string `min:"1" type:"string"` - metadataKeyListEntry `json:"-" xml:"-"` -} - -type metadataKeyListEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2109,11 +1957,7 @@ type KeyMetadata struct { // the Encrypt and Decrypt operations. KeyUsage *string `type:"string" enum:"KeyUsageType"` - metadataKeyMetadata `json:"-" xml:"-"` -} - -type metadataKeyMetadata struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2140,11 +1984,7 @@ type ListAliasesInput struct { // the value of NextMarker from the response you just received. Marker *string `min:"1" type:"string"` - metadataListAliasesInput `json:"-" xml:"-"` -} - -type metadataListAliasesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2170,11 +2010,7 @@ type ListAliasesOutput struct { // request to retrieve more items in the list. Truncated *bool `type:"boolean"` - metadataListAliasesOutput `json:"-" xml:"-"` -} - -type metadataListAliasesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2207,11 +2043,7 @@ type ListGrantsInput struct { // the value of NextMarker from the response you just received. Marker *string `min:"1" type:"string"` - metadataListGrantsInput `json:"-" xml:"-"` -} - -type metadataListGrantsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2237,11 +2069,7 @@ type ListGrantsResponse struct { // request to retrieve more items in the list. Truncated *bool `type:"boolean"` - metadataListGrantsResponse `json:"-" xml:"-"` -} - -type metadataListGrantsResponse struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2278,11 +2106,7 @@ type ListKeyPoliciesInput struct { // the value of NextMarker from the response you just received. Marker *string `min:"1" type:"string"` - metadataListKeyPoliciesInput `json:"-" xml:"-"` -} - -type metadataListKeyPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2309,11 +2133,7 @@ type ListKeyPoliciesOutput struct { // request to retrieve more items in the list. Truncated *bool `type:"boolean"` - metadataListKeyPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListKeyPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2340,11 +2160,7 @@ type ListKeysInput struct { // the value of NextMarker from the response you just received. Marker *string `min:"1" type:"string"` - metadataListKeysInput `json:"-" xml:"-"` -} - -type metadataListKeysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2370,11 +2186,7 @@ type ListKeysOutput struct { // request to retrieve more items in the list. Truncated *bool `type:"boolean"` - metadataListKeysOutput `json:"-" xml:"-"` -} - -type metadataListKeysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2411,11 +2223,7 @@ type ListRetirableGrantsInput struct { // in the Example ARNs section of the Amazon Web Services General Reference. RetiringPrincipal *string `min:"1" type:"string" required:"true"` - metadataListRetirableGrantsInput `json:"-" xml:"-"` -} - -type metadataListRetirableGrantsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2444,11 +2252,7 @@ type PutKeyPolicyInput struct { // "default". PolicyName *string `min:"1" type:"string" required:"true"` - metadataPutKeyPolicyInput `json:"-" xml:"-"` -} - -type metadataPutKeyPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2462,11 +2266,7 @@ func (s PutKeyPolicyInput) GoString() string { } type PutKeyPolicyOutput struct { - metadataPutKeyPolicyOutput `json:"-" xml:"-"` -} - -type metadataPutKeyPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2505,11 +2305,7 @@ type ReEncryptInput struct { // CiphertextBlob parameter. SourceEncryptionContext map[string]*string `type:"map"` - metadataReEncryptInput `json:"-" xml:"-"` -} - -type metadataReEncryptInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2533,11 +2329,7 @@ type ReEncryptOutput struct { // Unique identifier of the key used to originally encrypt the data. SourceKeyId *string `min:"1" type:"string"` - metadataReEncryptOutput `json:"-" xml:"-"` -} - -type metadataReEncryptOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2564,11 +2356,7 @@ type RetireGrantInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 KeyId *string `min:"1" type:"string"` - metadataRetireGrantInput `json:"-" xml:"-"` -} - -type metadataRetireGrantInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2582,11 +2370,7 @@ func (s RetireGrantInput) GoString() string { } type RetireGrantOutput struct { - metadataRetireGrantOutput `json:"-" xml:"-"` -} - -type metadataRetireGrantOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2609,11 +2393,7 @@ type RevokeGrantInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 KeyId *string `min:"1" type:"string" required:"true"` - metadataRevokeGrantInput `json:"-" xml:"-"` -} - -type metadataRevokeGrantInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2627,11 +2407,7 @@ func (s RevokeGrantInput) GoString() string { } type RevokeGrantOutput struct { - metadataRevokeGrantOutput `json:"-" xml:"-"` -} - -type metadataRevokeGrantOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2663,11 +2439,7 @@ type ScheduleKeyDeletionInput struct { // 30, inclusive. If you do not include a value, it defaults to 30. PendingWindowInDays *int64 `min:"1" type:"integer"` - metadataScheduleKeyDeletionInput `json:"-" xml:"-"` -} - -type metadataScheduleKeyDeletionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2688,11 +2460,7 @@ type ScheduleKeyDeletionOutput struct { // is scheduled. KeyId *string `min:"1" type:"string"` - metadataScheduleKeyDeletionOutput `json:"-" xml:"-"` -} - -type metadataScheduleKeyDeletionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2720,11 +2488,7 @@ type UpdateAliasInput struct { // TargetKeyId. TargetKeyId *string `min:"1" type:"string" required:"true"` - metadataUpdateAliasInput `json:"-" xml:"-"` -} - -type metadataUpdateAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2738,11 +2502,7 @@ func (s UpdateAliasInput) GoString() string { } type UpdateAliasOutput struct { - metadataUpdateAliasOutput `json:"-" xml:"-"` -} - -type metadataUpdateAliasOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2765,11 +2525,7 @@ type UpdateKeyDescriptionInput struct { // Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012 KeyId *string `min:"1" type:"string" required:"true"` - metadataUpdateKeyDescriptionInput `json:"-" xml:"-"` -} - -type metadataUpdateKeyDescriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2783,11 +2539,7 @@ func (s UpdateKeyDescriptionInput) GoString() string { } type UpdateKeyDescriptionOutput struct { - metadataUpdateKeyDescriptionOutput `json:"-" xml:"-"` -} - -type metadataUpdateKeyDescriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/lambda/api.go b/service/lambda/api.go index cf1fe1b4fcf..ebd22b1b4f3 100644 --- a/service/lambda/api.go +++ b/service/lambda/api.go @@ -916,11 +916,7 @@ type AddPermissionInput struct { // A unique statement identifier. StatementId *string `min:"1" type:"string" required:"true"` - metadataAddPermissionInput `json:"-" xml:"-"` -} - -type metadataAddPermissionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -938,11 +934,7 @@ type AddPermissionOutput struct { // the same as a string using "\" as an escape character in the JSON. Statement *string `type:"string"` - metadataAddPermissionOutput `json:"-" xml:"-"` -} - -type metadataAddPermissionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -971,11 +963,7 @@ type AliasConfiguration struct { // Alias name. Name *string `min:"1" type:"string"` - metadataAliasConfiguration `json:"-" xml:"-"` -} - -type metadataAliasConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1001,11 +989,7 @@ type CreateAliasInput struct { // Name for the alias your creating. Name *string `min:"1" type:"string" required:"true"` - metadataCreateAliasInput `json:"-" xml:"-"` -} - -type metadataCreateAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1050,11 +1034,7 @@ type CreateEventSourceMappingInput struct { // in the Amazon Kinesis API Reference. StartingPosition *string `type:"string" required:"true" enum:"EventSourcePosition"` - metadataCreateEventSourceMappingInput `json:"-" xml:"-"` -} - -type metadataCreateEventSourceMappingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1118,11 +1098,7 @@ type CreateFunctionInput struct { // value based on your expected execution time. The default is 3 seconds. Timeout *int64 `min:"1" type:"integer"` - metadataCreateFunctionInput `json:"-" xml:"-"` -} - -type metadataCreateFunctionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1142,11 +1118,7 @@ type DeleteAliasInput struct { // Name of the alias to delete. Name *string `location:"uri" locationName:"Name" min:"1" type:"string" required:"true"` - metadataDeleteAliasInput `json:"-" xml:"-"` -} - -type metadataDeleteAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1160,11 +1132,7 @@ func (s DeleteAliasInput) GoString() string { } type DeleteAliasOutput struct { - metadataDeleteAliasOutput `json:"-" xml:"-"` -} - -type metadataDeleteAliasOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1181,11 +1149,7 @@ type DeleteEventSourceMappingInput struct { // The event source mapping ID. UUID *string `location:"uri" locationName:"UUID" type:"string" required:"true"` - metadataDeleteEventSourceMappingInput `json:"-" xml:"-"` -} - -type metadataDeleteEventSourceMappingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1224,11 +1188,7 @@ type DeleteFunctionInput struct { // including all its versions and aliases. Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"` - metadataDeleteFunctionInput `json:"-" xml:"-"` -} - -type metadataDeleteFunctionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1242,11 +1202,7 @@ func (s DeleteFunctionInput) GoString() string { } type DeleteFunctionOutput struct { - metadataDeleteFunctionOutput `json:"-" xml:"-"` -} - -type metadataDeleteFunctionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1290,11 +1246,7 @@ type EventSourceMappingConfiguration struct { // The AWS Lambda assigned opaque identifier for the mapping. UUID *string `type:"string"` - metadataEventSourceMappingConfiguration `json:"-" xml:"-"` -} - -type metadataEventSourceMappingConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1325,11 +1277,7 @@ type FunctionCode struct { // in the AWS Lambda Developer Guide. ZipFile []byte `type:"blob"` - metadataFunctionCode `json:"-" xml:"-"` -} - -type metadataFunctionCode struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1351,11 +1299,7 @@ type FunctionCodeLocation struct { // The repository from which you can download the function. RepositoryType *string `type:"string"` - metadataFunctionCodeLocation `json:"-" xml:"-"` -} - -type metadataFunctionCodeLocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1410,11 +1354,7 @@ type FunctionConfiguration struct { // The version of the Lambda function. Version *string `min:"1" type:"string"` - metadataFunctionConfiguration `json:"-" xml:"-"` -} - -type metadataFunctionConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1436,11 +1376,7 @@ type GetAliasInput struct { // Name of the alias for which you want to retrieve information. Name *string `location:"uri" locationName:"Name" min:"1" type:"string" required:"true"` - metadataGetAliasInput `json:"-" xml:"-"` -} - -type metadataGetAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1457,11 +1393,7 @@ type GetEventSourceMappingInput struct { // The AWS Lambda assigned ID of the event source mapping. UUID *string `location:"uri" locationName:"UUID" type:"string" required:"true"` - metadataGetEventSourceMappingInput `json:"-" xml:"-"` -} - -type metadataGetEventSourceMappingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1496,11 +1428,7 @@ type GetFunctionConfigurationInput struct { // and returns information about the $LATEST function version. Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"` - metadataGetFunctionConfigurationInput `json:"-" xml:"-"` -} - -type metadataGetFunctionConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1533,11 +1461,7 @@ type GetFunctionInput struct { // about the $LATEST version of the Lambda function. Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"` - metadataGetFunctionInput `json:"-" xml:"-"` -} - -type metadataGetFunctionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1558,11 +1482,7 @@ type GetFunctionOutput struct { // A complex type that describes function metadata. Configuration *FunctionConfiguration `type:"structure"` - metadataGetFunctionOutput `json:"-" xml:"-"` -} - -type metadataGetFunctionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1592,11 +1512,7 @@ type GetPolicyInput struct { // return permissions that apply to the unqualified function ARN. Qualifier *string `min:"1" type:"string"` - metadataGetPolicyInput `json:"-" xml:"-"` -} - -type metadataGetPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1614,11 +1530,7 @@ type GetPolicyOutput struct { // returns the same as a string using "\" as an escape character in the JSON. Policy *string `type:"string"` - metadataGetPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1638,11 +1550,7 @@ type InvokeAsyncInput struct { // JSON that you want to provide to your Lambda function as input. InvokeArgs io.ReadSeeker `type:"blob" required:"true"` - metadataInvokeAsyncInput `json:"-" xml:"-"` -} - -type metadataInvokeAsyncInput struct { - SDKShapeTraits bool `type:"structure" payload:"InvokeArgs"` + _ struct{} `type:"structure" payload:"InvokeArgs"` } // String returns the string representation @@ -1660,11 +1568,7 @@ type InvokeAsyncOutput struct { // It will be 202 upon success. Status *int64 `location:"statusCode" type:"integer"` - metadataInvokeAsyncOutput `json:"-" xml:"-"` -} - -type metadataInvokeAsyncOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1725,11 +1629,7 @@ type InvokeInput struct { // ARN which results in invocation of the $LATEST version. Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"` - metadataInvokeInput `json:"-" xml:"-"` -} - -type metadataInvokeInput struct { - SDKShapeTraits bool `type:"structure" payload:"Payload"` + _ struct{} `type:"structure" payload:"Payload"` } // String returns the string representation @@ -1771,11 +1671,7 @@ type InvokeOutput struct { // type the status code will be 204. StatusCode *int64 `location:"statusCode" type:"integer"` - metadataInvokeOutput `json:"-" xml:"-"` -} - -type metadataInvokeOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Payload"` + _ struct{} `type:"structure" payload:"Payload"` } // String returns the string representation @@ -1805,11 +1701,7 @@ type ListAliasesInput struct { // This parameter value must be greater than 0. MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"` - metadataListAliasesInput `json:"-" xml:"-"` -} - -type metadataListAliasesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1829,11 +1721,7 @@ type ListAliasesOutput struct { // A string, present if there are more aliases. NextMarker *string `type:"string"` - metadataListAliasesOutput `json:"-" xml:"-"` -} - -type metadataListAliasesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1869,11 +1757,7 @@ type ListEventSourceMappingsInput struct { // in response. This value must be greater than 0. MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"` - metadataListEventSourceMappingsInput `json:"-" xml:"-"` -} - -type metadataListEventSourceMappingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1894,11 +1778,7 @@ type ListEventSourceMappingsOutput struct { // A string, present if there are more event source mappings. NextMarker *string `type:"string"` - metadataListEventSourceMappingsOutput `json:"-" xml:"-"` -} - -type metadataListEventSourceMappingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1920,11 +1800,7 @@ type ListFunctionsInput struct { // return in response. This parameter value must be greater than 0. MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"` - metadataListFunctionsInput `json:"-" xml:"-"` -} - -type metadataListFunctionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1945,11 +1821,7 @@ type ListFunctionsOutput struct { // A string, present if there are more functions. NextMarker *string `type:"string"` - metadataListFunctionsOutput `json:"-" xml:"-"` -} - -type metadataListFunctionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1980,11 +1852,7 @@ type ListVersionsByFunctionInput struct { // to return in response. This parameter value must be greater than 0. MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"` - metadataListVersionsByFunctionInput `json:"-" xml:"-"` -} - -type metadataListVersionsByFunctionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2004,11 +1872,7 @@ type ListVersionsByFunctionOutput struct { // A list of Lambda function versions. Versions []*FunctionConfiguration `type:"list"` - metadataListVersionsByFunctionOutput `json:"-" xml:"-"` -} - -type metadataListVersionsByFunctionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2040,11 +1904,7 @@ type PublishVersionInput struct { // 64 character in length. FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"` - metadataPublishVersionInput `json:"-" xml:"-"` -} - -type metadataPublishVersionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2077,11 +1937,7 @@ type RemovePermissionInput struct { // Statement ID of the permission to remove. StatementId *string `location:"uri" locationName:"StatementId" min:"1" type:"string" required:"true"` - metadataRemovePermissionInput `json:"-" xml:"-"` -} - -type metadataRemovePermissionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2095,11 +1951,7 @@ func (s RemovePermissionInput) GoString() string { } type RemovePermissionOutput struct { - metadataRemovePermissionOutput `json:"-" xml:"-"` -} - -type metadataRemovePermissionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2126,11 +1978,7 @@ type UpdateAliasInput struct { // The alias name. Name *string `location:"uri" locationName:"Name" min:"1" type:"string" required:"true"` - metadataUpdateAliasInput `json:"-" xml:"-"` -} - -type metadataUpdateAliasInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2165,11 +2013,7 @@ type UpdateEventSourceMappingInput struct { // The event source mapping identifier. UUID *string `location:"uri" locationName:"UUID" type:"string" required:"true"` - metadataUpdateEventSourceMappingInput `json:"-" xml:"-"` -} - -type metadataUpdateEventSourceMappingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2211,11 +2055,7 @@ type UpdateFunctionCodeInput struct { // Based64-encoded .zip file containing your packaged source code. ZipFile []byte `type:"blob"` - metadataUpdateFunctionCodeInput `json:"-" xml:"-"` -} - -type metadataUpdateFunctionCodeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2264,11 +2104,7 @@ type UpdateFunctionConfigurationInput struct { // value based on your expected execution time. The default is 3 seconds. Timeout *int64 `min:"1" type:"integer"` - metadataUpdateFunctionConfigurationInput `json:"-" xml:"-"` -} - -type metadataUpdateFunctionConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/machinelearning/api.go b/service/machinelearning/api.go index 0fe6030d191..c44671d6684 100644 --- a/service/machinelearning/api.go +++ b/service/machinelearning/api.go @@ -960,11 +960,7 @@ type BatchPrediction struct { // DELETED - The BatchPrediction is marked as deleted. It is not usable. Status *string `type:"string" enum:"EntityStatus"` - metadataBatchPrediction `json:"-" xml:"-"` -} - -type metadataBatchPrediction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1000,11 +996,7 @@ type CreateBatchPredictionInput struct { // Developer Guide (http://docs.aws.amazon.com/machine-learning/latest/dg). OutputUri *string `type:"string" required:"true"` - metadataCreateBatchPredictionInput `json:"-" xml:"-"` -} - -type metadataCreateBatchPredictionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1028,11 +1020,7 @@ type CreateBatchPredictionOutput struct { // is identical to the value of the BatchPredictionId in the request. BatchPredictionId *string `min:"1" type:"string"` - metadataCreateBatchPredictionOutput `json:"-" xml:"-"` -} - -type metadataCreateBatchPredictionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1105,11 +1093,7 @@ type CreateDataSourceFromRDSInput struct { // query from Amazon RDS to Amazon S3. RoleARN *string `min:"1" type:"string" required:"true"` - metadataCreateDataSourceFromRDSInput `json:"-" xml:"-"` -} - -type metadataCreateDataSourceFromRDSInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1136,11 +1120,7 @@ type CreateDataSourceFromRDSOutput struct { // be identical to the value of the DataSourceID in the request. DataSourceId *string `min:"1" type:"string"` - metadataCreateDataSourceFromRDSOutput `json:"-" xml:"-"` -} - -type metadataCreateDataSourceFromRDSOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1202,11 +1182,7 @@ type CreateDataSourceFromRedshiftInput struct { // the S3StagingLocation RoleARN *string `min:"1" type:"string" required:"true"` - metadataCreateDataSourceFromRedshiftInput `json:"-" xml:"-"` -} - -type metadataCreateDataSourceFromRedshiftInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1230,11 +1206,7 @@ type CreateDataSourceFromRedshiftOutput struct { // be identical to the value of the DataSourceID in the request. DataSourceId *string `min:"1" type:"string"` - metadataCreateDataSourceFromRedshiftOutput `json:"-" xml:"-"` -} - -type metadataCreateDataSourceFromRedshiftOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1276,11 +1248,7 @@ type CreateDataSourceFromS3Input struct { // Sample - "{\"splitting\":{\"percentBegin\":10,\"percentEnd\":60}}" DataSpec *S3DataSpec `type:"structure" required:"true"` - metadataCreateDataSourceFromS3Input `json:"-" xml:"-"` -} - -type metadataCreateDataSourceFromS3Input struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1303,11 +1271,7 @@ type CreateDataSourceFromS3Output struct { // be identical to the value of the DataSourceID in the request. DataSourceId *string `min:"1" type:"string"` - metadataCreateDataSourceFromS3Output `json:"-" xml:"-"` -} - -type metadataCreateDataSourceFromS3Output struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1337,11 +1301,7 @@ type CreateEvaluationInput struct { // used in the Evaluation. MLModelId *string `min:"1" type:"string" required:"true"` - metadataCreateEvaluationInput `json:"-" xml:"-"` -} - -type metadataCreateEvaluationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1364,11 +1324,7 @@ type CreateEvaluationOutput struct { // should be identical to the value of the EvaluationId in the request. EvaluationId *string `min:"1" type:"string"` - metadataCreateEvaluationOutput `json:"-" xml:"-"` -} - -type metadataCreateEvaluationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1444,11 +1400,7 @@ type CreateMLModelInput struct { // The DataSource that points to the training data. TrainingDataSourceId *string `min:"1" type:"string" required:"true"` - metadataCreateMLModelInput `json:"-" xml:"-"` -} - -type metadataCreateMLModelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1471,11 +1423,7 @@ type CreateMLModelOutput struct { // be identical to the value of the MLModelId in the request. MLModelId *string `min:"1" type:"string"` - metadataCreateMLModelOutput `json:"-" xml:"-"` -} - -type metadataCreateMLModelOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1492,11 +1440,7 @@ type CreateRealtimeEndpointInput struct { // The ID assigned to the MLModel during creation. MLModelId *string `min:"1" type:"string" required:"true"` - metadataCreateRealtimeEndpointInput `json:"-" xml:"-"` -} - -type metadataCreateRealtimeEndpointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1523,11 +1467,7 @@ type CreateRealtimeEndpointOutput struct { // The endpoint information of the MLModel RealtimeEndpointInfo *RealtimeEndpointInfo `type:"structure"` - metadataCreateRealtimeEndpointOutput `json:"-" xml:"-"` -} - -type metadataCreateRealtimeEndpointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1605,11 +1545,7 @@ type DataSource struct { // is marked as deleted. It is not usable. Status *string `type:"string" enum:"EntityStatus"` - metadataDataSource `json:"-" xml:"-"` -} - -type metadataDataSource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1626,11 +1562,7 @@ type DeleteBatchPredictionInput struct { // A user-supplied ID that uniquely identifies the BatchPrediction. BatchPredictionId *string `min:"1" type:"string" required:"true"` - metadataDeleteBatchPredictionInput `json:"-" xml:"-"` -} - -type metadataDeleteBatchPredictionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1652,11 +1584,7 @@ type DeleteBatchPredictionOutput struct { // should be identical to the value of the BatchPredictionID in the request. BatchPredictionId *string `min:"1" type:"string"` - metadataDeleteBatchPredictionOutput `json:"-" xml:"-"` -} - -type metadataDeleteBatchPredictionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1673,11 +1601,7 @@ type DeleteDataSourceInput struct { // A user-supplied ID that uniquely identifies the DataSource. DataSourceId *string `min:"1" type:"string" required:"true"` - metadataDeleteDataSourceInput `json:"-" xml:"-"` -} - -type metadataDeleteDataSourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1696,11 +1620,7 @@ type DeleteDataSourceOutput struct { // be identical to the value of the DataSourceID in the request. DataSourceId *string `min:"1" type:"string"` - metadataDeleteDataSourceOutput `json:"-" xml:"-"` -} - -type metadataDeleteDataSourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1717,11 +1637,7 @@ type DeleteEvaluationInput struct { // A user-supplied ID that uniquely identifies the Evaluation to delete. EvaluationId *string `min:"1" type:"string" required:"true"` - metadataDeleteEvaluationInput `json:"-" xml:"-"` -} - -type metadataDeleteEvaluationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1744,11 +1660,7 @@ type DeleteEvaluationOutput struct { // be identical to the value of the EvaluationId in the request. EvaluationId *string `min:"1" type:"string"` - metadataDeleteEvaluationOutput `json:"-" xml:"-"` -} - -type metadataDeleteEvaluationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1765,11 +1677,7 @@ type DeleteMLModelInput struct { // A user-supplied ID that uniquely identifies the MLModel. MLModelId *string `min:"1" type:"string" required:"true"` - metadataDeleteMLModelInput `json:"-" xml:"-"` -} - -type metadataDeleteMLModelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1791,11 +1699,7 @@ type DeleteMLModelOutput struct { // be identical to the value of the MLModelID in the request. MLModelId *string `min:"1" type:"string"` - metadataDeleteMLModelOutput `json:"-" xml:"-"` -} - -type metadataDeleteMLModelOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1812,11 +1716,7 @@ type DeleteRealtimeEndpointInput struct { // The ID assigned to the MLModel during creation. MLModelId *string `min:"1" type:"string" required:"true"` - metadataDeleteRealtimeEndpointInput `json:"-" xml:"-"` -} - -type metadataDeleteRealtimeEndpointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1840,11 +1740,7 @@ type DeleteRealtimeEndpointOutput struct { // The endpoint information of the MLModel RealtimeEndpointInfo *RealtimeEndpointInfo `type:"structure"` - metadataDeleteRealtimeEndpointOutput `json:"-" xml:"-"` -} - -type metadataDeleteRealtimeEndpointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1924,11 +1820,7 @@ type DescribeBatchPredictionsInput struct { // the list in descending order (Z-A, 9-0). Results are sorted by FilterVariable. SortOrder *string `type:"string" enum:"SortOrder"` - metadataDescribeBatchPredictionsInput `json:"-" xml:"-"` -} - -type metadataDescribeBatchPredictionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1951,11 +1843,7 @@ type DescribeBatchPredictionsOutput struct { // A list of BatchPrediction objects that meet the search criteria. Results []*BatchPrediction `type:"list"` - metadataDescribeBatchPredictionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeBatchPredictionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2030,11 +1918,7 @@ type DescribeDataSourcesInput struct { // the list in descending order (Z-A, 9-0). Results are sorted by FilterVariable. SortOrder *string `type:"string" enum:"SortOrder"` - metadataDescribeDataSourcesInput `json:"-" xml:"-"` -} - -type metadataDescribeDataSourcesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2057,11 +1941,7 @@ type DescribeDataSourcesOutput struct { // A list of DataSource that meet the search criteria. Results []*DataSource `type:"list"` - metadataDescribeDataSourcesOutput `json:"-" xml:"-"` -} - -type metadataDescribeDataSourcesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2138,11 +2018,7 @@ type DescribeEvaluationsInput struct { // the list in descending order (Z-A, 9-0). Results are sorted by FilterVariable. SortOrder *string `type:"string" enum:"SortOrder"` - metadataDescribeEvaluationsInput `json:"-" xml:"-"` -} - -type metadataDescribeEvaluationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2165,11 +2041,7 @@ type DescribeEvaluationsOutput struct { // A list of Evaluation that meet the search criteria. Results []*Evaluation `type:"list"` - metadataDescribeEvaluationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeEvaluationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2249,11 +2121,7 @@ type DescribeMLModelsInput struct { // the list in descending order (Z-A, 9-0). Results are sorted by FilterVariable. SortOrder *string `type:"string" enum:"SortOrder"` - metadataDescribeMLModelsInput `json:"-" xml:"-"` -} - -type metadataDescribeMLModelsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2276,11 +2144,7 @@ type DescribeMLModelsOutput struct { // A list of MLModel that meet the search criteria. Results []*MLModel `type:"list"` - metadataDescribeMLModelsOutput `json:"-" xml:"-"` -} - -type metadataDescribeMLModelsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2358,11 +2222,7 @@ type Evaluation struct { // is marked as deleted. It is not usable. Status *string `type:"string" enum:"EntityStatus"` - metadataEvaluation `json:"-" xml:"-"` -} - -type metadataEvaluation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2379,11 +2239,7 @@ type GetBatchPredictionInput struct { // An ID assigned to the BatchPrediction at creation. BatchPredictionId *string `min:"1" type:"string" required:"true"` - metadataGetBatchPredictionInput `json:"-" xml:"-"` -} - -type metadataGetBatchPredictionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2449,11 +2305,7 @@ type GetBatchPredictionOutput struct { // DELETED - The BatchPrediction is marked as deleted. It is not usable. Status *string `type:"string" enum:"EntityStatus"` - metadataGetBatchPredictionOutput `json:"-" xml:"-"` -} - -type metadataGetBatchPredictionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2477,11 +2329,7 @@ type GetDataSourceInput struct { // If false, DataSourceSchema is not returned. Verbose *bool `type:"boolean"` - metadataGetDataSourceInput `json:"-" xml:"-"` -} - -type metadataGetDataSourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2565,11 +2413,7 @@ type GetDataSourceOutput struct { // DataSource is marked as deleted. It is not usable. Status *string `type:"string" enum:"EntityStatus"` - metadataGetDataSourceOutput `json:"-" xml:"-"` -} - -type metadataGetDataSourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2587,11 +2431,7 @@ type GetEvaluationInput struct { // and cataloged. The ID provides the means to access the information. EvaluationId *string `min:"1" type:"string" required:"true"` - metadataGetEvaluationInput `json:"-" xml:"-"` -} - -type metadataGetEvaluationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2669,11 +2509,7 @@ type GetEvaluationOutput struct { // is marked as deleted. It is not usable. Status *string `type:"string" enum:"EntityStatus"` - metadataGetEvaluationOutput `json:"-" xml:"-"` -} - -type metadataGetEvaluationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2697,11 +2533,7 @@ type GetMLModelInput struct { // If false, Recipe is not returned. Verbose *bool `type:"boolean"` - metadataGetMLModelInput `json:"-" xml:"-"` -} - -type metadataGetMLModelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2829,11 +2661,7 @@ type GetMLModelOutput struct { // value is 33554432. TrainingParameters map[string]*string `type:"map"` - metadataGetMLModelOutput `json:"-" xml:"-"` -} - -type metadataGetMLModelOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2950,11 +2778,7 @@ type MLModel struct { // value is 33554432. TrainingParameters map[string]*string `type:"map"` - metadataMLModel `json:"-" xml:"-"` -} - -type metadataMLModel struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2985,11 +2809,7 @@ func (s MLModel) GoString() string { type PerformanceMetrics struct { Properties map[string]*string `type:"map"` - metadataPerformanceMetrics `json:"-" xml:"-"` -} - -type metadataPerformanceMetrics struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3011,11 +2831,7 @@ type PredictInput struct { // A map of variable name-value pairs that represent an observation. Record map[string]*string `type:"map" required:"true"` - metadataPredictInput `json:"-" xml:"-"` -} - -type metadataPredictInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3042,11 +2858,7 @@ type PredictOutput struct { // PredictedValue - Present for a REGRESSION MLModel request. Prediction *Prediction `type:"structure"` - metadataPredictOutput `json:"-" xml:"-"` -} - -type metadataPredictOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3083,11 +2895,7 @@ type Prediction struct { // The prediction value for REGRESSION MLModel. PredictedValue *float64 `locationName:"predictedValue" type:"float"` - metadataPrediction `json:"-" xml:"-"` -} - -type metadataPrediction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3183,11 +2991,7 @@ type RDSDataSpec struct { // S3. SubnetId *string `min:"1" type:"string" required:"true"` - metadataRDSDataSpec `json:"-" xml:"-"` -} - -type metadataRDSDataSpec struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3208,11 +3012,7 @@ type RDSDatabase struct { // The ID of an RDS DB instance. InstanceIdentifier *string `min:"1" type:"string" required:"true"` - metadataRDSDatabase `json:"-" xml:"-"` -} - -type metadataRDSDatabase struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3237,11 +3037,7 @@ type RDSDatabaseCredentials struct { // an RDSSelectSqlQuery query. Username *string `min:"1" type:"string" required:"true"` - metadataRDSDatabaseCredentials `json:"-" xml:"-"` -} - -type metadataRDSDatabaseCredentials struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3285,11 +3081,7 @@ type RDSMetadata struct { // for data pipelines. ServiceRole *string `min:"1" type:"string"` - metadataRDSMetadata `json:"-" xml:"-"` -} - -type metadataRDSMetadata struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3327,11 +3119,7 @@ type RealtimeEndpointInfo struct { // in incoming requests per second. PeakRequestsPerSecond *int64 `type:"integer"` - metadataRealtimeEndpointInfo `json:"-" xml:"-"` -} - -type metadataRealtimeEndpointInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3401,11 +3189,7 @@ type RedshiftDataSpec struct { // Amazon Redshift DataSource. SelectSqlQuery *string `min:"1" type:"string" required:"true"` - metadataRedshiftDataSpec `json:"-" xml:"-"` -} - -type metadataRedshiftDataSpec struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3427,11 +3211,7 @@ type RedshiftDatabase struct { // The name of a database hosted on an Amazon Redshift cluster. DatabaseName *string `min:"1" type:"string" required:"true"` - metadataRedshiftDatabase `json:"-" xml:"-"` -} - -type metadataRedshiftDatabase struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3459,11 +3239,7 @@ type RedshiftDatabaseCredentials struct { // be valid for an Amazon Redshift USER (http://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html). Username *string `min:"1" type:"string" required:"true"` - metadataRedshiftDatabaseCredentials `json:"-" xml:"-"` -} - -type metadataRedshiftDatabaseCredentials struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3492,11 +3268,7 @@ type RedshiftMetadata struct { // only if Verbose is true in GetDataSourceInput. SelectSqlQuery *string `min:"1" type:"string"` - metadataRedshiftMetadata `json:"-" xml:"-"` -} - -type metadataRedshiftMetadata struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3554,11 +3326,7 @@ type S3DataSpec struct { // Describes the schema Location in Amazon S3. DataSchemaLocationS3 *string `type:"string"` - metadataS3DataSpec `json:"-" xml:"-"` -} - -type metadataS3DataSpec struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3578,11 +3346,7 @@ type UpdateBatchPredictionInput struct { // A new user-supplied name or description of the BatchPrediction. BatchPredictionName *string `type:"string" required:"true"` - metadataUpdateBatchPredictionInput `json:"-" xml:"-"` -} - -type metadataUpdateBatchPredictionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3603,11 +3367,7 @@ type UpdateBatchPredictionOutput struct { // be identical to the value of the BatchPredictionId in the request. BatchPredictionId *string `min:"1" type:"string"` - metadataUpdateBatchPredictionOutput `json:"-" xml:"-"` -} - -type metadataUpdateBatchPredictionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3628,11 +3388,7 @@ type UpdateDataSourceInput struct { // the current description. DataSourceName *string `type:"string" required:"true"` - metadataUpdateDataSourceInput `json:"-" xml:"-"` -} - -type metadataUpdateDataSourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3653,11 +3409,7 @@ type UpdateDataSourceOutput struct { // to the value of the DataSourceID in the request. DataSourceId *string `min:"1" type:"string"` - metadataUpdateDataSourceOutput `json:"-" xml:"-"` -} - -type metadataUpdateDataSourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3678,11 +3430,7 @@ type UpdateEvaluationInput struct { // the current content. EvaluationName *string `type:"string" required:"true"` - metadataUpdateEvaluationInput `json:"-" xml:"-"` -} - -type metadataUpdateEvaluationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3703,11 +3451,7 @@ type UpdateEvaluationOutput struct { // to the value of the Evaluation in the request. EvaluationId *string `min:"1" type:"string"` - metadataUpdateEvaluationOutput `json:"-" xml:"-"` -} - -type metadataUpdateEvaluationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3735,11 +3479,7 @@ type UpdateMLModelInput struct { // receive a negative response from the MLModel, such as false. ScoreThreshold *float64 `type:"float"` - metadataUpdateMLModelInput `json:"-" xml:"-"` -} - -type metadataUpdateMLModelInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3760,11 +3500,7 @@ type UpdateMLModelOutput struct { // to the value of the MLModelID in the request. MLModelId *string `min:"1" type:"string"` - metadataUpdateMLModelOutput `json:"-" xml:"-"` -} - -type metadataUpdateMLModelOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/marketplacecommerceanalytics/api.go b/service/marketplacecommerceanalytics/api.go index c73628f1880..e83edffd761 100644 --- a/service/marketplacecommerceanalytics/api.go +++ b/service/marketplacecommerceanalytics/api.go @@ -77,11 +77,7 @@ type GenerateDataSetInput struct { // data set has been published or if an error has occurred. SnsTopicArn *string `locationName:"snsTopicArn" min:"1" type:"string" required:"true"` - metadataGenerateDataSetInput `json:"-" xml:"-"` -} - -type metadataGenerateDataSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -101,11 +97,7 @@ type GenerateDataSetOutput struct { // from the SNS topic. DataSetRequestId *string `locationName:"dataSetRequestId" type:"string"` - metadataGenerateDataSetOutput `json:"-" xml:"-"` -} - -type metadataGenerateDataSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/mobileanalytics/api.go b/service/mobileanalytics/api.go index 4c64f55afc4..e93a17945be 100644 --- a/service/mobileanalytics/api.go +++ b/service/mobileanalytics/api.go @@ -65,11 +65,7 @@ type Event struct { // The version of the event. Version *string `locationName:"version" min:"1" type:"string"` - metadataEvent `json:"-" xml:"-"` -} - -type metadataEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -94,11 +90,7 @@ type PutEventsInput struct { // An array of Event JSON objects Events []*Event `locationName:"events" type:"list" required:"true"` - metadataPutEventsInput `json:"-" xml:"-"` -} - -type metadataPutEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -112,11 +104,7 @@ func (s PutEventsInput) GoString() string { } type PutEventsOutput struct { - metadataPutEventsOutput `json:"-" xml:"-"` -} - -type metadataPutEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -145,11 +133,7 @@ type Session struct { // example, 2014-06-30T19:07:47.885Z StopTimestamp *string `locationName:"stopTimestamp" type:"string"` - metadataSession `json:"-" xml:"-"` -} - -type metadataSession struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/opsworks/api.go b/service/opsworks/api.go index a4fd2a153fd..0a4b557ac77 100644 --- a/service/opsworks/api.go +++ b/service/opsworks/api.go @@ -2358,11 +2358,7 @@ type AgentVersion struct { // The agent version. Version *string `type:"string"` - metadataAgentVersion `json:"-" xml:"-"` -} - -type metadataAgentVersion struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2430,11 +2426,7 @@ type App struct { // The app type. Type *string `type:"string" enum:"AppType"` - metadataApp `json:"-" xml:"-"` -} - -type metadataApp struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2455,11 +2447,7 @@ type AssignInstanceInput struct { // a registered instance to a built-in layer. LayerIds []*string `type:"list" required:"true"` - metadataAssignInstanceInput `json:"-" xml:"-"` -} - -type metadataAssignInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2473,11 +2461,7 @@ func (s AssignInstanceInput) GoString() string { } type AssignInstanceOutput struct { - metadataAssignInstanceOutput `json:"-" xml:"-"` -} - -type metadataAssignInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2497,11 +2481,7 @@ type AssignVolumeInput struct { // The volume ID. VolumeId *string `type:"string" required:"true"` - metadataAssignVolumeInput `json:"-" xml:"-"` -} - -type metadataAssignVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2515,11 +2495,7 @@ func (s AssignVolumeInput) GoString() string { } type AssignVolumeOutput struct { - metadataAssignVolumeOutput `json:"-" xml:"-"` -} - -type metadataAssignVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2539,11 +2515,7 @@ type AssociateElasticIpInput struct { // The instance ID. InstanceId *string `type:"string"` - metadataAssociateElasticIpInput `json:"-" xml:"-"` -} - -type metadataAssociateElasticIpInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2557,11 +2529,7 @@ func (s AssociateElasticIpInput) GoString() string { } type AssociateElasticIpOutput struct { - metadataAssociateElasticIpOutput `json:"-" xml:"-"` -} - -type metadataAssociateElasticIpOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2582,11 +2550,7 @@ type AttachElasticLoadBalancerInput struct { // to. LayerId *string `type:"string" required:"true"` - metadataAttachElasticLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataAttachElasticLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2600,11 +2564,7 @@ func (s AttachElasticLoadBalancerInput) GoString() string { } type AttachElasticLoadBalancerOutput struct { - metadataAttachElasticLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataAttachElasticLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2657,11 +2617,7 @@ type AutoScalingThresholds struct { // more instances are added or removed. ThresholdsWaitTime *int64 `min:"1" type:"integer"` - metadataAutoScalingThresholds `json:"-" xml:"-"` -} - -type metadataAutoScalingThresholds struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2693,11 +2649,7 @@ type BlockDeviceMapping struct { // The virtual device name. For more information, see BlockDeviceMapping (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html). VirtualName *string `type:"string"` - metadataBlockDeviceMapping `json:"-" xml:"-"` -} - -type metadataBlockDeviceMapping struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2718,11 +2670,7 @@ type ChefConfiguration struct { // Whether to enable Berkshelf. ManageBerkshelf *bool `type:"boolean"` - metadataChefConfiguration `json:"-" xml:"-"` -} - -type metadataChefConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2911,11 +2859,7 @@ type CloneStackInput struct { // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html). VpcId *string `type:"string"` - metadataCloneStackInput `json:"-" xml:"-"` -} - -type metadataCloneStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2933,11 +2877,7 @@ type CloneStackOutput struct { // The cloned stack ID. StackId *string `type:"string"` - metadataCloneStackOutput `json:"-" xml:"-"` -} - -type metadataCloneStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2987,11 +2927,7 @@ type Command struct { // install_dependencies update_custom_cookbooks execute_recipes Type *string `type:"string"` - metadataCommand `json:"-" xml:"-"` -} - -type metadataCommand struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3059,11 +2995,7 @@ type CreateAppInput struct { // your own Deploy recipes, specify other. Type *string `type:"string" required:"true" enum:"AppType"` - metadataCreateAppInput `json:"-" xml:"-"` -} - -type metadataCreateAppInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3081,11 +3013,7 @@ type CreateAppOutput struct { // The app ID. AppId *string `type:"string"` - metadataCreateAppOutput `json:"-" xml:"-"` -} - -type metadataCreateAppOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3126,11 +3054,7 @@ type CreateDeploymentInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataCreateDeploymentInput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3149,11 +3073,7 @@ type CreateDeploymentOutput struct { // deployment. DeploymentId *string `type:"string"` - metadataCreateDeploymentOutput `json:"-" xml:"-"` -} - -type metadataCreateDeploymentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3264,11 +3184,7 @@ type CreateInstanceInput struct { // The instance's virtualization type, paravirtual or hvm. VirtualizationType *string `type:"string"` - metadataCreateInstanceInput `json:"-" xml:"-"` -} - -type metadataCreateInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3286,11 +3202,7 @@ type CreateInstanceOutput struct { // The instance ID. InstanceId *string `type:"string"` - metadataCreateInstanceOutput `json:"-" xml:"-"` -} - -type metadataCreateInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3381,11 +3293,7 @@ type CreateLayerInput struct { // A VolumeConfigurations object that describes the layer's Amazon EBS volumes. VolumeConfigurations []*VolumeConfiguration `type:"list"` - metadataCreateLayerInput `json:"-" xml:"-"` -} - -type metadataCreateLayerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3403,11 +3311,7 @@ type CreateLayerOutput struct { // The layer ID. LayerId *string `type:"string"` - metadataCreateLayerOutput `json:"-" xml:"-"` -} - -type metadataCreateLayerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3580,11 +3484,7 @@ type CreateStackInput struct { // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html). VpcId *string `type:"string"` - metadataCreateStackInput `json:"-" xml:"-"` -} - -type metadataCreateStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3603,11 +3503,7 @@ type CreateStackOutput struct { // when performing actions such as DescribeStacks. StackId *string `type:"string"` - metadataCreateStackOutput `json:"-" xml:"-"` -} - -type metadataCreateStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3638,11 +3534,7 @@ type CreateUserProfileInput struct { // IAM user name. SshUsername *string `type:"string"` - metadataCreateUserProfileInput `json:"-" xml:"-"` -} - -type metadataCreateUserProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3660,11 +3552,7 @@ type CreateUserProfileOutput struct { // The user's IAM ARN. IamUserArn *string `type:"string"` - metadataCreateUserProfileOutput `json:"-" xml:"-"` -} - -type metadataCreateUserProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3689,11 +3577,7 @@ type DataSource struct { // or RdsDbInstance. Type *string `type:"string"` - metadataDataSource `json:"-" xml:"-"` -} - -type metadataDataSource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3710,11 +3594,7 @@ type DeleteAppInput struct { // The app ID. AppId *string `type:"string" required:"true"` - metadataDeleteAppInput `json:"-" xml:"-"` -} - -type metadataDeleteAppInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3728,11 +3608,7 @@ func (s DeleteAppInput) GoString() string { } type DeleteAppOutput struct { - metadataDeleteAppOutput `json:"-" xml:"-"` -} - -type metadataDeleteAppOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3755,11 +3631,7 @@ type DeleteInstanceInput struct { // The instance ID. InstanceId *string `type:"string" required:"true"` - metadataDeleteInstanceInput `json:"-" xml:"-"` -} - -type metadataDeleteInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3773,11 +3645,7 @@ func (s DeleteInstanceInput) GoString() string { } type DeleteInstanceOutput struct { - metadataDeleteInstanceOutput `json:"-" xml:"-"` -} - -type metadataDeleteInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3794,11 +3662,7 @@ type DeleteLayerInput struct { // The layer ID. LayerId *string `type:"string" required:"true"` - metadataDeleteLayerInput `json:"-" xml:"-"` -} - -type metadataDeleteLayerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3812,11 +3676,7 @@ func (s DeleteLayerInput) GoString() string { } type DeleteLayerOutput struct { - metadataDeleteLayerOutput `json:"-" xml:"-"` -} - -type metadataDeleteLayerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3833,11 +3693,7 @@ type DeleteStackInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataDeleteStackInput `json:"-" xml:"-"` -} - -type metadataDeleteStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3851,11 +3707,7 @@ func (s DeleteStackInput) GoString() string { } type DeleteStackOutput struct { - metadataDeleteStackOutput `json:"-" xml:"-"` -} - -type metadataDeleteStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3872,11 +3724,7 @@ type DeleteUserProfileInput struct { // The user's IAM ARN. IamUserArn *string `type:"string" required:"true"` - metadataDeleteUserProfileInput `json:"-" xml:"-"` -} - -type metadataDeleteUserProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3890,11 +3738,7 @@ func (s DeleteUserProfileInput) GoString() string { } type DeleteUserProfileOutput struct { - metadataDeleteUserProfileOutput `json:"-" xml:"-"` -} - -type metadataDeleteUserProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3955,11 +3799,7 @@ type Deployment struct { // running successful failed Status *string `type:"string"` - metadataDeployment `json:"-" xml:"-"` -} - -type metadataDeployment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4018,11 +3858,7 @@ type DeploymentCommand struct { // the app. Name *string `type:"string" required:"true" enum:"DeploymentCommandName"` - metadataDeploymentCommand `json:"-" xml:"-"` -} - -type metadataDeploymentCommand struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4039,11 +3875,7 @@ type DeregisterEcsClusterInput struct { // The cluster's ARN. EcsClusterArn *string `type:"string" required:"true"` - metadataDeregisterEcsClusterInput `json:"-" xml:"-"` -} - -type metadataDeregisterEcsClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4057,11 +3889,7 @@ func (s DeregisterEcsClusterInput) GoString() string { } type DeregisterEcsClusterOutput struct { - metadataDeregisterEcsClusterOutput `json:"-" xml:"-"` -} - -type metadataDeregisterEcsClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4078,11 +3906,7 @@ type DeregisterElasticIpInput struct { // The Elastic IP address. ElasticIp *string `type:"string" required:"true"` - metadataDeregisterElasticIpInput `json:"-" xml:"-"` -} - -type metadataDeregisterElasticIpInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4096,11 +3920,7 @@ func (s DeregisterElasticIpInput) GoString() string { } type DeregisterElasticIpOutput struct { - metadataDeregisterElasticIpOutput `json:"-" xml:"-"` -} - -type metadataDeregisterElasticIpOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4117,11 +3937,7 @@ type DeregisterInstanceInput struct { // The instance ID. InstanceId *string `type:"string" required:"true"` - metadataDeregisterInstanceInput `json:"-" xml:"-"` -} - -type metadataDeregisterInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4135,11 +3951,7 @@ func (s DeregisterInstanceInput) GoString() string { } type DeregisterInstanceOutput struct { - metadataDeregisterInstanceOutput `json:"-" xml:"-"` -} - -type metadataDeregisterInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4156,11 +3968,7 @@ type DeregisterRdsDbInstanceInput struct { // The Amazon RDS instance's ARN. RdsDbInstanceArn *string `type:"string" required:"true"` - metadataDeregisterRdsDbInstanceInput `json:"-" xml:"-"` -} - -type metadataDeregisterRdsDbInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4174,11 +3982,7 @@ func (s DeregisterRdsDbInstanceInput) GoString() string { } type DeregisterRdsDbInstanceOutput struct { - metadataDeregisterRdsDbInstanceOutput `json:"-" xml:"-"` -} - -type metadataDeregisterRdsDbInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4197,11 +4001,7 @@ type DeregisterVolumeInput struct { // EC2 volume ID. VolumeId *string `type:"string" required:"true"` - metadataDeregisterVolumeInput `json:"-" xml:"-"` -} - -type metadataDeregisterVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4215,11 +4015,7 @@ func (s DeregisterVolumeInput) GoString() string { } type DeregisterVolumeOutput struct { - metadataDeregisterVolumeOutput `json:"-" xml:"-"` -} - -type metadataDeregisterVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4239,11 +4035,7 @@ type DescribeAgentVersionsInput struct { // The stack ID. StackId *string `type:"string"` - metadataDescribeAgentVersionsInput `json:"-" xml:"-"` -} - -type metadataDescribeAgentVersionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4263,11 +4055,7 @@ type DescribeAgentVersionsOutput struct { // used by the console. AgentVersions []*AgentVersion `type:"list"` - metadataDescribeAgentVersionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeAgentVersionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4290,11 +4078,7 @@ type DescribeAppsInput struct { // of the apps in the specified stack. StackId *string `type:"string"` - metadataDescribeAppsInput `json:"-" xml:"-"` -} - -type metadataDescribeAppsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4312,11 +4096,7 @@ type DescribeAppsOutput struct { // An array of App objects that describe the specified apps. Apps []*App `type:"list"` - metadataDescribeAppsOutput `json:"-" xml:"-"` -} - -type metadataDescribeAppsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4343,11 +4123,7 @@ type DescribeCommandsInput struct { // a description of the commands associated with the specified instance. InstanceId *string `type:"string"` - metadataDescribeCommandsInput `json:"-" xml:"-"` -} - -type metadataDescribeCommandsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4365,11 +4141,7 @@ type DescribeCommandsOutput struct { // An array of Command objects that describe each of the specified commands. Commands []*Command `type:"list"` - metadataDescribeCommandsOutput `json:"-" xml:"-"` -} - -type metadataDescribeCommandsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4396,11 +4168,7 @@ type DescribeDeploymentsInput struct { // a description of the commands associated with the specified stack. StackId *string `type:"string"` - metadataDescribeDeploymentsInput `json:"-" xml:"-"` -} - -type metadataDescribeDeploymentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4418,11 +4186,7 @@ type DescribeDeploymentsOutput struct { // An array of Deployment objects that describe the deployments. Deployments []*Deployment `type:"list"` - metadataDescribeDeploymentsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDeploymentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4457,11 +4221,7 @@ type DescribeEcsClustersInput struct { // is registered with the stack. StackId *string `type:"string"` - metadataDescribeEcsClustersInput `json:"-" xml:"-"` -} - -type metadataDescribeEcsClustersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4485,11 +4245,7 @@ type DescribeEcsClustersOutput struct { // request returned all of the remaining results, this parameter is set to null. NextToken *string `type:"string"` - metadataDescribeEcsClustersOutput `json:"-" xml:"-"` -} - -type metadataDescribeEcsClustersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4516,11 +4272,7 @@ type DescribeElasticIpsInput struct { // of the Elastic IP addresses that are registered with the specified stack. StackId *string `type:"string"` - metadataDescribeElasticIpsInput `json:"-" xml:"-"` -} - -type metadataDescribeElasticIpsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4538,11 +4290,7 @@ type DescribeElasticIpsOutput struct { // An ElasticIps object that describes the specified Elastic IP addresses. ElasticIps []*ElasticIp `type:"list"` - metadataDescribeElasticIpsOutput `json:"-" xml:"-"` -} - -type metadataDescribeElasticIpsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4563,11 +4311,7 @@ type DescribeElasticLoadBalancersInput struct { // A stack ID. The action describes the stack's Elastic Load Balancing instances. StackId *string `type:"string"` - metadataDescribeElasticLoadBalancersInput `json:"-" xml:"-"` -} - -type metadataDescribeElasticLoadBalancersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4586,11 +4330,7 @@ type DescribeElasticLoadBalancersOutput struct { // Load Balancing instances. ElasticLoadBalancers []*ElasticLoadBalancer `type:"list"` - metadataDescribeElasticLoadBalancersOutput `json:"-" xml:"-"` -} - -type metadataDescribeElasticLoadBalancersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4617,11 +4357,7 @@ type DescribeInstancesInput struct { // of the instances associated with the specified stack. StackId *string `type:"string"` - metadataDescribeInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4639,11 +4375,7 @@ type DescribeInstancesOutput struct { // An array of Instance objects that describe the instances. Instances []*Instance `type:"list"` - metadataDescribeInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4665,11 +4397,7 @@ type DescribeLayersInput struct { // The stack ID. StackId *string `type:"string"` - metadataDescribeLayersInput `json:"-" xml:"-"` -} - -type metadataDescribeLayersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4687,11 +4415,7 @@ type DescribeLayersOutput struct { // An array of Layer objects that describe the layers. Layers []*Layer `type:"list"` - metadataDescribeLayersOutput `json:"-" xml:"-"` -} - -type metadataDescribeLayersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4708,11 +4432,7 @@ type DescribeLoadBasedAutoScalingInput struct { // An array of layer IDs. LayerIds []*string `type:"list" required:"true"` - metadataDescribeLoadBasedAutoScalingInput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBasedAutoScalingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4731,11 +4451,7 @@ type DescribeLoadBasedAutoScalingOutput struct { // layer's configuration. LoadBasedAutoScalingConfigurations []*LoadBasedAutoScalingConfiguration `type:"list"` - metadataDescribeLoadBasedAutoScalingOutput `json:"-" xml:"-"` -} - -type metadataDescribeLoadBasedAutoScalingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4749,11 +4465,7 @@ func (s DescribeLoadBasedAutoScalingOutput) GoString() string { } type DescribeMyUserProfileInput struct { - metadataDescribeMyUserProfileInput `json:"-" xml:"-"` -} - -type metadataDescribeMyUserProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4771,11 +4483,7 @@ type DescribeMyUserProfileOutput struct { // A UserProfile object that describes the user's SSH information. UserProfile *SelfUserProfile `type:"structure"` - metadataDescribeMyUserProfileOutput `json:"-" xml:"-"` -} - -type metadataDescribeMyUserProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4796,11 +4504,7 @@ type DescribePermissionsInput struct { // The stack ID. StackId *string `type:"string"` - metadataDescribePermissionsInput `json:"-" xml:"-"` -} - -type metadataDescribePermissionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4825,11 +4529,7 @@ type DescribePermissionsOutput struct { // for the specified stack and IAM ARN. Permissions []*Permission `type:"list"` - metadataDescribePermissionsOutput `json:"-" xml:"-"` -} - -type metadataDescribePermissionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4855,11 +4555,7 @@ type DescribeRaidArraysInput struct { // The stack ID. StackId *string `type:"string"` - metadataDescribeRaidArraysInput `json:"-" xml:"-"` -} - -type metadataDescribeRaidArraysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4877,11 +4573,7 @@ type DescribeRaidArraysOutput struct { // A RaidArrays object that describes the specified RAID arrays. RaidArrays []*RaidArray `type:"list"` - metadataDescribeRaidArraysOutput `json:"-" xml:"-"` -} - -type metadataDescribeRaidArraysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4902,11 +4594,7 @@ type DescribeRdsDbInstancesInput struct { // descriptions of all registered Amazon RDS instances. StackId *string `type:"string" required:"true"` - metadataDescribeRdsDbInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeRdsDbInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4924,11 +4612,7 @@ type DescribeRdsDbInstancesOutput struct { // An a array of RdsDbInstance objects that describe the instances. RdsDbInstances []*RdsDbInstance `type:"list"` - metadataDescribeRdsDbInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeRdsDbInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4955,11 +4639,7 @@ type DescribeServiceErrorsInput struct { // of the errors associated with the specified stack. StackId *string `type:"string"` - metadataDescribeServiceErrorsInput `json:"-" xml:"-"` -} - -type metadataDescribeServiceErrorsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4977,11 +4657,7 @@ type DescribeServiceErrorsOutput struct { // An array of ServiceError objects that describe the specified service errors. ServiceErrors []*ServiceError `type:"list"` - metadataDescribeServiceErrorsOutput `json:"-" xml:"-"` -} - -type metadataDescribeServiceErrorsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4998,11 +4674,7 @@ type DescribeStackProvisioningParametersInput struct { // The stack ID StackId *string `type:"string" required:"true"` - metadataDescribeStackProvisioningParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeStackProvisioningParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5023,11 +4695,7 @@ type DescribeStackProvisioningParametersOutput struct { // An embedded object that contains the provisioning parameters. Parameters map[string]*string `type:"map"` - metadataDescribeStackProvisioningParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeStackProvisioningParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5044,11 +4712,7 @@ type DescribeStackSummaryInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataDescribeStackSummaryInput `json:"-" xml:"-"` -} - -type metadataDescribeStackSummaryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5066,11 +4730,7 @@ type DescribeStackSummaryOutput struct { // A StackSummary object that contains the results. StackSummary *StackSummary `type:"structure"` - metadataDescribeStackSummaryOutput `json:"-" xml:"-"` -} - -type metadataDescribeStackSummaryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5088,11 +4748,7 @@ type DescribeStacksInput struct { // this parameter, DescribeStacks returns a description of every stack. StackIds []*string `type:"list"` - metadataDescribeStacksInput `json:"-" xml:"-"` -} - -type metadataDescribeStacksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5110,11 +4766,7 @@ type DescribeStacksOutput struct { // An array of Stack objects that describe the stacks. Stacks []*Stack `type:"list"` - metadataDescribeStacksOutput `json:"-" xml:"-"` -} - -type metadataDescribeStacksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5131,11 +4783,7 @@ type DescribeTimeBasedAutoScalingInput struct { // An array of instance IDs. InstanceIds []*string `type:"list" required:"true"` - metadataDescribeTimeBasedAutoScalingInput `json:"-" xml:"-"` -} - -type metadataDescribeTimeBasedAutoScalingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5154,11 +4802,7 @@ type DescribeTimeBasedAutoScalingOutput struct { // for the specified instances. TimeBasedAutoScalingConfigurations []*TimeBasedAutoScalingConfiguration `type:"list"` - metadataDescribeTimeBasedAutoScalingOutput `json:"-" xml:"-"` -} - -type metadataDescribeTimeBasedAutoScalingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5175,11 +4819,7 @@ type DescribeUserProfilesInput struct { // An array of IAM user ARNs that identify the users to be described. IamUserArns []*string `type:"list"` - metadataDescribeUserProfilesInput `json:"-" xml:"-"` -} - -type metadataDescribeUserProfilesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5197,11 +4837,7 @@ type DescribeUserProfilesOutput struct { // A Users object that describes the specified users. UserProfiles []*UserProfile `type:"list"` - metadataDescribeUserProfilesOutput `json:"-" xml:"-"` -} - -type metadataDescribeUserProfilesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5231,11 +4867,7 @@ type DescribeVolumesInput struct { // of every volume. VolumeIds []*string `type:"list"` - metadataDescribeVolumesInput `json:"-" xml:"-"` -} - -type metadataDescribeVolumesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5253,11 +4885,7 @@ type DescribeVolumesOutput struct { // An array of volume IDs. Volumes []*Volume `type:"list"` - metadataDescribeVolumesOutput `json:"-" xml:"-"` -} - -type metadataDescribeVolumesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5278,11 +4906,7 @@ type DetachElasticLoadBalancerInput struct { // to. LayerId *string `type:"string" required:"true"` - metadataDetachElasticLoadBalancerInput `json:"-" xml:"-"` -} - -type metadataDetachElasticLoadBalancerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5296,11 +4920,7 @@ func (s DetachElasticLoadBalancerInput) GoString() string { } type DetachElasticLoadBalancerOutput struct { - metadataDetachElasticLoadBalancerOutput `json:"-" xml:"-"` -} - -type metadataDetachElasticLoadBalancerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5317,11 +4937,7 @@ type DisassociateElasticIpInput struct { // The Elastic IP address. ElasticIp *string `type:"string" required:"true"` - metadataDisassociateElasticIpInput `json:"-" xml:"-"` -} - -type metadataDisassociateElasticIpInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5335,11 +4951,7 @@ func (s DisassociateElasticIpInput) GoString() string { } type DisassociateElasticIpOutput struct { - metadataDisassociateElasticIpOutput `json:"-" xml:"-"` -} - -type metadataDisassociateElasticIpOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5373,11 +4985,7 @@ type EbsBlockDevice struct { // IOPS (SSD) volumes, and standard for Magnetic volumes. VolumeType *string `type:"string" enum:"VolumeType"` - metadataEbsBlockDevice `json:"-" xml:"-"` -} - -type metadataEbsBlockDevice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5404,11 +5012,7 @@ type EcsCluster struct { // The stack ID. StackId *string `type:"string"` - metadataEcsCluster `json:"-" xml:"-"` -} - -type metadataEcsCluster struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5438,11 +5042,7 @@ type ElasticIp struct { // The AWS region. For more information, see Regions and Endpoints (http://docs.aws.amazon.com/general/latest/gr/rande.html). Region *string `type:"string"` - metadataElasticIp `json:"-" xml:"-"` -} - -type metadataElasticIp struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5485,11 +5085,7 @@ type ElasticLoadBalancer struct { // The VPC ID. VpcId *string `type:"string"` - metadataElasticLoadBalancer `json:"-" xml:"-"` -} - -type metadataElasticLoadBalancer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5521,11 +5117,7 @@ type EnvironmentVariable struct { // be printable. Value *string `type:"string" required:"true"` - metadataEnvironmentVariable `json:"-" xml:"-"` -} - -type metadataEnvironmentVariable struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5542,11 +5134,7 @@ type GetHostnameSuggestionInput struct { // The layer ID. LayerId *string `type:"string" required:"true"` - metadataGetHostnameSuggestionInput `json:"-" xml:"-"` -} - -type metadataGetHostnameSuggestionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5567,11 +5155,7 @@ type GetHostnameSuggestionOutput struct { // The layer ID. LayerId *string `type:"string"` - metadataGetHostnameSuggestionOutput `json:"-" xml:"-"` -} - -type metadataGetHostnameSuggestionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5594,11 +5178,7 @@ type GrantAccessInput struct { // will be logged out. ValidForInMinutes *int64 `min:"60" type:"integer"` - metadataGrantAccessInput `json:"-" xml:"-"` -} - -type metadataGrantAccessInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5617,11 +5197,7 @@ type GrantAccessOutput struct { // instance by RDP clients, such as the Microsoft Remote Desktop Connection. TemporaryCredential *TemporaryCredential `type:"structure"` - metadataGrantAccessOutput `json:"-" xml:"-"` -} - -type metadataGrantAccessOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5770,11 +5346,7 @@ type Instance struct { // The instance's virtualization type: paravirtual or hvm. VirtualizationType *string `type:"string" enum:"VirtualizationType"` - metadataInstance `json:"-" xml:"-"` -} - -type metadataInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5796,11 +5368,7 @@ type InstanceIdentity struct { // A signature that can be used to verify the document's accuracy and authenticity. Signature *string `type:"string"` - metadataInstanceIdentity `json:"-" xml:"-"` -} - -type metadataInstanceIdentity struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5872,11 +5440,7 @@ type InstancesCount struct { // The number of instances in the Unassigning state. Unassigning *int64 `type:"integer"` - metadataInstancesCount `json:"-" xml:"-"` -} - -type metadataInstancesCount struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5982,11 +5546,7 @@ type Layer struct { // A VolumeConfigurations object that describes the layer's Amazon EBS volumes. VolumeConfigurations []*VolumeConfiguration `type:"list"` - metadataLayer `json:"-" xml:"-"` -} - -type metadataLayer struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6004,11 +5564,7 @@ type LifecycleEventConfiguration struct { // A ShutdownEventConfiguration object that specifies the Shutdown event configuration. Shutdown *ShutdownEventConfiguration `type:"structure"` - metadataLifecycleEventConfiguration `json:"-" xml:"-"` -} - -type metadataLifecycleEventConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6037,11 +5593,7 @@ type LoadBasedAutoScalingConfiguration struct { // which defines how and when AWS OpsWorks increases the number of instances. UpScaling *AutoScalingThresholds `type:"structure"` - metadataLoadBasedAutoScalingConfiguration `json:"-" xml:"-"` -} - -type metadataLoadBasedAutoScalingConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6075,11 +5627,7 @@ type Permission struct { // A stack ID. StackId *string `type:"string"` - metadataPermission `json:"-" xml:"-"` -} - -type metadataPermission struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6134,11 +5682,7 @@ type RaidArray struct { // The volume type, standard or PIOPS. VolumeType *string `type:"string"` - metadataRaidArray `json:"-" xml:"-"` -} - -type metadataRaidArray struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6182,11 +5726,7 @@ type RdsDbInstance struct { // The ID of the stack that the instance is registered with. StackId *string `type:"string"` - metadataRdsDbInstance `json:"-" xml:"-"` -} - -type metadataRdsDbInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6203,11 +5743,7 @@ type RebootInstanceInput struct { // The instance ID. InstanceId *string `type:"string" required:"true"` - metadataRebootInstanceInput `json:"-" xml:"-"` -} - -type metadataRebootInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6221,11 +5757,7 @@ func (s RebootInstanceInput) GoString() string { } type RebootInstanceOutput struct { - metadataRebootInstanceOutput `json:"-" xml:"-"` -} - -type metadataRebootInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6265,11 +5797,7 @@ type Recipes struct { // An array of custom recipe names to be run following a undeploy event. Undeploy []*string `type:"list"` - metadataRecipes `json:"-" xml:"-"` -} - -type metadataRecipes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6289,11 +5817,7 @@ type RegisterEcsClusterInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataRegisterEcsClusterInput `json:"-" xml:"-"` -} - -type metadataRegisterEcsClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6311,11 +5835,7 @@ type RegisterEcsClusterOutput struct { // The cluster's ARN. EcsClusterArn *string `type:"string"` - metadataRegisterEcsClusterOutput `json:"-" xml:"-"` -} - -type metadataRegisterEcsClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6335,11 +5855,7 @@ type RegisterElasticIpInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataRegisterElasticIpInput `json:"-" xml:"-"` -} - -type metadataRegisterElasticIpInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6357,11 +5873,7 @@ type RegisterElasticIpOutput struct { // The Elastic IP address. ElasticIp *string `type:"string"` - metadataRegisterElasticIpOutput `json:"-" xml:"-"` -} - -type metadataRegisterElasticIpOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6397,11 +5909,7 @@ type RegisterInstanceInput struct { // The ID of the stack that the instance is to be registered with. StackId *string `type:"string" required:"true"` - metadataRegisterInstanceInput `json:"-" xml:"-"` -} - -type metadataRegisterInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6419,11 +5927,7 @@ type RegisterInstanceOutput struct { // The registered instance's AWS OpsWorks ID. InstanceId *string `type:"string"` - metadataRegisterInstanceOutput `json:"-" xml:"-"` -} - -type metadataRegisterInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6449,11 +5953,7 @@ type RegisterRdsDbInstanceInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataRegisterRdsDbInstanceInput `json:"-" xml:"-"` -} - -type metadataRegisterRdsDbInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6467,11 +5967,7 @@ func (s RegisterRdsDbInstanceInput) GoString() string { } type RegisterRdsDbInstanceOutput struct { - metadataRegisterRdsDbInstanceOutput `json:"-" xml:"-"` -} - -type metadataRegisterRdsDbInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6491,11 +5987,7 @@ type RegisterVolumeInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataRegisterVolumeInput `json:"-" xml:"-"` -} - -type metadataRegisterVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6513,11 +6005,7 @@ type RegisterVolumeOutput struct { // The volume ID. VolumeId *string `type:"string"` - metadataRegisterVolumeOutput `json:"-" xml:"-"` -} - -type metadataRegisterVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6541,11 +6029,7 @@ type ReportedOs struct { // The operating system version. Version *string `type:"string"` - metadataReportedOs `json:"-" xml:"-"` -} - -type metadataReportedOs struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6572,11 +6056,7 @@ type SelfUserProfile struct { // The user's SSH user name. SshUsername *string `type:"string"` - metadataSelfUserProfile `json:"-" xml:"-"` -} - -type metadataSelfUserProfile struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6609,11 +6089,7 @@ type ServiceError struct { // The error type. Type *string `type:"string"` - metadataServiceError `json:"-" xml:"-"` -} - -type metadataServiceError struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6643,11 +6119,7 @@ type SetLoadBasedAutoScalingInput struct { // OpsWorks starts a specified number of instances. UpScaling *AutoScalingThresholds `type:"structure"` - metadataSetLoadBasedAutoScalingInput `json:"-" xml:"-"` -} - -type metadataSetLoadBasedAutoScalingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6661,11 +6133,7 @@ func (s SetLoadBasedAutoScalingInput) GoString() string { } type SetLoadBasedAutoScalingOutput struct { - metadataSetLoadBasedAutoScalingOutput `json:"-" xml:"-"` -} - -type metadataSetLoadBasedAutoScalingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6698,11 +6166,7 @@ type SetPermissionInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataSetPermissionInput `json:"-" xml:"-"` -} - -type metadataSetPermissionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6716,11 +6180,7 @@ func (s SetPermissionInput) GoString() string { } type SetPermissionOutput struct { - metadataSetPermissionOutput `json:"-" xml:"-"` -} - -type metadataSetPermissionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6740,11 +6200,7 @@ type SetTimeBasedAutoScalingInput struct { // The instance ID. InstanceId *string `type:"string" required:"true"` - metadataSetTimeBasedAutoScalingInput `json:"-" xml:"-"` -} - -type metadataSetTimeBasedAutoScalingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6758,11 +6214,7 @@ func (s SetTimeBasedAutoScalingInput) GoString() string { } type SetTimeBasedAutoScalingOutput struct { - metadataSetTimeBasedAutoScalingOutput `json:"-" xml:"-"` -} - -type metadataSetTimeBasedAutoScalingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6785,11 +6237,7 @@ type ShutdownEventConfiguration struct { // event before shutting down an instance. ExecutionTimeout *int64 `type:"integer"` - metadataShutdownEventConfiguration `json:"-" xml:"-"` -} - -type metadataShutdownEventConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6841,11 +6289,7 @@ type Source struct { // to the user name. Username *string `type:"string"` - metadataSource `json:"-" xml:"-"` -} - -type metadataSource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6870,11 +6314,7 @@ type SslConfiguration struct { // The private key; the contents of the certificate's domain.kex file. PrivateKey *string `type:"string" required:"true"` - metadataSslConfiguration `json:"-" xml:"-"` -} - -type metadataSslConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6976,11 +6416,7 @@ type Stack struct { // The VPC ID; applicable only if the stack is running in a VPC. VpcId *string `type:"string"` - metadataStack `json:"-" xml:"-"` -} - -type metadataStack struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7002,11 +6438,7 @@ type StackConfigurationManager struct { // default value is 11.4. Version *string `type:"string"` - metadataStackConfigurationManager `json:"-" xml:"-"` -} - -type metadataStackConfigurationManager struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7039,11 +6471,7 @@ type StackSummary struct { // The stack ID. StackId *string `type:"string"` - metadataStackSummary `json:"-" xml:"-"` -} - -type metadataStackSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7060,11 +6488,7 @@ type StartInstanceInput struct { // The instance ID. InstanceId *string `type:"string" required:"true"` - metadataStartInstanceInput `json:"-" xml:"-"` -} - -type metadataStartInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7078,11 +6502,7 @@ func (s StartInstanceInput) GoString() string { } type StartInstanceOutput struct { - metadataStartInstanceOutput `json:"-" xml:"-"` -} - -type metadataStartInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7099,11 +6519,7 @@ type StartStackInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataStartStackInput `json:"-" xml:"-"` -} - -type metadataStartStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7117,11 +6533,7 @@ func (s StartStackInput) GoString() string { } type StartStackOutput struct { - metadataStartStackOutput `json:"-" xml:"-"` -} - -type metadataStartStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7138,11 +6550,7 @@ type StopInstanceInput struct { // The instance ID. InstanceId *string `type:"string" required:"true"` - metadataStopInstanceInput `json:"-" xml:"-"` -} - -type metadataStopInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7156,11 +6564,7 @@ func (s StopInstanceInput) GoString() string { } type StopInstanceOutput struct { - metadataStopInstanceOutput `json:"-" xml:"-"` -} - -type metadataStopInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7177,11 +6581,7 @@ type StopStackInput struct { // The stack ID. StackId *string `type:"string" required:"true"` - metadataStopStackInput `json:"-" xml:"-"` -} - -type metadataStopStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7195,11 +6595,7 @@ func (s StopStackInput) GoString() string { } type StopStackOutput struct { - metadataStopStackOutput `json:"-" xml:"-"` -} - -type metadataStopStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7230,11 +6626,7 @@ type TemporaryCredential struct { // logged out. ValidForInMinutes *int64 `type:"integer"` - metadataTemporaryCredential `json:"-" xml:"-"` -} - -type metadataTemporaryCredential struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7255,11 +6647,7 @@ type TimeBasedAutoScalingConfiguration struct { // The instance ID. InstanceId *string `type:"string"` - metadataTimeBasedAutoScalingConfiguration `json:"-" xml:"-"` -} - -type metadataTimeBasedAutoScalingConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7276,11 +6664,7 @@ type UnassignInstanceInput struct { // The instance ID. InstanceId *string `type:"string" required:"true"` - metadataUnassignInstanceInput `json:"-" xml:"-"` -} - -type metadataUnassignInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7294,11 +6678,7 @@ func (s UnassignInstanceInput) GoString() string { } type UnassignInstanceOutput struct { - metadataUnassignInstanceOutput `json:"-" xml:"-"` -} - -type metadataUnassignInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7315,11 +6695,7 @@ type UnassignVolumeInput struct { // The volume ID. VolumeId *string `type:"string" required:"true"` - metadataUnassignVolumeInput `json:"-" xml:"-"` -} - -type metadataUnassignVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7333,11 +6709,7 @@ func (s UnassignVolumeInput) GoString() string { } type UnassignVolumeOutput struct { - metadataUnassignVolumeOutput `json:"-" xml:"-"` -} - -type metadataUnassignVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7398,11 +6770,7 @@ type UpdateAppInput struct { // The app type. Type *string `type:"string" enum:"AppType"` - metadataUpdateAppInput `json:"-" xml:"-"` -} - -type metadataUpdateAppInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7416,11 +6784,7 @@ func (s UpdateAppInput) GoString() string { } type UpdateAppOutput struct { - metadataUpdateAppOutput `json:"-" xml:"-"` -} - -type metadataUpdateAppOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7440,11 +6804,7 @@ type UpdateElasticIpInput struct { // The new name. Name *string `type:"string"` - metadataUpdateElasticIpInput `json:"-" xml:"-"` -} - -type metadataUpdateElasticIpInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7458,11 +6818,7 @@ func (s UpdateElasticIpInput) GoString() string { } type UpdateElasticIpOutput struct { - metadataUpdateElasticIpOutput `json:"-" xml:"-"` -} - -type metadataUpdateElasticIpOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7556,11 +6912,7 @@ type UpdateInstanceInput struct { // The instance's Amazon EC2 key name. SshKeyName *string `type:"string"` - metadataUpdateInstanceInput `json:"-" xml:"-"` -} - -type metadataUpdateInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7574,11 +6926,7 @@ func (s UpdateInstanceInput) GoString() string { } type UpdateInstanceOutput struct { - metadataUpdateInstanceOutput `json:"-" xml:"-"` -} - -type metadataUpdateInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7659,11 +7007,7 @@ type UpdateLayerInput struct { // A VolumeConfigurations object that describes the layer's Amazon EBS volumes. VolumeConfigurations []*VolumeConfiguration `type:"list"` - metadataUpdateLayerInput `json:"-" xml:"-"` -} - -type metadataUpdateLayerInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7677,11 +7021,7 @@ func (s UpdateLayerInput) GoString() string { } type UpdateLayerOutput struct { - metadataUpdateLayerOutput `json:"-" xml:"-"` -} - -type metadataUpdateLayerOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7698,11 +7038,7 @@ type UpdateMyUserProfileInput struct { // The user's SSH public key. SshPublicKey *string `type:"string"` - metadataUpdateMyUserProfileInput `json:"-" xml:"-"` -} - -type metadataUpdateMyUserProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7716,11 +7052,7 @@ func (s UpdateMyUserProfileInput) GoString() string { } type UpdateMyUserProfileOutput struct { - metadataUpdateMyUserProfileOutput `json:"-" xml:"-"` -} - -type metadataUpdateMyUserProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7743,11 +7075,7 @@ type UpdateRdsDbInstanceInput struct { // The Amazon RDS instance's ARN. RdsDbInstanceArn *string `type:"string" required:"true"` - metadataUpdateRdsDbInstanceInput `json:"-" xml:"-"` -} - -type metadataUpdateRdsDbInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7761,11 +7089,7 @@ func (s UpdateRdsDbInstanceInput) GoString() string { } type UpdateRdsDbInstanceOutput struct { - metadataUpdateRdsDbInstanceOutput `json:"-" xml:"-"` -} - -type metadataUpdateRdsDbInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7909,11 +7233,7 @@ type UpdateStackInput struct { // more information, see Create a New Stack (http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html). UseOpsworksSecurityGroups *bool `type:"boolean"` - metadataUpdateStackInput `json:"-" xml:"-"` -} - -type metadataUpdateStackInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7927,11 +7247,7 @@ func (s UpdateStackInput) GoString() string { } type UpdateStackOutput struct { - metadataUpdateStackOutput `json:"-" xml:"-"` -} - -type metadataUpdateStackOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7962,11 +7278,7 @@ type UpdateUserProfileInput struct { // IAM user name. SshUsername *string `type:"string"` - metadataUpdateUserProfileInput `json:"-" xml:"-"` -} - -type metadataUpdateUserProfileInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7980,11 +7292,7 @@ func (s UpdateUserProfileInput) GoString() string { } type UpdateUserProfileOutput struct { - metadataUpdateUserProfileOutput `json:"-" xml:"-"` -} - -type metadataUpdateUserProfileOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8007,11 +7315,7 @@ type UpdateVolumeInput struct { // The volume ID. VolumeId *string `type:"string" required:"true"` - metadataUpdateVolumeInput `json:"-" xml:"-"` -} - -type metadataUpdateVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8025,11 +7329,7 @@ func (s UpdateVolumeInput) GoString() string { } type UpdateVolumeOutput struct { - metadataUpdateVolumeOutput `json:"-" xml:"-"` -} - -type metadataUpdateVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8060,11 +7360,7 @@ type UserProfile struct { // The user's SSH user name. SshUsername *string `type:"string"` - metadataUserProfile `json:"-" xml:"-"` -} - -type metadataUserProfile struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8120,11 +7416,7 @@ type Volume struct { // The volume type, standard or PIOPS. VolumeType *string `type:"string"` - metadataVolume `json:"-" xml:"-"` -} - -type metadataVolume struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8160,11 +7452,7 @@ type VolumeConfiguration struct { // (SSD) VolumeType *string `type:"string"` - metadataVolumeConfiguration `json:"-" xml:"-"` -} - -type metadataVolumeConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8213,11 +7501,7 @@ type WeeklyAutoScalingSchedule struct { // The schedule for Wednesday. Wednesday map[string]*string `type:"map"` - metadataWeeklyAutoScalingSchedule `json:"-" xml:"-"` -} - -type metadataWeeklyAutoScalingSchedule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/rds/api.go b/service/rds/api.go index 943ac9ae76d..b4562e102d8 100644 --- a/service/rds/api.go +++ b/service/rds/api.go @@ -2731,11 +2731,7 @@ type AccountQuota struct { // The amount currently used toward the quota maximum. Used *int64 `type:"long"` - metadataAccountQuota `json:"-" xml:"-"` -} - -type metadataAccountQuota struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2766,11 +2762,7 @@ type AddSourceIdentifierToSubscriptionInput struct { // identifier to. SubscriptionName *string `type:"string" required:"true"` - metadataAddSourceIdentifierToSubscriptionInput `json:"-" xml:"-"` -} - -type metadataAddSourceIdentifierToSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2788,11 +2780,7 @@ type AddSourceIdentifierToSubscriptionOutput struct { // action. EventSubscription *EventSubscription `type:"structure"` - metadataAddSourceIdentifierToSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataAddSourceIdentifierToSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2814,11 +2802,7 @@ type AddTagsToResourceInput struct { // The tags to be assigned to the Amazon RDS resource. Tags []*Tag `locationNameList:"Tag" type:"list" required:"true"` - metadataAddTagsToResourceInput `json:"-" xml:"-"` -} - -type metadataAddTagsToResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2832,11 +2816,7 @@ func (s AddTagsToResourceInput) GoString() string { } type AddTagsToResourceOutput struct { - metadataAddTagsToResourceOutput `json:"-" xml:"-"` -} - -type metadataAddTagsToResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2868,11 +2848,7 @@ type ApplyPendingMaintenanceActionInput struct { // an RDS Amazon Resource Name (ARN) (http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.ARN). ResourceIdentifier *string `type:"string" required:"true"` - metadataApplyPendingMaintenanceActionInput `json:"-" xml:"-"` -} - -type metadataApplyPendingMaintenanceActionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2889,11 +2865,7 @@ type ApplyPendingMaintenanceActionOutput struct { // Describes the pending maintenance actions for a resource. ResourcePendingMaintenanceActions *ResourcePendingMaintenanceActions `type:"structure"` - metadataApplyPendingMaintenanceActionOutput `json:"-" xml:"-"` -} - -type metadataApplyPendingMaintenanceActionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2930,11 +2902,7 @@ type AuthorizeDBSecurityGroupIngressInput struct { // must be provided. EC2SecurityGroupOwnerId *string `type:"string"` - metadataAuthorizeDBSecurityGroupIngressInput `json:"-" xml:"-"` -} - -type metadataAuthorizeDBSecurityGroupIngressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2955,11 +2923,7 @@ type AuthorizeDBSecurityGroupIngressOutput struct { // in the DescribeDBSecurityGroups action. DBSecurityGroup *DBSecurityGroup `type:"structure"` - metadataAuthorizeDBSecurityGroupIngressOutput `json:"-" xml:"-"` -} - -type metadataAuthorizeDBSecurityGroupIngressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2979,11 +2943,7 @@ type AvailabilityZone struct { // The name of the availability zone. Name *string `type:"string"` - metadataAvailabilityZone `json:"-" xml:"-"` -} - -type metadataAvailabilityZone struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3013,11 +2973,7 @@ type Certificate struct { // The final date that the certificate continues to be valid. ValidTill *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataCertificate `json:"-" xml:"-"` -} - -type metadataCertificate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3038,11 +2994,7 @@ type CharacterSet struct { // The name of the character set. CharacterSetName *string `type:"string"` - metadataCharacterSet `json:"-" xml:"-"` -} - -type metadataCharacterSet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3079,11 +3031,7 @@ type CopyDBClusterSnapshotInput struct { // Example: my-cluster-snapshot2 TargetDBClusterSnapshotIdentifier *string `type:"string" required:"true"` - metadataCopyDBClusterSnapshotInput `json:"-" xml:"-"` -} - -type metadataCopyDBClusterSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3103,11 +3051,7 @@ type CopyDBClusterSnapshotOutput struct { // used as a response element in the DescribeDBClusterSnapshots action. DBClusterSnapshot *DBClusterSnapshot `type:"structure"` - metadataCopyDBClusterSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCopyDBClusterSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3149,11 +3093,7 @@ type CopyDBParameterGroupInput struct { // hyphen or contain two consecutive hyphens Example: my-db-parameter-group TargetDBParameterGroupIdentifier *string `type:"string" required:"true"` - metadataCopyDBParameterGroupInput `json:"-" xml:"-"` -} - -type metadataCopyDBParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3174,11 +3114,7 @@ type CopyDBParameterGroupOutput struct { // action, and as a response element in the DescribeDBParameterGroups action. DBParameterGroup *DBParameterGroup `type:"structure"` - metadataCopyDBParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataCopyDBParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3225,11 +3161,7 @@ type CopyDBSnapshotInput struct { // hyphen or contain two consecutive hyphens Example: my-db-snapshot TargetDBSnapshotIdentifier *string `type:"string" required:"true"` - metadataCopyDBSnapshotInput `json:"-" xml:"-"` -} - -type metadataCopyDBSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3249,11 +3181,7 @@ type CopyDBSnapshotOutput struct { // element in the DescribeDBSnapshots action. DBSnapshot *DBSnapshot `type:"structure"` - metadataCopyDBSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCopyDBSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3293,11 +3221,7 @@ type CopyOptionGroupInput struct { // hyphen or contain two consecutive hyphens Example: my-option-group TargetOptionGroupIdentifier *string `type:"string" required:"true"` - metadataCopyOptionGroupInput `json:"-" xml:"-"` -} - -type metadataCopyOptionGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3313,11 +3237,7 @@ func (s CopyOptionGroupInput) GoString() string { type CopyOptionGroupOutput struct { OptionGroup *OptionGroup `type:"structure"` - metadataCopyOptionGroupOutput `json:"-" xml:"-"` -} - -type metadataCopyOptionGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3451,11 +3371,7 @@ type CreateDBClusterInput struct { // A list of EC2 VPC security groups to associate with this DB cluster. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataCreateDBClusterInput `json:"-" xml:"-"` -} - -type metadataCreateDBClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3476,11 +3392,7 @@ type CreateDBClusterOutput struct { // in the DescribeDBClusters action. DBCluster *DBCluster `type:"structure"` - metadataCreateDBClusterOutput `json:"-" xml:"-"` -} - -type metadataCreateDBClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3515,11 +3427,7 @@ type CreateDBClusterParameterGroupInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateDBClusterParameterGroupInput `json:"-" xml:"-"` -} - -type metadataCreateDBClusterParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3541,11 +3449,7 @@ type CreateDBClusterParameterGroupOutput struct { // action. DBClusterParameterGroup *DBClusterParameterGroup `type:"structure"` - metadataCreateDBClusterParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateDBClusterParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3582,11 +3486,7 @@ type CreateDBClusterSnapshotInput struct { // The tags to be assigned to the DB cluster snapshot. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateDBClusterSnapshotInput `json:"-" xml:"-"` -} - -type metadataCreateDBClusterSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3606,11 +3506,7 @@ type CreateDBClusterSnapshotOutput struct { // used as a response element in the DescribeDBClusterSnapshots action. DBClusterSnapshot *DBClusterSnapshot `type:"structure"` - metadataCreateDBClusterSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCreateDBClusterSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4093,11 +3989,7 @@ type CreateDBInstanceInput struct { // Default: The default EC2 VPC security group for the DB subnet group's VPC. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataCreateDBInstanceInput `json:"-" xml:"-"` -} - -type metadataCreateDBInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4117,11 +4009,7 @@ type CreateDBInstanceOutput struct { // is used as a response element in the DescribeDBInstances action. DBInstance *DBInstance `type:"structure"` - metadataCreateDBInstanceOutput `json:"-" xml:"-"` -} - -type metadataCreateDBInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4243,11 +4131,7 @@ type CreateDBInstanceReadReplicaInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateDBInstanceReadReplicaInput `json:"-" xml:"-"` -} - -type metadataCreateDBInstanceReadReplicaInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4267,11 +4151,7 @@ type CreateDBInstanceReadReplicaOutput struct { // is used as a response element in the DescribeDBInstances action. DBInstance *DBInstance `type:"structure"` - metadataCreateDBInstanceReadReplicaOutput `json:"-" xml:"-"` -} - -type metadataCreateDBInstanceReadReplicaOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4306,11 +4186,7 @@ type CreateDBParameterGroupInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateDBParameterGroupInput `json:"-" xml:"-"` -} - -type metadataCreateDBParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4331,11 +4207,7 @@ type CreateDBParameterGroupOutput struct { // action, and as a response element in the DescribeDBParameterGroups action. DBParameterGroup *DBParameterGroup `type:"structure"` - metadataCreateDBParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateDBParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4364,11 +4236,7 @@ type CreateDBSecurityGroupInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateDBSecurityGroupInput `json:"-" xml:"-"` -} - -type metadataCreateDBSecurityGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4389,11 +4257,7 @@ type CreateDBSecurityGroupOutput struct { // in the DescribeDBSecurityGroups action. DBSecurityGroup *DBSecurityGroup `type:"structure"` - metadataCreateDBSecurityGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateDBSecurityGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4427,11 +4291,7 @@ type CreateDBSnapshotInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateDBSnapshotInput `json:"-" xml:"-"` -} - -type metadataCreateDBSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4451,11 +4311,7 @@ type CreateDBSnapshotOutput struct { // element in the DescribeDBSnapshots action. DBSnapshot *DBSnapshot `type:"structure"` - metadataCreateDBSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCreateDBSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4486,11 +4342,7 @@ type CreateDBSubnetGroupInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateDBSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataCreateDBSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4511,11 +4363,7 @@ type CreateDBSubnetGroupOutput struct { // action. DBSubnetGroup *DBSubnetGroup `type:"structure"` - metadataCreateDBSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateDBSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4576,11 +4424,7 @@ type CreateEventSubscriptionInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateEventSubscriptionInput `json:"-" xml:"-"` -} - -type metadataCreateEventSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4598,11 +4442,7 @@ type CreateEventSubscriptionOutput struct { // action. EventSubscription *EventSubscription `type:"structure"` - metadataCreateEventSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataCreateEventSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4639,11 +4479,7 @@ type CreateOptionGroupInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateOptionGroupInput `json:"-" xml:"-"` -} - -type metadataCreateOptionGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4659,11 +4495,7 @@ func (s CreateOptionGroupInput) GoString() string { type CreateOptionGroupOutput struct { OptionGroup *OptionGroup `type:"structure"` - metadataCreateOptionGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateOptionGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4761,11 +4593,7 @@ type DBCluster struct { // Provides a list of VPC security groups that the DB cluster belongs to. VpcSecurityGroups []*VpcSecurityGroupMembership `locationNameList:"VpcSecurityGroupMembership" type:"list"` - metadataDBCluster `json:"-" xml:"-"` -} - -type metadataDBCluster struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4791,11 +4619,7 @@ type DBClusterMember struct { // DB cluster and false otherwise. IsClusterWriter *bool `type:"boolean"` - metadataDBClusterMember `json:"-" xml:"-"` -} - -type metadataDBClusterMember struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4816,11 +4640,7 @@ type DBClusterOptionGroupStatus struct { // Specifies the status of the DB cluster option group. Status *string `type:"string"` - metadataDBClusterOptionGroupStatus `json:"-" xml:"-"` -} - -type metadataDBClusterOptionGroupStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4851,11 +4671,7 @@ type DBClusterParameterGroup struct { // group. Description *string `type:"string"` - metadataDBClusterParameterGroup `json:"-" xml:"-"` -} - -type metadataDBClusterParameterGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4878,11 +4694,7 @@ type DBClusterParameterGroupNameMessage struct { // stored as a lowercase string. DBClusterParameterGroupName *string `type:"string"` - metadataDBClusterParameterGroupNameMessage `json:"-" xml:"-"` -} - -type metadataDBClusterParameterGroupNameMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4950,11 +4762,7 @@ type DBClusterSnapshot struct { // Provides the VPC ID associated with the DB cluster snapshot. VpcId *string `type:"string"` - metadataDBClusterSnapshot `json:"-" xml:"-"` -} - -type metadataDBClusterSnapshot struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4996,11 +4804,7 @@ type DBEngineVersion struct { // to. ValidUpgradeTarget []*UpgradeTarget `locationNameList:"UpgradeTarget" type:"list"` - metadataDBEngineVersion `json:"-" xml:"-"` -} - -type metadataDBEngineVersion struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5186,11 +4990,7 @@ type DBInstance struct { // to. VpcSecurityGroups []*VpcSecurityGroupMembership `locationNameList:"VpcSecurityGroupMembership" type:"list"` - metadataDBInstance `json:"-" xml:"-"` -} - -type metadataDBInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5220,11 +5020,7 @@ type DBInstanceStatusInfo struct { // This value is currently "read replication." StatusType *string `type:"string"` - metadataDBInstanceStatusInfo `json:"-" xml:"-"` -} - -type metadataDBInstanceStatusInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5253,11 +5049,7 @@ type DBParameterGroup struct { // Provides the customer-specified description for this DB parameter group. Description *string `type:"string"` - metadataDBParameterGroup `json:"-" xml:"-"` -} - -type metadataDBParameterGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5276,11 +5068,7 @@ type DBParameterGroupNameMessage struct { // Provides the name of the DB parameter group. DBParameterGroupName *string `type:"string"` - metadataDBParameterGroupNameMessage `json:"-" xml:"-"` -} - -type metadataDBParameterGroupNameMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5306,11 +5094,7 @@ type DBParameterGroupStatus struct { // The status of parameter updates. ParameterApplyStatus *string `type:"string"` - metadataDBParameterGroupStatus `json:"-" xml:"-"` -} - -type metadataDBParameterGroupStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5347,11 +5131,7 @@ type DBSecurityGroup struct { // Provides the VpcId of the DB security group. VpcId *string `type:"string"` - metadataDBSecurityGroup `json:"-" xml:"-"` -} - -type metadataDBSecurityGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5375,11 +5155,7 @@ type DBSecurityGroupMembership struct { // The status of the DB security group. Status *string `type:"string"` - metadataDBSecurityGroupMembership `json:"-" xml:"-"` -} - -type metadataDBSecurityGroupMembership struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5473,11 +5249,7 @@ type DBSnapshot struct { // Provides the VPC ID associated with the DB snapshot. VpcId *string `type:"string"` - metadataDBSnapshot `json:"-" xml:"-"` -} - -type metadataDBSnapshot struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5510,11 +5282,7 @@ type DBSnapshotAttribute struct { // available for any AWS account to copy or restore. AttributeValues []*string `locationNameList:"AttributeValue" type:"list"` - metadataDBSnapshotAttribute `json:"-" xml:"-"` -} - -type metadataDBSnapshotAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5540,11 +5308,7 @@ type DBSnapshotAttributesResult struct { // The identifier of the manual DB snapshot that the attributes apply to. DBSnapshotIdentifier *string `type:"string"` - metadataDBSnapshotAttributesResult `json:"-" xml:"-"` -} - -type metadataDBSnapshotAttributesResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5578,11 +5342,7 @@ type DBSubnetGroup struct { // Provides the VpcId of the DB subnet group. VpcId *string `type:"string"` - metadataDBSubnetGroup `json:"-" xml:"-"` -} - -type metadataDBSubnetGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5623,11 +5383,7 @@ type DeleteDBClusterInput struct { // is false. Default: false SkipFinalSnapshot *bool `type:"boolean"` - metadataDeleteDBClusterInput `json:"-" xml:"-"` -} - -type metadataDeleteDBClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5648,11 +5404,7 @@ type DeleteDBClusterOutput struct { // in the DescribeDBClusters action. DBCluster *DBCluster `type:"structure"` - metadataDeleteDBClusterOutput `json:"-" xml:"-"` -} - -type metadataDeleteDBClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5675,11 +5427,7 @@ type DeleteDBClusterParameterGroupInput struct { // DB clusters. DBClusterParameterGroupName *string `type:"string" required:"true"` - metadataDeleteDBClusterParameterGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteDBClusterParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5693,11 +5441,7 @@ func (s DeleteDBClusterParameterGroupInput) GoString() string { } type DeleteDBClusterParameterGroupOutput struct { - metadataDeleteDBClusterParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteDBClusterParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5717,11 +5461,7 @@ type DeleteDBClusterSnapshotInput struct { // available state. DBClusterSnapshotIdentifier *string `type:"string" required:"true"` - metadataDeleteDBClusterSnapshotInput `json:"-" xml:"-"` -} - -type metadataDeleteDBClusterSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5741,11 +5481,7 @@ type DeleteDBClusterSnapshotOutput struct { // used as a response element in the DescribeDBClusterSnapshots action. DBClusterSnapshot *DBClusterSnapshot `type:"structure"` - metadataDeleteDBClusterSnapshotOutput `json:"-" xml:"-"` -} - -type metadataDeleteDBClusterSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5793,11 +5529,7 @@ type DeleteDBInstanceInput struct { // is false. Default: false SkipFinalSnapshot *bool `type:"boolean"` - metadataDeleteDBInstanceInput `json:"-" xml:"-"` -} - -type metadataDeleteDBInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5817,11 +5549,7 @@ type DeleteDBInstanceOutput struct { // is used as a response element in the DescribeDBInstances action. DBInstance *DBInstance `type:"structure"` - metadataDeleteDBInstanceOutput `json:"-" xml:"-"` -} - -type metadataDeleteDBInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5843,11 +5571,7 @@ type DeleteDBParameterGroupInput struct { // default DB parameter group Cannot be associated with any DB instances DBParameterGroupName *string `type:"string" required:"true"` - metadataDeleteDBParameterGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteDBParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5861,11 +5585,7 @@ func (s DeleteDBParameterGroupInput) GoString() string { } type DeleteDBParameterGroupOutput struct { - metadataDeleteDBParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteDBParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5888,11 +5608,7 @@ type DeleteDBSecurityGroupInput struct { // Cannot contain spaces DBSecurityGroupName *string `type:"string" required:"true"` - metadataDeleteDBSecurityGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteDBSecurityGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5906,11 +5622,7 @@ func (s DeleteDBSecurityGroupInput) GoString() string { } type DeleteDBSecurityGroupOutput struct { - metadataDeleteDBSecurityGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteDBSecurityGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5930,11 +5642,7 @@ type DeleteDBSnapshotInput struct { // state. DBSnapshotIdentifier *string `type:"string" required:"true"` - metadataDeleteDBSnapshotInput `json:"-" xml:"-"` -} - -type metadataDeleteDBSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5954,11 +5662,7 @@ type DeleteDBSnapshotOutput struct { // element in the DescribeDBSnapshots action. DBSnapshot *DBSnapshot `type:"structure"` - metadataDeleteDBSnapshotOutput `json:"-" xml:"-"` -} - -type metadataDeleteDBSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5980,11 +5684,7 @@ type DeleteDBSubnetGroupInput struct { // Cannot end with a hyphen or contain two consecutive hyphens DBSubnetGroupName *string `type:"string" required:"true"` - metadataDeleteDBSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteDBSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5998,11 +5698,7 @@ func (s DeleteDBSubnetGroupInput) GoString() string { } type DeleteDBSubnetGroupOutput struct { - metadataDeleteDBSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteDBSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6019,11 +5715,7 @@ type DeleteEventSubscriptionInput struct { // The name of the RDS event notification subscription you want to delete. SubscriptionName *string `type:"string" required:"true"` - metadataDeleteEventSubscriptionInput `json:"-" xml:"-"` -} - -type metadataDeleteEventSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6041,11 +5733,7 @@ type DeleteEventSubscriptionOutput struct { // action. EventSubscription *EventSubscription `type:"structure"` - metadataDeleteEventSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataDeleteEventSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6064,11 +5752,7 @@ type DeleteOptionGroupInput struct { // You cannot delete default option groups. OptionGroupName *string `type:"string" required:"true"` - metadataDeleteOptionGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteOptionGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6082,11 +5766,7 @@ func (s DeleteOptionGroupInput) GoString() string { } type DeleteOptionGroupOutput struct { - metadataDeleteOptionGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteOptionGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6100,11 +5780,7 @@ func (s DeleteOptionGroupOutput) GoString() string { } type DescribeAccountAttributesInput struct { - metadataDescribeAccountAttributesInput `json:"-" xml:"-"` -} - -type metadataDescribeAccountAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6123,11 +5799,7 @@ type DescribeAccountAttributesOutput struct { // a count of usage toward the quota maximum, and a maximum value for the quota. AccountQuotas []*AccountQuota `locationNameList:"AccountQuota" type:"list"` - metadataDescribeAccountAttributesOutput `json:"-" xml:"-"` -} - -type metadataDescribeAccountAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6168,11 +5840,7 @@ type DescribeCertificatesInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeCertificatesInput `json:"-" xml:"-"` -} - -type metadataDescribeCertificatesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6195,11 +5863,7 @@ type DescribeCertificatesOutput struct { // beyond the marker, up to the value specified by MaxRecords . Marker *string `type:"string"` - metadataDescribeCertificatesOutput `json:"-" xml:"-"` -} - -type metadataDescribeCertificatesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6238,11 +5902,7 @@ type DescribeDBClusterParameterGroupsInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeDBClusterParameterGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeDBClusterParameterGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6264,11 +5924,7 @@ type DescribeDBClusterParameterGroupsOutput struct { // beyond the marker, up to the value specified by MaxRecords. Marker *string `type:"string"` - metadataDescribeDBClusterParameterGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBClusterParameterGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6312,11 +5968,7 @@ type DescribeDBClusterParametersInput struct { // sources can be engine, service, or customer. Source *string `type:"string"` - metadataDescribeDBClusterParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeDBClusterParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6340,11 +5992,7 @@ type DescribeDBClusterParametersOutput struct { // Provides a list of parameters for the DB cluster parameter group. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` - metadataDescribeDBClusterParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBClusterParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6402,11 +6050,7 @@ type DescribeDBClusterSnapshotsInput struct { // include all snapshot types. SnapshotType *string `type:"string"` - metadataDescribeDBClusterSnapshotsInput `json:"-" xml:"-"` -} - -type metadataDescribeDBClusterSnapshotsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6430,11 +6074,7 @@ type DescribeDBClusterSnapshotsOutput struct { // beyond the marker, up to the value specified by MaxRecords. Marker *string `type:"string"` - metadataDescribeDBClusterSnapshotsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBClusterSnapshotsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6475,11 +6115,7 @@ type DescribeDBClustersInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeDBClustersInput `json:"-" xml:"-"` -} - -type metadataDescribeDBClustersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6501,11 +6137,7 @@ type DescribeDBClustersOutput struct { // A pagination token that can be used in a subsequent DescribeDBClusters request. Marker *string `type:"string"` - metadataDescribeDBClustersOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBClustersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6561,11 +6193,7 @@ type DescribeDBEngineVersionsInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeDBEngineVersionsInput `json:"-" xml:"-"` -} - -type metadataDescribeDBEngineVersionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6589,11 +6217,7 @@ type DescribeDBEngineVersionsOutput struct { // the value specified by MaxRecords. Marker *string `type:"string"` - metadataDescribeDBEngineVersionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBEngineVersionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6633,11 +6257,7 @@ type DescribeDBInstancesInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeDBInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeDBInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6661,11 +6281,7 @@ type DescribeDBInstancesOutput struct { // the value specified by MaxRecords . Marker *string `type:"string"` - metadataDescribeDBInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6689,11 +6305,7 @@ type DescribeDBLogFilesDetails struct { // The size, in bytes, of the log file for the specified DB instance. Size *int64 `type:"long"` - metadataDescribeDBLogFilesDetails `json:"-" xml:"-"` -} - -type metadataDescribeDBLogFilesDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6740,11 +6352,7 @@ type DescribeDBLogFilesInput struct { // is included in the response so that the remaining results can be retrieved. MaxRecords *int64 `type:"integer"` - metadataDescribeDBLogFilesInput `json:"-" xml:"-"` -} - -type metadataDescribeDBLogFilesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6765,11 +6373,7 @@ type DescribeDBLogFilesOutput struct { // A pagination token that can be used in a subsequent DescribeDBLogFiles request. Marker *string `type:"string"` - metadataDescribeDBLogFilesOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBLogFilesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6808,11 +6412,7 @@ type DescribeDBParameterGroupsInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeDBParameterGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeDBParameterGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6836,11 +6436,7 @@ type DescribeDBParameterGroupsOutput struct { // the value specified by MaxRecords. Marker *string `type:"string"` - metadataDescribeDBParameterGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBParameterGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6886,11 +6482,7 @@ type DescribeDBParametersInput struct { // Valid Values: user | system | engine-default Source *string `type:"string"` - metadataDescribeDBParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeDBParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6914,11 +6506,7 @@ type DescribeDBParametersOutput struct { // A list of Parameter values. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` - metadataDescribeDBParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6952,11 +6540,7 @@ type DescribeDBSecurityGroupsInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeDBSecurityGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeDBSecurityGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6980,11 +6564,7 @@ type DescribeDBSecurityGroupsOutput struct { // the value specified by MaxRecords. Marker *string `type:"string"` - metadataDescribeDBSecurityGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBSecurityGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7001,11 +6581,7 @@ type DescribeDBSnapshotAttributesInput struct { // The identifier for the DB snapshot to modify the attributes for. DBSnapshotIdentifier *string `type:"string"` - metadataDescribeDBSnapshotAttributesInput `json:"-" xml:"-"` -} - -type metadataDescribeDBSnapshotAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7027,11 +6603,7 @@ type DescribeDBSnapshotAttributesOutput struct { // API. DBSnapshotAttributesResult *DBSnapshotAttributesResult `type:"structure"` - metadataDescribeDBSnapshotAttributesOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBSnapshotAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7118,11 +6690,7 @@ type DescribeDBSnapshotsInput struct { // apply when SnapshotType is set to public. SnapshotType *string `type:"string"` - metadataDescribeDBSnapshotsInput `json:"-" xml:"-"` -} - -type metadataDescribeDBSnapshotsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7146,11 +6714,7 @@ type DescribeDBSnapshotsOutput struct { // the value specified by MaxRecords. Marker *string `type:"string"` - metadataDescribeDBSnapshotsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBSnapshotsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7184,11 +6748,7 @@ type DescribeDBSubnetGroupsInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeDBSubnetGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeDBSubnetGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7212,11 +6772,7 @@ type DescribeDBSubnetGroupsOutput struct { // the value specified by MaxRecords. Marker *string `type:"string"` - metadataDescribeDBSubnetGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeDBSubnetGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7251,11 +6807,7 @@ type DescribeEngineDefaultClusterParametersInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeEngineDefaultClusterParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeEngineDefaultClusterParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7273,11 +6825,7 @@ type DescribeEngineDefaultClusterParametersOutput struct { // action. EngineDefaults *EngineDefaults `type:"structure"` - metadataDescribeEngineDefaultClusterParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeEngineDefaultClusterParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7311,11 +6859,7 @@ type DescribeEngineDefaultParametersInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeEngineDefaultParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeEngineDefaultParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7333,11 +6877,7 @@ type DescribeEngineDefaultParametersOutput struct { // action. EngineDefaults *EngineDefaults `type:"structure"` - metadataDescribeEngineDefaultParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeEngineDefaultParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7359,11 +6899,7 @@ type DescribeEventCategoriesInput struct { // Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot SourceType *string `type:"string"` - metadataDescribeEventCategoriesInput `json:"-" xml:"-"` -} - -type metadataDescribeEventCategoriesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7381,11 +6917,7 @@ type DescribeEventCategoriesOutput struct { // A list of EventCategoriesMap data types. EventCategoriesMapList []*EventCategoriesMap `locationNameList:"EventCategoriesMap" type:"list"` - metadataDescribeEventCategoriesOutput `json:"-" xml:"-"` -} - -type metadataDescribeEventCategoriesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7419,11 +6951,7 @@ type DescribeEventSubscriptionsInput struct { // The name of the RDS event notification subscription you want to describe. SubscriptionName *string `type:"string"` - metadataDescribeEventSubscriptionsInput `json:"-" xml:"-"` -} - -type metadataDescribeEventSubscriptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7446,11 +6974,7 @@ type DescribeEventSubscriptionsOutput struct { // beyond the marker, up to the value specified by MaxRecords. Marker *string `type:"string"` - metadataDescribeEventSubscriptionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeEventSubscriptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7521,11 +7045,7 @@ type DescribeEventsInput struct { // Example: 2009-07-08T18:00Z StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataDescribeEventsInput `json:"-" xml:"-"` -} - -type metadataDescribeEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7548,11 +7068,7 @@ type DescribeEventsOutput struct { // up to the value specified by MaxRecords . Marker *string `type:"string"` - metadataDescribeEventsOutput `json:"-" xml:"-"` -} - -type metadataDescribeEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7591,11 +7107,7 @@ type DescribeOptionGroupOptionsInput struct { // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeOptionGroupOptionsInput `json:"-" xml:"-"` -} - -type metadataDescribeOptionGroupOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7617,11 +7129,7 @@ type DescribeOptionGroupOptionsOutput struct { // List of available option group options. OptionGroupOptions []*OptionGroupOption `locationNameList:"OptionGroupOption" type:"list"` - metadataDescribeOptionGroupOptionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeOptionGroupOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7665,11 +7173,7 @@ type DescribeOptionGroupsInput struct { // EngineName or MajorEngineVersion. OptionGroupName *string `type:"string"` - metadataDescribeOptionGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeOptionGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7692,11 +7196,7 @@ type DescribeOptionGroupsOutput struct { // List of option groups. OptionGroupsList []*OptionGroup `locationNameList:"OptionGroup" type:"list"` - metadataDescribeOptionGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeOptionGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7746,11 +7246,7 @@ type DescribeOrderableDBInstanceOptionsInput struct { // or non-VPC offerings. Vpc *bool `type:"boolean"` - metadataDescribeOrderableDBInstanceOptionsInput `json:"-" xml:"-"` -} - -type metadataDescribeOrderableDBInstanceOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7775,11 +7271,7 @@ type DescribeOrderableDBInstanceOptionsOutput struct { // options for the DB instance. OrderableDBInstanceOptions []*OrderableDBInstanceOption `locationNameList:"OrderableDBInstanceOption" type:"list"` - metadataDescribeOrderableDBInstanceOptionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeOrderableDBInstanceOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7820,11 +7312,7 @@ type DescribePendingMaintenanceActionsInput struct { // The ARN of a resource to return pending maintenance actions for. ResourceIdentifier *string `type:"string"` - metadataDescribePendingMaintenanceActionsInput `json:"-" xml:"-"` -} - -type metadataDescribePendingMaintenanceActionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7847,11 +7335,7 @@ type DescribePendingMaintenanceActionsOutput struct { // A list of the pending maintenance actions for the resource. PendingMaintenanceActions []*ResourcePendingMaintenanceActions `locationNameList:"ResourcePendingMaintenanceActions" type:"list"` - metadataDescribePendingMaintenanceActionsOutput `json:"-" xml:"-"` -} - -type metadataDescribePendingMaintenanceActionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7914,11 +7398,7 @@ type DescribeReservedDBInstancesInput struct { // purchased reservations matching the specified offering identifier. ReservedDBInstancesOfferingId *string `type:"string"` - metadataDescribeReservedDBInstancesInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedDBInstancesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7979,11 +7459,7 @@ type DescribeReservedDBInstancesOfferingsInput struct { // Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706 ReservedDBInstancesOfferingId *string `type:"string"` - metadataDescribeReservedDBInstancesOfferingsInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedDBInstancesOfferingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8007,11 +7483,7 @@ type DescribeReservedDBInstancesOfferingsOutput struct { // A list of reserved DB instance offerings. ReservedDBInstancesOfferings []*ReservedDBInstancesOffering `locationNameList:"ReservedDBInstancesOffering" type:"list"` - metadataDescribeReservedDBInstancesOfferingsOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedDBInstancesOfferingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8035,11 +7507,7 @@ type DescribeReservedDBInstancesOutput struct { // A list of reserved DB instances. ReservedDBInstances []*ReservedDBInstance `locationNameList:"ReservedDBInstance" type:"list"` - metadataDescribeReservedDBInstancesOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedDBInstancesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8091,11 +7559,7 @@ type DownloadDBLogFilePortionInput struct { // continuing until the AdditionalDataPending response element returns false. NumberOfLines *int64 `type:"integer"` - metadataDownloadDBLogFilePortionInput `json:"-" xml:"-"` -} - -type metadataDownloadDBLogFilePortionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8120,11 +7584,7 @@ type DownloadDBLogFilePortionOutput struct { // request. Marker *string `type:"string"` - metadataDownloadDBLogFilePortionOutput `json:"-" xml:"-"` -} - -type metadataDownloadDBLogFilePortionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8155,11 +7615,7 @@ type EC2SecurityGroup struct { // "authorized", "revoking", and "revoked". Status *string `type:"string"` - metadataEC2SecurityGroup `json:"-" xml:"-"` -} - -type metadataEC2SecurityGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8185,11 +7641,7 @@ type Endpoint struct { // Specifies the port that the database engine is listening on. Port *int64 `type:"integer"` - metadataEndpoint `json:"-" xml:"-"` -} - -type metadataEndpoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8217,11 +7669,7 @@ type EngineDefaults struct { // Contains a list of engine default parameters. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` - metadataEngineDefaults `json:"-" xml:"-"` -} - -type metadataEngineDefaults struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8251,11 +7699,7 @@ type Event struct { // Specifies the source type for this event. SourceType *string `type:"string" enum:"SourceType"` - metadataEvent `json:"-" xml:"-"` -} - -type metadataEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8277,11 +7721,7 @@ type EventCategoriesMap struct { // The source type that the returned categories belong to SourceType *string `type:"string"` - metadataEventCategoriesMap `json:"-" xml:"-"` -} - -type metadataEventCategoriesMap struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8334,11 +7774,7 @@ type EventSubscription struct { // The time the RDS event notification subscription was created. SubscriptionCreationTime *string `type:"string"` - metadataEventSubscription `json:"-" xml:"-"` -} - -type metadataEventSubscription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8360,11 +7796,7 @@ type FailoverDBClusterInput struct { // must be a letter Cannot end with a hyphen or contain two consecutive hyphens DBClusterIdentifier *string `type:"string"` - metadataFailoverDBClusterInput `json:"-" xml:"-"` -} - -type metadataFailoverDBClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8385,11 +7817,7 @@ type FailoverDBClusterOutput struct { // in the DescribeDBClusters action. DBCluster *DBCluster `type:"structure"` - metadataFailoverDBClusterOutput `json:"-" xml:"-"` -} - -type metadataFailoverDBClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8409,11 +7837,7 @@ type Filter struct { // This parameter is not currently supported. Values []*string `locationNameList:"Value" type:"list" required:"true"` - metadataFilter `json:"-" xml:"-"` -} - -type metadataFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8436,11 +7860,7 @@ type IPRange struct { // "revoking", and "revoked". Status *string `type:"string"` - metadataIPRange `json:"-" xml:"-"` -} - -type metadataIPRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8462,11 +7882,7 @@ type ListTagsForResourceInput struct { // Amazon Resource Name (ARN) (http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.ARN). ResourceName *string `type:"string" required:"true"` - metadataListTagsForResourceInput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8483,11 +7899,7 @@ type ListTagsForResourceOutput struct { // List of tags returned by the ListTagsForResource operation. TagList []*Tag `locationNameList:"Tag" type:"list"` - metadataListTagsForResourceOutput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8602,11 +8014,7 @@ type ModifyDBClusterInput struct { // A lst of VPC security groups that the DB cluster will belong to. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataModifyDBClusterInput `json:"-" xml:"-"` -} - -type metadataModifyDBClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8627,11 +8035,7 @@ type ModifyDBClusterOutput struct { // in the DescribeDBClusters action. DBCluster *DBCluster `type:"structure"` - metadataModifyDBClusterOutput `json:"-" xml:"-"` -} - -type metadataModifyDBClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -8651,11 +8055,7 @@ type ModifyDBClusterParameterGroupInput struct { // A list of parameters in the DB cluster parameter group to modify. Parameters []*Parameter `locationNameList:"Parameter" type:"list" required:"true"` - metadataModifyDBClusterParameterGroupInput `json:"-" xml:"-"` -} - -type metadataModifyDBClusterParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9018,11 +8418,7 @@ type ModifyDBInstanceInput struct { // Cannot end with a hyphen or contain two consecutive hyphens VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataModifyDBInstanceInput `json:"-" xml:"-"` -} - -type metadataModifyDBInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9042,11 +8438,7 @@ type ModifyDBInstanceOutput struct { // is used as a response element in the DescribeDBInstances action. DBInstance *DBInstance `type:"structure"` - metadataModifyDBInstanceOutput `json:"-" xml:"-"` -} - -type metadataModifyDBInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9081,11 +8473,7 @@ type ModifyDBParameterGroupInput struct { // are applied when you reboot the DB instance without failover. Parameters []*Parameter `locationNameList:"Parameter" type:"list" required:"true"` - metadataModifyDBParameterGroupInput `json:"-" xml:"-"` -} - -type metadataModifyDBParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9127,11 +8515,7 @@ type ModifyDBSnapshotAttributeInput struct { // attribute can still copy or restore the manual DB snapshot. ValuesToRemove []*string `locationNameList:"AttributeValue" type:"list"` - metadataModifyDBSnapshotAttributeInput `json:"-" xml:"-"` -} - -type metadataModifyDBSnapshotAttributeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9153,11 +8537,7 @@ type ModifyDBSnapshotAttributeOutput struct { // API. DBSnapshotAttributesResult *DBSnapshotAttributesResult `type:"structure"` - metadataModifyDBSnapshotAttributeOutput `json:"-" xml:"-"` -} - -type metadataModifyDBSnapshotAttributeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9185,11 +8565,7 @@ type ModifyDBSubnetGroupInput struct { // The EC2 subnet IDs for the DB subnet group. SubnetIds []*string `locationNameList:"SubnetIdentifier" type:"list" required:"true"` - metadataModifyDBSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataModifyDBSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9210,11 +8586,7 @@ type ModifyDBSubnetGroupOutput struct { // action. DBSubnetGroup *DBSubnetGroup `type:"structure"` - metadataModifyDBSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataModifyDBSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9254,11 +8626,7 @@ type ModifyEventSubscriptionInput struct { // The name of the RDS event notification subscription. SubscriptionName *string `type:"string" required:"true"` - metadataModifyEventSubscriptionInput `json:"-" xml:"-"` -} - -type metadataModifyEventSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9276,11 +8644,7 @@ type ModifyEventSubscriptionOutput struct { // action. EventSubscription *EventSubscription `type:"structure"` - metadataModifyEventSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataModifyEventSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9312,11 +8676,7 @@ type ModifyOptionGroupInput struct { // Options in this list are removed from the option group. OptionsToRemove []*string `type:"list"` - metadataModifyOptionGroupInput `json:"-" xml:"-"` -} - -type metadataModifyOptionGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9332,11 +8692,7 @@ func (s ModifyOptionGroupInput) GoString() string { type ModifyOptionGroupOutput struct { OptionGroup *OptionGroup `type:"structure"` - metadataModifyOptionGroupOutput `json:"-" xml:"-"` -} - -type metadataModifyOptionGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9377,11 +8733,7 @@ type Option struct { // access to the port. VpcSecurityGroupMemberships []*VpcSecurityGroupMembership `locationNameList:"VpcSecurityGroupMembership" type:"list"` - metadataOption `json:"-" xml:"-"` -} - -type metadataOption struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9411,11 +8763,7 @@ type OptionConfiguration struct { // A list of VpcSecurityGroupMemebrship name strings used for this option. VpcSecurityGroupMemberships []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataOptionConfiguration `json:"-" xml:"-"` -} - -type metadataOptionConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9456,11 +8804,7 @@ type OptionGroup struct { // that are in the VPC indicated by this field. VpcId *string `type:"string"` - metadataOptionGroup `json:"-" xml:"-"` -} - -type metadataOptionGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9482,11 +8826,7 @@ type OptionGroupMembership struct { // pending-maintenance, applying). Status *string `type:"string"` - metadataOptionGroupMembership `json:"-" xml:"-"` -} - -type metadataOptionGroupMembership struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9540,11 +8880,7 @@ type OptionGroupOption struct { // Specifies whether the option requires a port. PortRequired *bool `type:"boolean"` - metadataOptionGroupOption `json:"-" xml:"-"` -} - -type metadataOptionGroupOption struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9580,11 +8916,7 @@ type OptionGroupOptionSetting struct { // The name of the option group option. SettingName *string `type:"string"` - metadataOptionGroupOptionSetting `json:"-" xml:"-"` -} - -type metadataOptionGroupOptionSetting struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9630,11 +8962,7 @@ type OptionSetting struct { // The current value of the option setting. Value *string `type:"string"` - metadataOptionSetting `json:"-" xml:"-"` -} - -type metadataOptionSetting struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9685,11 +9013,7 @@ type OrderableDBInstanceOption struct { // Indicates whether this is a VPC orderable DB instance. Vpc *bool `type:"boolean"` - metadataOrderableDBInstanceOption `json:"-" xml:"-"` -} - -type metadataOrderableDBInstanceOption struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9740,11 +9064,7 @@ type Parameter struct { // Indicates the source of the parameter value. Source *string `type:"string"` - metadataParameter `json:"-" xml:"-"` -} - -type metadataParameter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9787,11 +9107,7 @@ type PendingMaintenanceAction struct { // Indicates the type of opt-in request that has been received for the resource. OptInStatus *string `type:"string"` - metadataPendingMaintenanceAction `json:"-" xml:"-"` -} - -type metadataPendingMaintenanceAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9844,11 +9160,7 @@ type PendingModifiedValues struct { // Specifies the storage type to be associated with the DB instance. StorageType *string `type:"string"` - metadataPendingModifiedValues `json:"-" xml:"-"` -} - -type metadataPendingModifiedValues struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9898,11 +9210,7 @@ type PromoteReadReplicaInput struct { // be at least 30 minutes. PreferredBackupWindow *string `type:"string"` - metadataPromoteReadReplicaInput `json:"-" xml:"-"` -} - -type metadataPromoteReadReplicaInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9922,11 +9230,7 @@ type PromoteReadReplicaOutput struct { // is used as a response element in the DescribeDBInstances action. DBInstance *DBInstance `type:"structure"` - metadataPromoteReadReplicaOutput `json:"-" xml:"-"` -} - -type metadataPromoteReadReplicaOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9958,11 +9262,7 @@ type PurchaseReservedDBInstancesOfferingInput struct { // A list of tags. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataPurchaseReservedDBInstancesOfferingInput `json:"-" xml:"-"` -} - -type metadataPurchaseReservedDBInstancesOfferingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -9980,11 +9280,7 @@ type PurchaseReservedDBInstancesOfferingOutput struct { // and PurchaseReservedDBInstancesOffering actions. ReservedDBInstance *ReservedDBInstance `type:"structure"` - metadataPurchaseReservedDBInstancesOfferingOutput `json:"-" xml:"-"` -} - -type metadataPurchaseReservedDBInstancesOfferingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10012,11 +9308,7 @@ type RebootDBInstanceInput struct { // MultiAZ. ForceFailover *bool `type:"boolean"` - metadataRebootDBInstanceInput `json:"-" xml:"-"` -} - -type metadataRebootDBInstanceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10036,11 +9328,7 @@ type RebootDBInstanceOutput struct { // is used as a response element in the DescribeDBInstances action. DBInstance *DBInstance `type:"structure"` - metadataRebootDBInstanceOutput `json:"-" xml:"-"` -} - -type metadataRebootDBInstanceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10062,11 +9350,7 @@ type RecurringCharge struct { // The frequency of the recurring charge. RecurringChargeFrequency *string `type:"string"` - metadataRecurringCharge `json:"-" xml:"-"` -} - -type metadataRecurringCharge struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10088,11 +9372,7 @@ type RemoveSourceIdentifierFromSubscriptionInput struct { // source identifier from. SubscriptionName *string `type:"string" required:"true"` - metadataRemoveSourceIdentifierFromSubscriptionInput `json:"-" xml:"-"` -} - -type metadataRemoveSourceIdentifierFromSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10110,11 +9390,7 @@ type RemoveSourceIdentifierFromSubscriptionOutput struct { // action. EventSubscription *EventSubscription `type:"structure"` - metadataRemoveSourceIdentifierFromSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataRemoveSourceIdentifierFromSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10136,11 +9412,7 @@ type RemoveTagsFromResourceInput struct { // The tag key (name) of the tag to be removed. TagKeys []*string `type:"list" required:"true"` - metadataRemoveTagsFromResourceInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10154,11 +9426,7 @@ func (s RemoveTagsFromResourceInput) GoString() string { } type RemoveTagsFromResourceOutput struct { - metadataRemoveTagsFromResourceOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10216,11 +9484,7 @@ type ReservedDBInstance struct { // The hourly price charged for this reserved DB instance. UsagePrice *float64 `type:"double"` - metadataReservedDBInstance `json:"-" xml:"-"` -} - -type metadataReservedDBInstance struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10266,11 +9530,7 @@ type ReservedDBInstancesOffering struct { // The hourly price charged for this offering. UsagePrice *float64 `type:"double"` - metadataReservedDBInstancesOffering `json:"-" xml:"-"` -} - -type metadataReservedDBInstancesOffering struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10297,11 +9557,7 @@ type ResetDBClusterParameterGroupInput struct { // if there is a list of parameter names specified for the Parameters parameter. ResetAllParameters *bool `type:"boolean"` - metadataResetDBClusterParameterGroupInput `json:"-" xml:"-"` -} - -type metadataResetDBClusterParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10355,11 +9611,7 @@ type ResetDBParameterGroupInput struct { // Default: true ResetAllParameters *bool `type:"boolean"` - metadataResetDBParameterGroupInput `json:"-" xml:"-"` -} - -type metadataResetDBParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10381,11 +9633,7 @@ type ResourcePendingMaintenanceActions struct { // The ARN of the resource that has pending maintenance actions. ResourceIdentifier *string `type:"string"` - metadataResourcePendingMaintenanceActions `json:"-" xml:"-"` -} - -type metadataResourcePendingMaintenanceActions struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10453,11 +9701,7 @@ type RestoreDBClusterFromSnapshotInput struct { // A list of VPC security groups that the new DB cluster will belong to. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataRestoreDBClusterFromSnapshotInput `json:"-" xml:"-"` -} - -type metadataRestoreDBClusterFromSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10478,11 +9722,7 @@ type RestoreDBClusterFromSnapshotOutput struct { // in the DescribeDBClusters action. DBCluster *DBCluster `type:"structure"` - metadataRestoreDBClusterFromSnapshotOutput `json:"-" xml:"-"` -} - -type metadataRestoreDBClusterFromSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10550,11 +9790,7 @@ type RestoreDBClusterToPointInTimeInput struct { // A lst of VPC security groups that the new DB cluster belongs to. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataRestoreDBClusterToPointInTimeInput `json:"-" xml:"-"` -} - -type metadataRestoreDBClusterToPointInTimeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10575,11 +9811,7 @@ type RestoreDBClusterToPointInTimeOutput struct { // in the DescribeDBClusters action. DBCluster *DBCluster `type:"structure"` - metadataRestoreDBClusterToPointInTimeOutput `json:"-" xml:"-"` -} - -type metadataRestoreDBClusterToPointInTimeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10733,11 +9965,7 @@ type RestoreDBInstanceFromDBSnapshotInput struct { // device. TdeCredentialPassword *string `type:"string"` - metadataRestoreDBInstanceFromDBSnapshotInput `json:"-" xml:"-"` -} - -type metadataRestoreDBInstanceFromDBSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10757,11 +9985,7 @@ type RestoreDBInstanceFromDBSnapshotOutput struct { // is used as a response element in the DescribeDBInstances action. DBInstance *DBInstance `type:"structure"` - metadataRestoreDBInstanceFromDBSnapshotOutput `json:"-" xml:"-"` -} - -type metadataRestoreDBInstanceFromDBSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10928,11 +10152,7 @@ type RestoreDBInstanceToPointInTimeInput struct { // Constraints: Cannot be specified if RestoreTime parameter is provided. UseLatestRestorableTime *bool `type:"boolean"` - metadataRestoreDBInstanceToPointInTimeInput `json:"-" xml:"-"` -} - -type metadataRestoreDBInstanceToPointInTimeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10952,11 +10172,7 @@ type RestoreDBInstanceToPointInTimeOutput struct { // is used as a response element in the DescribeDBInstances action. DBInstance *DBInstance `type:"structure"` - metadataRestoreDBInstanceToPointInTimeOutput `json:"-" xml:"-"` -} - -type metadataRestoreDBInstanceToPointInTimeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -10995,11 +10211,7 @@ type RevokeDBSecurityGroupIngressInput struct { // must be provided. EC2SecurityGroupOwnerId *string `type:"string"` - metadataRevokeDBSecurityGroupIngressInput `json:"-" xml:"-"` -} - -type metadataRevokeDBSecurityGroupIngressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11020,11 +10232,7 @@ type RevokeDBSecurityGroupIngressOutput struct { // in the DescribeDBSecurityGroups action. DBSecurityGroup *DBSecurityGroup `type:"structure"` - metadataRevokeDBSecurityGroupIngressOutput `json:"-" xml:"-"` -} - -type metadataRevokeDBSecurityGroupIngressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11051,11 +10259,7 @@ type Subnet struct { // Specifies the status of the subnet. SubnetStatus *string `type:"string"` - metadataSubnet `json:"-" xml:"-"` -} - -type metadataSubnet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11082,11 +10286,7 @@ type Tag struct { // white-space, '_', '.', '/', '=', '+', '-' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-]*)$"). Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11118,11 +10318,7 @@ type UpgradeTarget struct { // version. IsMajorVersionUpgrade *bool `type:"boolean"` - metadataUpgradeTarget `json:"-" xml:"-"` -} - -type metadataUpgradeTarget struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -11144,11 +10340,7 @@ type VpcSecurityGroupMembership struct { // The name of the VPC security group. VpcSecurityGroupId *string `type:"string"` - metadataVpcSecurityGroupMembership `json:"-" xml:"-"` -} - -type metadataVpcSecurityGroupMembership struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/redshift/api.go b/service/redshift/api.go index 03fcf11d6e1..4e16227013c 100644 --- a/service/redshift/api.go +++ b/service/redshift/api.go @@ -2197,11 +2197,7 @@ type AccountWithRestoreAccess struct { // The identifier of an AWS customer account authorized to restore a snapshot. AccountId *string `type:"string"` - metadataAccountWithRestoreAccess `json:"-" xml:"-"` -} - -type metadataAccountWithRestoreAccess struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2232,11 +2228,7 @@ type AuthorizeClusterSecurityGroupIngressInput struct { // Example: 111122223333 EC2SecurityGroupOwnerId *string `type:"string"` - metadataAuthorizeClusterSecurityGroupIngressInput `json:"-" xml:"-"` -} - -type metadataAuthorizeClusterSecurityGroupIngressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2253,11 +2245,7 @@ type AuthorizeClusterSecurityGroupIngressOutput struct { // Describes a security group. ClusterSecurityGroup *ClusterSecurityGroup `type:"structure"` - metadataAuthorizeClusterSecurityGroupIngressOutput `json:"-" xml:"-"` -} - -type metadataAuthorizeClusterSecurityGroupIngressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2283,11 +2271,7 @@ type AuthorizeSnapshotAccessInput struct { // The identifier of the snapshot the account is authorized to restore. SnapshotIdentifier *string `type:"string" required:"true"` - metadataAuthorizeSnapshotAccessInput `json:"-" xml:"-"` -} - -type metadataAuthorizeSnapshotAccessInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2304,11 +2288,7 @@ type AuthorizeSnapshotAccessOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` - metadataAuthorizeSnapshotAccessOutput `json:"-" xml:"-"` -} - -type metadataAuthorizeSnapshotAccessOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2326,11 +2306,7 @@ type AvailabilityZone struct { // The name of the availability zone. Name *string `type:"string"` - metadataAvailabilityZone `json:"-" xml:"-"` -} - -type metadataAvailabilityZone struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2460,11 +2436,7 @@ type Cluster struct { // VPC. VpcSecurityGroups []*VpcSecurityGroupMembership `locationNameList:"VpcSecurityGroup" type:"list"` - metadataCluster `json:"-" xml:"-"` -} - -type metadataCluster struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2488,11 +2460,7 @@ type ClusterNode struct { // The public IP address of a node within a cluster. PublicIPAddress *string `type:"string"` - metadataClusterNode `json:"-" xml:"-"` -} - -type metadataClusterNode struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2520,11 +2488,7 @@ type ClusterParameterGroup struct { // The list of tags for the cluster parameter group. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataClusterParameterGroup `json:"-" xml:"-"` -} - -type metadataClusterParameterGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2549,11 +2513,7 @@ type ClusterParameterGroupNameMessage struct { // of an associated cluster. ParameterGroupStatus *string `type:"string"` - metadataClusterParameterGroupNameMessage `json:"-" xml:"-"` -} - -type metadataClusterParameterGroupNameMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2581,11 +2541,7 @@ type ClusterParameterGroupStatus struct { // The name of the cluster parameter group. ParameterGroupName *string `type:"string"` - metadataClusterParameterGroupStatus `json:"-" xml:"-"` -} - -type metadataClusterParameterGroupStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2622,11 +2578,7 @@ type ClusterParameterStatus struct { // The name of the parameter. ParameterName *string `type:"string"` - metadataClusterParameterStatus `json:"-" xml:"-"` -} - -type metadataClusterParameterStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2658,11 +2610,7 @@ type ClusterSecurityGroup struct { // The list of tags for the cluster security group. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataClusterSecurityGroup `json:"-" xml:"-"` -} - -type metadataClusterSecurityGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2683,11 +2631,7 @@ type ClusterSecurityGroupMembership struct { // The status of the cluster security group. Status *string `type:"string"` - metadataClusterSecurityGroupMembership `json:"-" xml:"-"` -} - -type metadataClusterSecurityGroupMembership struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2714,11 +2658,7 @@ type ClusterSnapshotCopyStatus struct { // The name of the snapshot copy grant. SnapshotCopyGrantName *string `type:"string"` - metadataClusterSnapshotCopyStatus `json:"-" xml:"-"` -} - -type metadataClusterSnapshotCopyStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2752,11 +2692,7 @@ type ClusterSubnetGroup struct { // The VPC ID of the cluster subnet group. VpcId *string `type:"string"` - metadataClusterSubnetGroup `json:"-" xml:"-"` -} - -type metadataClusterSubnetGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2781,11 +2717,7 @@ type ClusterVersion struct { // The description of the cluster version. Description *string `type:"string"` - metadataClusterVersion `json:"-" xml:"-"` -} - -type metadataClusterVersion struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2825,11 +2757,7 @@ type CopyClusterSnapshotInput struct { // that is making the request. TargetSnapshotIdentifier *string `type:"string" required:"true"` - metadataCopyClusterSnapshotInput `json:"-" xml:"-"` -} - -type metadataCopyClusterSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2846,11 +2774,7 @@ type CopyClusterSnapshotOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` - metadataCopyClusterSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCopyClusterSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3077,11 +3001,7 @@ type CreateClusterInput struct { // Default: The default VPC security group is associated with the cluster. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataCreateClusterInput `json:"-" xml:"-"` -} - -type metadataCreateClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3098,11 +3018,7 @@ type CreateClusterOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataCreateClusterOutput `json:"-" xml:"-"` -} - -type metadataCreateClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3143,11 +3059,7 @@ type CreateClusterParameterGroupInput struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateClusterParameterGroupInput `json:"-" xml:"-"` -} - -type metadataCreateClusterParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3164,11 +3076,7 @@ type CreateClusterParameterGroupOutput struct { // Describes a parameter group. ClusterParameterGroup *ClusterParameterGroup `type:"structure"` - metadataCreateClusterParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateClusterParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3199,11 +3107,7 @@ type CreateClusterSecurityGroupInput struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateClusterSecurityGroupInput `json:"-" xml:"-"` -} - -type metadataCreateClusterSecurityGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3220,11 +3124,7 @@ type CreateClusterSecurityGroupOutput struct { // Describes a security group. ClusterSecurityGroup *ClusterSecurityGroup `type:"structure"` - metadataCreateClusterSecurityGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateClusterSecurityGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3254,11 +3154,7 @@ type CreateClusterSnapshotInput struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateClusterSnapshotInput `json:"-" xml:"-"` -} - -type metadataCreateClusterSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3275,11 +3171,7 @@ type CreateClusterSnapshotOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` - metadataCreateClusterSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCreateClusterSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3313,11 +3205,7 @@ type CreateClusterSubnetGroupInput struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateClusterSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataCreateClusterSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3334,11 +3222,7 @@ type CreateClusterSubnetGroupOutput struct { // Describes a subnet group. ClusterSubnetGroup *ClusterSubnetGroup `type:"structure"` - metadataCreateClusterSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataCreateClusterSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3406,11 +3290,7 @@ type CreateEventSubscriptionInput struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateEventSubscriptionInput `json:"-" xml:"-"` -} - -type metadataCreateEventSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3426,11 +3306,7 @@ func (s CreateEventSubscriptionInput) GoString() string { type CreateEventSubscriptionOutput struct { EventSubscription *EventSubscription `type:"structure"` - metadataCreateEventSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataCreateEventSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3451,11 +3327,7 @@ type CreateHsmClientCertificateInput struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateHsmClientCertificateInput `json:"-" xml:"-"` -} - -type metadataCreateHsmClientCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3474,11 +3346,7 @@ type CreateHsmClientCertificateOutput struct { // cluster to encrypt data files. HsmClientCertificate *HsmClientCertificate `type:"structure"` - metadataCreateHsmClientCertificateOutput `json:"-" xml:"-"` -} - -type metadataCreateHsmClientCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3515,11 +3383,7 @@ type CreateHsmConfigurationInput struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateHsmConfigurationInput `json:"-" xml:"-"` -} - -type metadataCreateHsmConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3538,11 +3402,7 @@ type CreateHsmConfigurationOutput struct { // HSM where they can store database encryption keys. HsmConfiguration *HsmConfiguration `type:"structure"` - metadataCreateHsmConfigurationOutput `json:"-" xml:"-"` -} - -type metadataCreateHsmConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3575,11 +3435,7 @@ type CreateSnapshotCopyGrantInput struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataCreateSnapshotCopyGrantInput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotCopyGrantInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3602,11 +3458,7 @@ type CreateSnapshotCopyGrantOutput struct { // in the Amazon Redshift Cluster Management Guide. SnapshotCopyGrant *SnapshotCopyGrant `type:"structure"` - metadataCreateSnapshotCopyGrantOutput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotCopyGrantOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3632,11 +3484,7 @@ type CreateTagsInput struct { // "Key"="owner","Value"="admin" "Key"="environment","Value"="test" "Key"="version","Value"="1.0". Tags []*Tag `locationNameList:"Tag" type:"list" required:"true"` - metadataCreateTagsInput `json:"-" xml:"-"` -} - -type metadataCreateTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3650,11 +3498,7 @@ func (s CreateTagsInput) GoString() string { } type CreateTagsOutput struct { - metadataCreateTagsOutput `json:"-" xml:"-"` -} - -type metadataCreateTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3683,11 +3527,7 @@ type DefaultClusterParameters struct { // The list of cluster default parameters. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` - metadataDefaultClusterParameters `json:"-" xml:"-"` -} - -type metadataDefaultClusterParameters struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3728,11 +3568,7 @@ type DeleteClusterInput struct { // is false. Default: false SkipFinalClusterSnapshot *bool `type:"boolean"` - metadataDeleteClusterInput `json:"-" xml:"-"` -} - -type metadataDeleteClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3749,11 +3585,7 @@ type DeleteClusterOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataDeleteClusterOutput `json:"-" xml:"-"` -} - -type metadataDeleteClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3775,11 +3607,7 @@ type DeleteClusterParameterGroupInput struct { // a default cluster parameter group. ParameterGroupName *string `type:"string" required:"true"` - metadataDeleteClusterParameterGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteClusterParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3793,11 +3621,7 @@ func (s DeleteClusterParameterGroupInput) GoString() string { } type DeleteClusterParameterGroupOutput struct { - metadataDeleteClusterParameterGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteClusterParameterGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3814,11 +3638,7 @@ type DeleteClusterSecurityGroupInput struct { // The name of the cluster security group to be deleted. ClusterSecurityGroupName *string `type:"string" required:"true"` - metadataDeleteClusterSecurityGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteClusterSecurityGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3832,11 +3652,7 @@ func (s DeleteClusterSecurityGroupInput) GoString() string { } type DeleteClusterSecurityGroupOutput struct { - metadataDeleteClusterSecurityGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteClusterSecurityGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3863,11 +3679,7 @@ type DeleteClusterSnapshotInput struct { // state. SnapshotIdentifier *string `type:"string" required:"true"` - metadataDeleteClusterSnapshotInput `json:"-" xml:"-"` -} - -type metadataDeleteClusterSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3884,11 +3696,7 @@ type DeleteClusterSnapshotOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` - metadataDeleteClusterSnapshotOutput `json:"-" xml:"-"` -} - -type metadataDeleteClusterSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3905,11 +3713,7 @@ type DeleteClusterSubnetGroupInput struct { // The name of the cluster subnet group name to be deleted. ClusterSubnetGroupName *string `type:"string" required:"true"` - metadataDeleteClusterSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataDeleteClusterSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3923,11 +3727,7 @@ func (s DeleteClusterSubnetGroupInput) GoString() string { } type DeleteClusterSubnetGroupOutput struct { - metadataDeleteClusterSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataDeleteClusterSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3944,11 +3744,7 @@ type DeleteEventSubscriptionInput struct { // The name of the Amazon Redshift event notification subscription to be deleted. SubscriptionName *string `type:"string" required:"true"` - metadataDeleteEventSubscriptionInput `json:"-" xml:"-"` -} - -type metadataDeleteEventSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3962,11 +3758,7 @@ func (s DeleteEventSubscriptionInput) GoString() string { } type DeleteEventSubscriptionOutput struct { - metadataDeleteEventSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataDeleteEventSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3983,11 +3775,7 @@ type DeleteHsmClientCertificateInput struct { // The identifier of the HSM client certificate to be deleted. HsmClientCertificateIdentifier *string `type:"string" required:"true"` - metadataDeleteHsmClientCertificateInput `json:"-" xml:"-"` -} - -type metadataDeleteHsmClientCertificateInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4001,11 +3789,7 @@ func (s DeleteHsmClientCertificateInput) GoString() string { } type DeleteHsmClientCertificateOutput struct { - metadataDeleteHsmClientCertificateOutput `json:"-" xml:"-"` -} - -type metadataDeleteHsmClientCertificateOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4022,11 +3806,7 @@ type DeleteHsmConfigurationInput struct { // The identifier of the Amazon Redshift HSM configuration to be deleted. HsmConfigurationIdentifier *string `type:"string" required:"true"` - metadataDeleteHsmConfigurationInput `json:"-" xml:"-"` -} - -type metadataDeleteHsmConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4040,11 +3820,7 @@ func (s DeleteHsmConfigurationInput) GoString() string { } type DeleteHsmConfigurationOutput struct { - metadataDeleteHsmConfigurationOutput `json:"-" xml:"-"` -} - -type metadataDeleteHsmConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4062,11 +3838,7 @@ type DeleteSnapshotCopyGrantInput struct { // The name of the snapshot copy grant to delete. SnapshotCopyGrantName *string `type:"string" required:"true"` - metadataDeleteSnapshotCopyGrantInput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotCopyGrantInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4080,11 +3852,7 @@ func (s DeleteSnapshotCopyGrantInput) GoString() string { } type DeleteSnapshotCopyGrantOutput struct { - metadataDeleteSnapshotCopyGrantOutput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotCopyGrantOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4106,11 +3874,7 @@ type DeleteTagsInput struct { // The tag key that you want to delete. TagKeys []*string `locationNameList:"TagKey" type:"list" required:"true"` - metadataDeleteTagsInput `json:"-" xml:"-"` -} - -type metadataDeleteTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4124,11 +3888,7 @@ func (s DeleteTagsInput) GoString() string { } type DeleteTagsOutput struct { - metadataDeleteTagsOutput `json:"-" xml:"-"` -} - -type metadataDeleteTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4180,11 +3940,7 @@ type DescribeClusterParameterGroupsInput struct { // both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeClusterParameterGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeClusterParameterGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4210,11 +3966,7 @@ type DescribeClusterParameterGroupsOutput struct { // parameter group. ParameterGroups []*ClusterParameterGroup `locationNameList:"ClusterParameterGroup" type:"list"` - metadataDescribeClusterParameterGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeClusterParameterGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4258,11 +4010,7 @@ type DescribeClusterParametersInput struct { // Valid Values: user | engine-default Source *string `type:"string"` - metadataDescribeClusterParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeClusterParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4288,11 +4036,7 @@ type DescribeClusterParametersOutput struct { // cluster parameter group. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` - metadataDescribeClusterParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeClusterParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4351,11 +4095,7 @@ type DescribeClusterSecurityGroupsInput struct { // both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeClusterSecurityGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeClusterSecurityGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4380,11 +4120,7 @@ type DescribeClusterSecurityGroupsOutput struct { // records have been retrieved for the request. Marker *string `type:"string"` - metadataDescribeClusterSecurityGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeClusterSecurityGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4464,11 +4200,7 @@ type DescribeClusterSnapshotsInput struct { // these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeClusterSnapshotsInput `json:"-" xml:"-"` -} - -type metadataDescribeClusterSnapshotsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4493,11 +4225,7 @@ type DescribeClusterSnapshotsOutput struct { // A list of Snapshot instances. Snapshots []*Snapshot `locationNameList:"Snapshot" type:"list"` - metadataDescribeClusterSnapshotsOutput `json:"-" xml:"-"` -} - -type metadataDescribeClusterSnapshotsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4548,11 +4276,7 @@ type DescribeClusterSubnetGroupsInput struct { // of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeClusterSubnetGroupsInput `json:"-" xml:"-"` -} - -type metadataDescribeClusterSubnetGroupsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4577,11 +4301,7 @@ type DescribeClusterSubnetGroupsOutput struct { // records have been retrieved for the request. Marker *string `type:"string"` - metadataDescribeClusterSubnetGroupsOutput `json:"-" xml:"-"` -} - -type metadataDescribeClusterSubnetGroupsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4625,11 +4345,7 @@ type DescribeClusterVersionsInput struct { // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` - metadataDescribeClusterVersionsInput `json:"-" xml:"-"` -} - -type metadataDescribeClusterVersionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4654,11 +4370,7 @@ type DescribeClusterVersionsOutput struct { // records have been retrieved for the request. Marker *string `type:"string"` - metadataDescribeClusterVersionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeClusterVersionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4714,11 +4426,7 @@ type DescribeClustersInput struct { // values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeClustersInput `json:"-" xml:"-"` -} - -type metadataDescribeClustersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4743,11 +4451,7 @@ type DescribeClustersOutput struct { // records have been retrieved for the request. Marker *string `type:"string"` - metadataDescribeClustersOutput `json:"-" xml:"-"` -} - -type metadataDescribeClustersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4782,11 +4486,7 @@ type DescribeDefaultClusterParametersInput struct { // The name of the cluster parameter group family. ParameterGroupFamily *string `type:"string" required:"true"` - metadataDescribeDefaultClusterParametersInput `json:"-" xml:"-"` -} - -type metadataDescribeDefaultClusterParametersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4803,11 +4503,7 @@ type DescribeDefaultClusterParametersOutput struct { // Describes the default cluster parameters for a parameter group family. DefaultClusterParameters *DefaultClusterParameters `type:"structure"` - metadataDescribeDefaultClusterParametersOutput `json:"-" xml:"-"` -} - -type metadataDescribeDefaultClusterParametersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4827,11 +4523,7 @@ type DescribeEventCategoriesInput struct { // Valid values: cluster, snapshot, parameter group, and security group. SourceType *string `type:"string"` - metadataDescribeEventCategoriesInput `json:"-" xml:"-"` -} - -type metadataDescribeEventCategoriesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4848,11 +4540,7 @@ type DescribeEventCategoriesOutput struct { // A list of event categories descriptions. EventCategoriesMapList []*EventCategoriesMap `locationNameList:"EventCategoriesMap" type:"list"` - metadataDescribeEventCategoriesOutput `json:"-" xml:"-"` -} - -type metadataDescribeEventCategoriesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4887,11 +4575,7 @@ type DescribeEventSubscriptionsInput struct { // The name of the Amazon Redshift event notification subscription to be described. SubscriptionName *string `type:"string"` - metadataDescribeEventSubscriptionsInput `json:"-" xml:"-"` -} - -type metadataDescribeEventSubscriptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4915,11 +4599,7 @@ type DescribeEventSubscriptionsOutput struct { // records have been retrieved for the request. Marker *string `type:"string"` - metadataDescribeEventSubscriptionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeEventSubscriptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4998,11 +4678,7 @@ type DescribeEventsInput struct { // Example: 2009-07-08T18:00Z StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataDescribeEventsInput `json:"-" xml:"-"` -} - -type metadataDescribeEventsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5027,11 +4703,7 @@ type DescribeEventsOutput struct { // records have been retrieved for the request. Marker *string `type:"string"` - metadataDescribeEventsOutput `json:"-" xml:"-"` -} - -type metadataDescribeEventsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5084,11 +4756,7 @@ type DescribeHsmClientCertificatesInput struct { // that have either or both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeHsmClientCertificatesInput `json:"-" xml:"-"` -} - -type metadataDescribeHsmClientCertificatesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5114,11 +4782,7 @@ type DescribeHsmClientCertificatesOutput struct { // records have been retrieved for the request. Marker *string `type:"string"` - metadataDescribeHsmClientCertificatesOutput `json:"-" xml:"-"` -} - -type metadataDescribeHsmClientCertificatesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5171,11 +4835,7 @@ type DescribeHsmConfigurationsInput struct { // or both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeHsmConfigurationsInput `json:"-" xml:"-"` -} - -type metadataDescribeHsmConfigurationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5199,11 +4859,7 @@ type DescribeHsmConfigurationsOutput struct { // records have been retrieved for the request. Marker *string `type:"string"` - metadataDescribeHsmConfigurationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeHsmConfigurationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5222,11 +4878,7 @@ type DescribeLoggingStatusInput struct { // Example: examplecluster ClusterIdentifier *string `type:"string" required:"true"` - metadataDescribeLoggingStatusInput `json:"-" xml:"-"` -} - -type metadataDescribeLoggingStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5270,11 +4922,7 @@ type DescribeOrderableClusterOptionsInput struct { // offerings matching the specified node type. NodeType *string `type:"string"` - metadataDescribeOrderableClusterOptionsInput `json:"-" xml:"-"` -} - -type metadataDescribeOrderableClusterOptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5300,11 +4948,7 @@ type DescribeOrderableClusterOptionsOutput struct { // options for the Cluster. OrderableClusterOptions []*OrderableClusterOption `locationNameList:"OrderableClusterOption" type:"list"` - metadataDescribeOrderableClusterOptionsOutput `json:"-" xml:"-"` -} - -type metadataDescribeOrderableClusterOptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5339,11 +4983,7 @@ type DescribeReservedNodeOfferingsInput struct { // The unique identifier for the offering. ReservedNodeOfferingId *string `type:"string"` - metadataDescribeReservedNodeOfferingsInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedNodeOfferingsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5368,11 +5008,7 @@ type DescribeReservedNodeOfferingsOutput struct { // A list of reserved node offerings. ReservedNodeOfferings []*ReservedNodeOffering `locationNameList:"ReservedNodeOffering" type:"list"` - metadataDescribeReservedNodeOfferingsOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedNodeOfferingsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5406,11 +5042,7 @@ type DescribeReservedNodesInput struct { // Identifier for the node reservation. ReservedNodeId *string `type:"string"` - metadataDescribeReservedNodesInput `json:"-" xml:"-"` -} - -type metadataDescribeReservedNodesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5435,11 +5067,7 @@ type DescribeReservedNodesOutput struct { // The list of reserved nodes. ReservedNodes []*ReservedNode `locationNameList:"ReservedNode" type:"list"` - metadataDescribeReservedNodesOutput `json:"-" xml:"-"` -} - -type metadataDescribeReservedNodesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5460,11 +5088,7 @@ type DescribeResizeInput struct { // are returned. ClusterIdentifier *string `type:"string" required:"true"` - metadataDescribeResizeInput `json:"-" xml:"-"` -} - -type metadataDescribeResizeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5538,11 +5162,7 @@ type DescribeResizeOutput struct { // resize operation began. TotalResizeDataInMegaBytes *int64 `type:"long"` - metadataDescribeResizeOutput `json:"-" xml:"-"` -} - -type metadataDescribeResizeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5597,11 +5217,7 @@ type DescribeSnapshotCopyGrantsInput struct { // associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeSnapshotCopyGrantsInput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotCopyGrantsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5630,11 +5246,7 @@ type DescribeSnapshotCopyGrantsOutput struct { // The list of snapshot copy grants. SnapshotCopyGrants []*SnapshotCopyGrant `locationNameList:"SnapshotCopyGrant" type:"list"` - metadataDescribeSnapshotCopyGrantsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotCopyGrantsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5692,11 +5304,7 @@ type DescribeTagsInput struct { // associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` - metadataDescribeTagsInput `json:"-" xml:"-"` -} - -type metadataDescribeTagsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5721,11 +5329,7 @@ type DescribeTagsOutput struct { // A list of tags with their associated resources. TaggedResources []*TaggedResource `locationNameList:"TaggedResource" type:"list"` - metadataDescribeTagsOutput `json:"-" xml:"-"` -} - -type metadataDescribeTagsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5744,11 +5348,7 @@ type DisableLoggingInput struct { // Example: examplecluster ClusterIdentifier *string `type:"string" required:"true"` - metadataDisableLoggingInput `json:"-" xml:"-"` -} - -type metadataDisableLoggingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5769,11 +5369,7 @@ type DisableSnapshotCopyInput struct { // snapshot copy enabled. ClusterIdentifier *string `type:"string" required:"true"` - metadataDisableSnapshotCopyInput `json:"-" xml:"-"` -} - -type metadataDisableSnapshotCopyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5790,11 +5386,7 @@ type DisableSnapshotCopyOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataDisableSnapshotCopyOutput `json:"-" xml:"-"` -} - -type metadataDisableSnapshotCopyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5822,11 +5414,7 @@ type EC2SecurityGroup struct { // The list of tags for the EC2 security group. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataEC2SecurityGroup `json:"-" xml:"-"` -} - -type metadataEC2SecurityGroup struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5847,11 +5435,7 @@ type ElasticIpStatus struct { // Describes the status of the elastic IP (EIP) address. Status *string `type:"string"` - metadataElasticIpStatus `json:"-" xml:"-"` -} - -type metadataElasticIpStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5887,11 +5471,7 @@ type EnableLoggingInput struct { // codes for invalid characters are: x00 to x20 x22 x27 x5c x7f or larger S3KeyPrefix *string `type:"string"` - metadataEnableLoggingInput `json:"-" xml:"-"` -} - -type metadataEnableLoggingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5930,11 +5510,7 @@ type EnableSnapshotCopyInput struct { // cluster are copied to the destination region. SnapshotCopyGrantName *string `type:"string"` - metadataEnableSnapshotCopyInput `json:"-" xml:"-"` -} - -type metadataEnableSnapshotCopyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5951,11 +5527,7 @@ type EnableSnapshotCopyOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataEnableSnapshotCopyOutput `json:"-" xml:"-"` -} - -type metadataEnableSnapshotCopyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5976,11 +5548,7 @@ type Endpoint struct { // The port that the database engine is listening on. Port *int64 `type:"integer"` - metadataEndpoint `json:"-" xml:"-"` -} - -type metadataEndpoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6020,11 +5588,7 @@ type Event struct { // The source type for this event. SourceType *string `type:"string" enum:"SourceType"` - metadataEvent `json:"-" xml:"-"` -} - -type metadataEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6045,11 +5609,7 @@ type EventCategoriesMap struct { // the returned categories belong to. SourceType *string `type:"string"` - metadataEventCategoriesMap `json:"-" xml:"-"` -} - -type metadataEventCategoriesMap struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6077,11 +5637,7 @@ type EventInfoMap struct { // Values: ERROR, INFO Severity *string `type:"string"` - metadataEventInfoMap `json:"-" xml:"-"` -} - -type metadataEventInfoMap struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6146,11 +5702,7 @@ type EventSubscription struct { // The list of tags for the event subscription. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataEventSubscription `json:"-" xml:"-"` -} - -type metadataEventSubscription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6177,11 +5729,7 @@ type HsmClientCertificate struct { // The list of tags for the HSM client certificate. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataHsmClientCertificate `json:"-" xml:"-"` -} - -type metadataHsmClientCertificate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6214,11 +5762,7 @@ type HsmConfiguration struct { // The list of tags for the HSM configuration. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataHsmConfiguration `json:"-" xml:"-"` -} - -type metadataHsmConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6246,11 +5790,7 @@ type HsmStatus struct { // Values: active, applying Status *string `type:"string"` - metadataHsmStatus `json:"-" xml:"-"` -} - -type metadataHsmStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6274,11 +5814,7 @@ type IPRange struct { // The list of tags for the IP range. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataIPRange `json:"-" xml:"-"` -} - -type metadataIPRange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6311,11 +5847,7 @@ type LoggingStatus struct { // The prefix applied to the log file names. S3KeyPrefix *string `type:"string"` - metadataLoggingStatus `json:"-" xml:"-"` -} - -type metadataLoggingStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6484,11 +6016,7 @@ type ModifyClusterInput struct { // the cluster. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataModifyClusterInput `json:"-" xml:"-"` -} - -type metadataModifyClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6505,11 +6033,7 @@ type ModifyClusterOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataModifyClusterOutput `json:"-" xml:"-"` -} - -type metadataModifyClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6536,11 +6060,7 @@ type ModifyClusterParameterGroupInput struct { // name-value pairs in the wlm_json_configuration parameter. Parameters []*Parameter `locationNameList:"Parameter" type:"list" required:"true"` - metadataModifyClusterParameterGroupInput `json:"-" xml:"-"` -} - -type metadataModifyClusterParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6564,11 +6084,7 @@ type ModifyClusterSubnetGroupInput struct { // single request. SubnetIds []*string `locationNameList:"SubnetIdentifier" type:"list" required:"true"` - metadataModifyClusterSubnetGroupInput `json:"-" xml:"-"` -} - -type metadataModifyClusterSubnetGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6585,11 +6101,7 @@ type ModifyClusterSubnetGroupOutput struct { // Describes a subnet group. ClusterSubnetGroup *ClusterSubnetGroup `type:"structure"` - metadataModifyClusterSubnetGroupOutput `json:"-" xml:"-"` -} - -type metadataModifyClusterSubnetGroupOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6647,11 +6159,7 @@ type ModifyEventSubscriptionInput struct { // The name of the modified Amazon Redshift event notification subscription. SubscriptionName *string `type:"string" required:"true"` - metadataModifyEventSubscriptionInput `json:"-" xml:"-"` -} - -type metadataModifyEventSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6667,11 +6175,7 @@ func (s ModifyEventSubscriptionInput) GoString() string { type ModifyEventSubscriptionOutput struct { EventSubscription *EventSubscription `type:"structure"` - metadataModifyEventSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataModifyEventSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6703,11 +6207,7 @@ type ModifySnapshotCopyRetentionPeriodInput struct { // Constraints: Must be at least 1 and no more than 35. RetentionPeriod *int64 `type:"integer" required:"true"` - metadataModifySnapshotCopyRetentionPeriodInput `json:"-" xml:"-"` -} - -type metadataModifySnapshotCopyRetentionPeriodInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6724,11 +6224,7 @@ type ModifySnapshotCopyRetentionPeriodOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataModifySnapshotCopyRetentionPeriodOutput `json:"-" xml:"-"` -} - -type metadataModifySnapshotCopyRetentionPeriodOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6755,11 +6251,7 @@ type OrderableClusterOption struct { // The node type for the orderable cluster. NodeType *string `type:"string"` - metadataOrderableClusterOption `json:"-" xml:"-"` -} - -type metadataOrderableClusterOption struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6802,11 +6294,7 @@ type Parameter struct { // The source of the parameter value, such as "engine-default" or "user". Source *string `type:"string"` - metadataParameter `json:"-" xml:"-"` -} - -type metadataParameter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6843,11 +6331,7 @@ type PendingModifiedValues struct { // The pending or in-progress change of the number of nodes in the cluster. NumberOfNodes *int64 `type:"integer"` - metadataPendingModifiedValues `json:"-" xml:"-"` -} - -type metadataPendingModifiedValues struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6869,11 +6353,7 @@ type PurchaseReservedNodeOfferingInput struct { // The unique identifier of the reserved node offering you want to purchase. ReservedNodeOfferingId *string `type:"string" required:"true"` - metadataPurchaseReservedNodeOfferingInput `json:"-" xml:"-"` -} - -type metadataPurchaseReservedNodeOfferingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6891,11 +6371,7 @@ type PurchaseReservedNodeOfferingOutput struct { // API to obtain the available reserved node offerings. ReservedNode *ReservedNode `type:"structure"` - metadataPurchaseReservedNodeOfferingOutput `json:"-" xml:"-"` -} - -type metadataPurchaseReservedNodeOfferingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6912,11 +6388,7 @@ type RebootClusterInput struct { // The cluster identifier. ClusterIdentifier *string `type:"string" required:"true"` - metadataRebootClusterInput `json:"-" xml:"-"` -} - -type metadataRebootClusterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6933,11 +6405,7 @@ type RebootClusterOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataRebootClusterOutput `json:"-" xml:"-"` -} - -type metadataRebootClusterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6959,11 +6427,7 @@ type RecurringCharge struct { // The frequency at which the recurring charge amount is applied. RecurringChargeFrequency *string `type:"string"` - metadataRecurringCharge `json:"-" xml:"-"` -} - -type metadataRecurringCharge struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7024,11 +6488,7 @@ type ReservedNode struct { // The hourly rate Amazon Redshift charges you for this reserved node. UsagePrice *float64 `type:"double"` - metadataReservedNode `json:"-" xml:"-"` -} - -type metadataReservedNode struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7072,11 +6532,7 @@ type ReservedNodeOffering struct { // is running. UsagePrice *float64 `type:"double"` - metadataReservedNodeOffering `json:"-" xml:"-"` -} - -type metadataReservedNodeOffering struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7105,11 +6561,7 @@ type ResetClusterParameterGroupInput struct { // Default: true ResetAllParameters *bool `type:"boolean"` - metadataResetClusterParameterGroupInput `json:"-" xml:"-"` -} - -type metadataResetClusterParameterGroupInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7258,11 +6710,7 @@ type RestoreFromClusterSnapshotInput struct { // VPC security groups only apply to clusters in VPCs. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` - metadataRestoreFromClusterSnapshotInput `json:"-" xml:"-"` -} - -type metadataRestoreFromClusterSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7279,11 +6727,7 @@ type RestoreFromClusterSnapshotOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataRestoreFromClusterSnapshotOutput `json:"-" xml:"-"` -} - -type metadataRestoreFromClusterSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7321,11 +6765,7 @@ type RestoreStatus struct { // or failed. Status *string `type:"string"` - metadataRestoreStatus `json:"-" xml:"-"` -} - -type metadataRestoreStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7361,11 +6801,7 @@ type RevokeClusterSecurityGroupIngressInput struct { // Example: 111122223333 EC2SecurityGroupOwnerId *string `type:"string"` - metadataRevokeClusterSecurityGroupIngressInput `json:"-" xml:"-"` -} - -type metadataRevokeClusterSecurityGroupIngressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7382,11 +6818,7 @@ type RevokeClusterSecurityGroupIngressOutput struct { // Describes a security group. ClusterSecurityGroup *ClusterSecurityGroup `type:"structure"` - metadataRevokeClusterSecurityGroupIngressOutput `json:"-" xml:"-"` -} - -type metadataRevokeClusterSecurityGroupIngressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7412,11 +6844,7 @@ type RevokeSnapshotAccessInput struct { // The identifier of the snapshot that the account can no longer access. SnapshotIdentifier *string `type:"string" required:"true"` - metadataRevokeSnapshotAccessInput `json:"-" xml:"-"` -} - -type metadataRevokeSnapshotAccessInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7433,11 +6861,7 @@ type RevokeSnapshotAccessOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` - metadataRevokeSnapshotAccessOutput `json:"-" xml:"-"` -} - -type metadataRevokeSnapshotAccessOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7457,11 +6881,7 @@ type RotateEncryptionKeyInput struct { // Constraints: Must be the name of valid cluster that has encryption enabled. ClusterIdentifier *string `type:"string" required:"true"` - metadataRotateEncryptionKeyInput `json:"-" xml:"-"` -} - -type metadataRotateEncryptionKeyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7478,11 +6898,7 @@ type RotateEncryptionKeyOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` - metadataRotateEncryptionKeyOutput `json:"-" xml:"-"` -} - -type metadataRotateEncryptionKeyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7597,11 +7013,7 @@ type Snapshot struct { // VPC. Otherwise, this field is not in the output. VpcId *string `type:"string"` - metadataSnapshot `json:"-" xml:"-"` -} - -type metadataSnapshot struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7632,11 +7044,7 @@ type SnapshotCopyGrant struct { // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` - metadataSnapshotCopyGrant `json:"-" xml:"-"` -} - -type metadataSnapshotCopyGrant struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7660,11 +7068,7 @@ type Subnet struct { // The status of the subnet. SubnetStatus *string `type:"string"` - metadataSubnet `json:"-" xml:"-"` -} - -type metadataSubnet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7685,11 +7089,7 @@ type Tag struct { // The value for the resource tag. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7720,11 +7120,7 @@ type TaggedResource struct { // The tag for the resource. Tag *Tag `type:"structure"` - metadataTaggedResource `json:"-" xml:"-"` -} - -type metadataTaggedResource struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7743,11 +7139,7 @@ type VpcSecurityGroupMembership struct { VpcSecurityGroupId *string `type:"string"` - metadataVpcSecurityGroupMembership `json:"-" xml:"-"` -} - -type metadataVpcSecurityGroupMembership struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/route53/api.go b/service/route53/api.go index b7bdf6e4dec..73618f05191 100644 --- a/service/route53/api.go +++ b/service/route53/api.go @@ -1121,11 +1121,7 @@ type AliasTarget struct { // . HostedZoneId *string `type:"string" required:"true"` - metadataAliasTarget `json:"-" xml:"-"` -} - -type metadataAliasTarget struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1153,11 +1149,7 @@ type AssociateVPCWithHostedZoneInput struct { // The VPC that you want your hosted zone to be associated with. VPC *VPC `type:"structure" required:"true"` - metadataAssociateVPCWithHostedZoneInput `json:"-" xml:"-"` -} - -type metadataAssociateVPCWithHostedZoneInput struct { - SDKShapeTraits bool `locationName:"AssociateVPCWithHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"AssociateVPCWithHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -1176,11 +1168,7 @@ type AssociateVPCWithHostedZoneOutput struct { // your AssociateVPCWithHostedZoneRequest. ChangeInfo *ChangeInfo `type:"structure" required:"true"` - metadataAssociateVPCWithHostedZoneOutput `json:"-" xml:"-"` -} - -type metadataAssociateVPCWithHostedZoneOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1204,11 +1192,7 @@ type Change struct { // Information about the resource record set to create or delete. ResourceRecordSet *ResourceRecordSet `type:"structure" required:"true"` - metadataChange `json:"-" xml:"-"` -} - -type metadataChange struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1231,11 +1215,7 @@ type ChangeBatch struct { // Optional: Any comments you want to include about a change batch request. Comment *string `type:"string"` - metadataChangeBatch `json:"-" xml:"-"` -} - -type metadataChangeBatch struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1277,11 +1257,7 @@ type ChangeInfo struct { // Time (UTC), which is synonymous with Greenwich Mean Time in this context. SubmittedAt *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - metadataChangeInfo `json:"-" xml:"-"` -} - -type metadataChangeInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1303,11 +1279,7 @@ type ChangeResourceRecordSetsInput struct { // want to change. HostedZoneId *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataChangeResourceRecordSetsInput `json:"-" xml:"-"` -} - -type metadataChangeResourceRecordSetsInput struct { - SDKShapeTraits bool `locationName:"ChangeResourceRecordSetsRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"ChangeResourceRecordSetsRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -1329,11 +1301,7 @@ type ChangeResourceRecordSetsOutput struct { // to get detailed information about the change. ChangeInfo *ChangeInfo `type:"structure" required:"true"` - metadataChangeResourceRecordSetsOutput `json:"-" xml:"-"` -} - -type metadataChangeResourceRecordSetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1366,11 +1334,7 @@ type ChangeTagsForResourceInput struct { // - The resource type for hosted zones is hostedzone. ResourceType *string `location:"uri" locationName:"ResourceType" type:"string" required:"true" enum:"TagResourceType"` - metadataChangeTagsForResourceInput `json:"-" xml:"-"` -} - -type metadataChangeTagsForResourceInput struct { - SDKShapeTraits bool `locationName:"ChangeTagsForResourceRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"ChangeTagsForResourceRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -1385,11 +1349,7 @@ func (s ChangeTagsForResourceInput) GoString() string { // Empty response for the request. type ChangeTagsForResourceOutput struct { - metadataChangeTagsForResourceOutput `json:"-" xml:"-"` -} - -type metadataChangeTagsForResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1418,11 +1378,7 @@ type CreateHealthCheckInput struct { // A complex type that contains health check configuration. HealthCheckConfig *HealthCheckConfig `type:"structure" required:"true"` - metadataCreateHealthCheckInput `json:"-" xml:"-"` -} - -type metadataCreateHealthCheckInput struct { - SDKShapeTraits bool `locationName:"CreateHealthCheckRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"CreateHealthCheckRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -1443,11 +1399,7 @@ type CreateHealthCheckOutput struct { // The unique URL representing the new health check. Location *string `location:"header" locationName:"Location" type:"string" required:"true"` - metadataCreateHealthCheckOutput `json:"-" xml:"-"` -} - -type metadataCreateHealthCheckOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1495,11 +1447,7 @@ type CreateHostedZoneInput struct { // than the given VPC. VPC *VPC `type:"structure"` - metadataCreateHostedZoneInput `json:"-" xml:"-"` -} - -type metadataCreateHostedZoneInput struct { - SDKShapeTraits bool `locationName:"CreateHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"CreateHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -1530,11 +1478,7 @@ type CreateHostedZoneOutput struct { VPC *VPC `type:"structure"` - metadataCreateHostedZoneOutput `json:"-" xml:"-"` -} - -type metadataCreateHostedZoneOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1562,11 +1506,7 @@ type CreateReusableDelegationSetInput struct { // It is an optional parameter. HostedZoneId *string `type:"string"` - metadataCreateReusableDelegationSetInput `json:"-" xml:"-"` -} - -type metadataCreateReusableDelegationSetInput struct { - SDKShapeTraits bool `locationName:"CreateReusableDelegationSetRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"CreateReusableDelegationSetRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -1586,11 +1526,7 @@ type CreateReusableDelegationSetOutput struct { // The unique URL representing the new reusbale delegation set. Location *string `location:"header" locationName:"Location" type:"string" required:"true"` - metadataCreateReusableDelegationSetOutput `json:"-" xml:"-"` -} - -type metadataCreateReusableDelegationSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1614,11 +1550,7 @@ type DelegationSet struct { // to your domain for each NameServer that is assigned to your hosted zone. NameServers []*string `locationNameList:"NameServer" min:"1" type:"list" required:"true"` - metadataDelegationSet `json:"-" xml:"-"` -} - -type metadataDelegationSet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1636,11 +1568,7 @@ type DeleteHealthCheckInput struct { // The ID of the health check to delete. HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` - metadataDeleteHealthCheckInput `json:"-" xml:"-"` -} - -type metadataDeleteHealthCheckInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1655,11 +1583,7 @@ func (s DeleteHealthCheckInput) GoString() string { // Empty response for the request. type DeleteHealthCheckOutput struct { - metadataDeleteHealthCheckOutput `json:"-" xml:"-"` -} - -type metadataDeleteHealthCheckOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1678,11 +1602,7 @@ type DeleteHostedZoneInput struct { // The ID of the hosted zone you want to delete. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataDeleteHostedZoneInput `json:"-" xml:"-"` -} - -type metadataDeleteHostedZoneInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1701,11 +1621,7 @@ type DeleteHostedZoneOutput struct { // your delete request. ChangeInfo *ChangeInfo `type:"structure" required:"true"` - metadataDeleteHostedZoneOutput `json:"-" xml:"-"` -} - -type metadataDeleteHostedZoneOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1723,11 +1639,7 @@ type DeleteReusableDelegationSetInput struct { // The ID of the reusable delegation set you want to delete. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataDeleteReusableDelegationSetInput `json:"-" xml:"-"` -} - -type metadataDeleteReusableDelegationSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1742,11 +1654,7 @@ func (s DeleteReusableDelegationSetInput) GoString() string { // Empty response for the request. type DeleteReusableDelegationSetOutput struct { - metadataDeleteReusableDelegationSetOutput `json:"-" xml:"-"` -} - -type metadataDeleteReusableDelegationSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1773,11 +1681,7 @@ type DisassociateVPCFromHostedZoneInput struct { // The VPC that you want your hosted zone to be disassociated from. VPC *VPC `type:"structure" required:"true"` - metadataDisassociateVPCFromHostedZoneInput `json:"-" xml:"-"` -} - -type metadataDisassociateVPCFromHostedZoneInput struct { - SDKShapeTraits bool `locationName:"DisassociateVPCFromHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"DisassociateVPCFromHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -1796,11 +1700,7 @@ type DisassociateVPCFromHostedZoneOutput struct { // your DisassociateVPCFromHostedZoneRequest. ChangeInfo *ChangeInfo `type:"structure" required:"true"` - metadataDisassociateVPCFromHostedZoneOutput `json:"-" xml:"-"` -} - -type metadataDisassociateVPCFromHostedZoneOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1838,11 +1738,7 @@ type GeoLocation struct { // error. SubdivisionCode *string `min:"1" type:"string"` - metadataGeoLocation `json:"-" xml:"-"` -} - -type metadataGeoLocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1884,11 +1780,7 @@ type GeoLocationDetails struct { // is also present. SubdivisionName *string `min:"1" type:"string"` - metadataGeoLocationDetails `json:"-" xml:"-"` -} - -type metadataGeoLocationDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1908,11 +1800,7 @@ type GetChangeInput struct { // the request. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetChangeInput `json:"-" xml:"-"` -} - -type metadataGetChangeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1932,11 +1820,7 @@ type GetChangeOutput struct { // time of the request. ChangeInfo *ChangeInfo `type:"structure" required:"true"` - metadataGetChangeOutput `json:"-" xml:"-"` -} - -type metadataGetChangeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1951,11 +1835,7 @@ func (s GetChangeOutput) GoString() string { // Empty request. type GetCheckerIpRangesInput struct { - metadataGetCheckerIpRangesInput `json:"-" xml:"-"` -} - -type metadataGetCheckerIpRangesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1974,11 +1854,7 @@ type GetCheckerIpRangesOutput struct { // Amazon Route 53 health checkers. CheckerIpRanges []*string `type:"list" required:"true"` - metadataGetCheckerIpRangesOutput `json:"-" xml:"-"` -} - -type metadataGetCheckerIpRangesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2016,11 +1892,7 @@ type GetGeoLocationInput struct { // error. SubdivisionCode *string `location:"querystring" locationName:"subdivisioncode" min:"1" type:"string"` - metadataGetGeoLocationInput `json:"-" xml:"-"` -} - -type metadataGetGeoLocationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2038,11 +1910,7 @@ type GetGeoLocationOutput struct { // A complex type that contains the information about the specified geo location. GeoLocationDetails *GeoLocationDetails `type:"structure" required:"true"` - metadataGetGeoLocationOutput `json:"-" xml:"-"` -} - -type metadataGetGeoLocationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2058,11 +1926,7 @@ func (s GetGeoLocationOutput) GoString() string { // To retrieve a count of all your health checks, send a GET request to the // 2013-04-01/healthcheckcount resource. type GetHealthCheckCountInput struct { - metadataGetHealthCheckCountInput `json:"-" xml:"-"` -} - -type metadataGetHealthCheckCountInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2081,11 +1945,7 @@ type GetHealthCheckCountOutput struct { // The number of health checks associated with the current AWS account. HealthCheckCount *int64 `type:"long" required:"true"` - metadataGetHealthCheckCountOutput `json:"-" xml:"-"` -} - -type metadataGetHealthCheckCountOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2104,11 +1964,7 @@ type GetHealthCheckInput struct { // The ID of the health check to retrieve. HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` - metadataGetHealthCheckInput `json:"-" xml:"-"` -} - -type metadataGetHealthCheckInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2128,11 +1984,7 @@ type GetHealthCheckLastFailureReasonInput struct { // the most recent failure. HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` - metadataGetHealthCheckLastFailureReasonInput `json:"-" xml:"-"` -} - -type metadataGetHealthCheckLastFailureReasonInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2152,11 +2004,7 @@ type GetHealthCheckLastFailureReasonOutput struct { // health checker. HealthCheckObservations []*HealthCheckObservation `locationNameList:"HealthCheckObservation" type:"list" required:"true"` - metadataGetHealthCheckLastFailureReasonOutput `json:"-" xml:"-"` -} - -type metadataGetHealthCheckLastFailureReasonOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2174,11 +2022,7 @@ type GetHealthCheckOutput struct { // A complex type that contains the information about the specified health check. HealthCheck *HealthCheck `type:"structure" required:"true"` - metadataGetHealthCheckOutput `json:"-" xml:"-"` -} - -type metadataGetHealthCheckOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2198,11 +2042,7 @@ type GetHealthCheckStatusInput struct { // status. HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` - metadataGetHealthCheckStatusInput `json:"-" xml:"-"` -} - -type metadataGetHealthCheckStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2222,11 +2062,7 @@ type GetHealthCheckStatusOutput struct { // health checker. HealthCheckObservations []*HealthCheckObservation `locationNameList:"HealthCheckObservation" type:"list" required:"true"` - metadataGetHealthCheckStatusOutput `json:"-" xml:"-"` -} - -type metadataGetHealthCheckStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2242,11 +2078,7 @@ func (s GetHealthCheckStatusOutput) GoString() string { // To retrieve a count of all your hosted zones, send a GET request to the 2013-04-01/hostedzonecount // resource. type GetHostedZoneCountInput struct { - metadataGetHostedZoneCountInput `json:"-" xml:"-"` -} - -type metadataGetHostedZoneCountInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2265,11 +2097,7 @@ type GetHostedZoneCountOutput struct { // The number of hosted zones associated with the current AWS account. HostedZoneCount *int64 `type:"long" required:"true"` - metadataGetHostedZoneCountOutput `json:"-" xml:"-"` -} - -type metadataGetHostedZoneCountOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2288,11 +2116,7 @@ type GetHostedZoneInput struct { // in the delegation set. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetHostedZoneInput `json:"-" xml:"-"` -} - -type metadataGetHostedZoneInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2318,11 +2142,7 @@ type GetHostedZoneOutput struct { // hosted zone. VPCs []*VPC `locationNameList:"VPC" min:"1" type:"list"` - metadataGetHostedZoneOutput `json:"-" xml:"-"` -} - -type metadataGetHostedZoneOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2341,11 +2161,7 @@ type GetReusableDelegationSetInput struct { // the name server. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataGetReusableDelegationSetInput `json:"-" xml:"-"` -} - -type metadataGetReusableDelegationSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2365,11 +2181,7 @@ type GetReusableDelegationSetOutput struct { // specified delegation set ID. DelegationSet *DelegationSet `type:"structure" required:"true"` - metadataGetReusableDelegationSetOutput `json:"-" xml:"-"` -} - -type metadataGetReusableDelegationSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2398,11 +2210,7 @@ type HealthCheck struct { // The ID of the specified health check. Id *string `type:"string" required:"true"` - metadataHealthCheck `json:"-" xml:"-"` -} - -type metadataHealthCheck struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2476,11 +2284,7 @@ type HealthCheckConfig struct { // HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH. Type *string `type:"string" required:"true" enum:"HealthCheckType"` - metadataHealthCheckConfig `json:"-" xml:"-"` -} - -type metadataHealthCheckConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2503,11 +2307,7 @@ type HealthCheckObservation struct { // the current observation. StatusReport *StatusReport `type:"structure"` - metadataHealthCheckObservation `json:"-" xml:"-"` -} - -type metadataHealthCheckObservation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2544,11 +2344,7 @@ type HostedZone struct { // Total number of resource record sets in the hosted zone. ResourceRecordSetCount *int64 `type:"long"` - metadataHostedZone `json:"-" xml:"-"` -} - -type metadataHostedZone struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2574,11 +2370,7 @@ type HostedZoneConfig struct { // returned in the response; do not specify it in the request. PrivateZone *bool `type:"boolean"` - metadataHostedZoneConfig `json:"-" xml:"-"` -} - -type metadataHostedZoneConfig struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2620,11 +2412,7 @@ type ListGeoLocationsInput struct { // error. StartSubdivisionCode *string `location:"querystring" locationName:"startsubdivisioncode" min:"1" type:"string"` - metadataListGeoLocationsInput `json:"-" xml:"-"` -} - -type metadataListGeoLocationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2672,11 +2460,7 @@ type ListGeoLocationsOutput struct { // is true and the next geo location has a subdivision. NextSubdivisionCode *string `min:"1" type:"string"` - metadataListGeoLocationsOutput `json:"-" xml:"-"` -} - -type metadataListGeoLocationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2707,11 +2491,7 @@ type ListHealthChecksInput struct { // Specify the maximum number of health checks to return per page of results. MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - metadataListHealthChecksInput `json:"-" xml:"-"` -} - -type metadataListHealthChecksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2754,11 +2534,7 @@ type ListHealthChecksOutput struct { // the NextMarker element in the Marker element to get the next page of results. NextMarker *string `type:"string"` - metadataListHealthChecksOutput `json:"-" xml:"-"` -} - -type metadataListHealthChecksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2800,11 +2576,7 @@ type ListHostedZonesByNameInput struct { // Specify the maximum number of hosted zones to return per page of results. MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - metadataListHostedZonesByNameInput `json:"-" xml:"-"` -} - -type metadataListHostedZonesByNameInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2858,11 +2630,7 @@ type ListHostedZonesByNameOutput struct { // in the ListHostedZonesByNameRequest$HostedZoneId element. NextHostedZoneId *string `type:"string"` - metadataListHostedZonesByNameOutput `json:"-" xml:"-"` -} - -type metadataListHostedZonesByNameOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2898,11 +2666,7 @@ type ListHostedZonesInput struct { // Specify the maximum number of hosted zones to return per page of results. MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - metadataListHostedZonesInput `json:"-" xml:"-"` -} - -type metadataListHostedZonesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2945,11 +2709,7 @@ type ListHostedZonesOutput struct { // the NextMarker element in the Marker element to get the next page of results. NextMarker *string `type:"string"` - metadataListHostedZonesOutput `json:"-" xml:"-"` -} - -type metadataListHostedZonesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2995,11 +2755,7 @@ type ListResourceRecordSetsInput struct { // error. StartRecordType *string `location:"querystring" locationName:"type" type:"string" enum:"RRType"` - metadataListResourceRecordSetsInput `json:"-" xml:"-"` -} - -type metadataListResourceRecordSetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3046,11 +2802,7 @@ type ListResourceRecordSetsOutput struct { // are returned by the request. ResourceRecordSets []*ResourceRecordSet `locationNameList:"ResourceRecordSet" type:"list" required:"true"` - metadataListResourceRecordSetsOutput `json:"-" xml:"-"` -} - -type metadataListResourceRecordSetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3083,11 +2835,7 @@ type ListReusableDelegationSetsInput struct { // of results. MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - metadataListReusableDelegationSetsInput `json:"-" xml:"-"` -} - -type metadataListReusableDelegationSetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3132,11 +2880,7 @@ type ListReusableDelegationSetsOutput struct { // of results. NextMarker *string `type:"string"` - metadataListReusableDelegationSetsOutput `json:"-" xml:"-"` -} - -type metadataListReusableDelegationSetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3162,11 +2906,7 @@ type ListTagsForResourceInput struct { // - The resource type for hosted zones is hostedzone. ResourceType *string `location:"uri" locationName:"ResourceType" type:"string" required:"true" enum:"TagResourceType"` - metadataListTagsForResourceInput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3184,11 +2924,7 @@ type ListTagsForResourceOutput struct { // A ResourceTagSet containing tags associated with the specified resource. ResourceTagSet *ResourceTagSet `type:"structure" required:"true"` - metadataListTagsForResourceOutput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3215,11 +2951,7 @@ type ListTagsForResourcesInput struct { // - The resource type for hosted zones is hostedzone. ResourceType *string `location:"uri" locationName:"ResourceType" type:"string" required:"true" enum:"TagResourceType"` - metadataListTagsForResourcesInput `json:"-" xml:"-"` -} - -type metadataListTagsForResourcesInput struct { - SDKShapeTraits bool `locationName:"ListTagsForResourcesRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"ListTagsForResourcesRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -3237,11 +2969,7 @@ type ListTagsForResourcesOutput struct { // A list of ResourceTagSets containing tags associated with the specified resources. ResourceTagSets []*ResourceTagSet `locationNameList:"ResourceTagSet" type:"list" required:"true"` - metadataListTagsForResourcesOutput `json:"-" xml:"-"` -} - -type metadataListTagsForResourcesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3260,11 +2988,7 @@ type ResourceRecord struct { // The value of the Value element for the current resource record set. Value *string `type:"string" required:"true"` - metadataResourceRecord `json:"-" xml:"-"` -} - -type metadataResourceRecord struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3341,11 +3065,7 @@ type ResourceRecordSet struct { // location. Weight *int64 `type:"long"` - metadataResourceRecordSet `json:"-" xml:"-"` -} - -type metadataResourceRecordSet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3373,11 +3093,7 @@ type ResourceTagSet struct { // The tags associated with the specified resource. Tags []*Tag `locationNameList:"Tag" min:"1" type:"list"` - metadataResourceTagSet `json:"-" xml:"-"` -} - -type metadataResourceTagSet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3402,11 +3118,7 @@ type StatusReport struct { // The observed health check status. Status *string `type:"string"` - metadataStatusReport `json:"-" xml:"-"` -} - -type metadataStatusReport struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3427,11 +3139,7 @@ type Tag struct { // The value for a Tag. Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3519,11 +3227,7 @@ type UpdateHealthCheckInput struct { // Specify this value only if you want to change it. SearchString *string `type:"string"` - metadataUpdateHealthCheckInput `json:"-" xml:"-"` -} - -type metadataUpdateHealthCheckInput struct { - SDKShapeTraits bool `locationName:"UpdateHealthCheckRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"UpdateHealthCheckRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -3540,11 +3244,7 @@ type UpdateHealthCheckOutput struct { // A complex type that contains identifying information about the health check. HealthCheck *HealthCheck `type:"structure" required:"true"` - metadataUpdateHealthCheckOutput `json:"-" xml:"-"` -} - -type metadataUpdateHealthCheckOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3566,11 +3266,7 @@ type UpdateHostedZoneCommentInput struct { // The ID of the hosted zone you want to update. Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - metadataUpdateHostedZoneCommentInput `json:"-" xml:"-"` -} - -type metadataUpdateHostedZoneCommentInput struct { - SDKShapeTraits bool `locationName:"UpdateHostedZoneCommentRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` + _ struct{} `locationName:"UpdateHostedZoneCommentRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` } // String returns the string representation @@ -3589,11 +3285,7 @@ type UpdateHostedZoneCommentOutput struct { // A complex type that contain information about the specified hosted zone. HostedZone *HostedZone `type:"structure" required:"true"` - metadataUpdateHostedZoneCommentOutput `json:"-" xml:"-"` -} - -type metadataUpdateHostedZoneCommentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3612,11 +3304,7 @@ type VPC struct { VPCRegion *string `min:"1" type:"string" enum:"VPCRegion"` - metadataVPC `json:"-" xml:"-"` -} - -type metadataVPC struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/route53domains/api.go b/service/route53domains/api.go index b7c16c9a1d5..78db88d47b0 100644 --- a/service/route53domains/api.go +++ b/service/route53domains/api.go @@ -648,11 +648,7 @@ type CheckDomainAvailabilityInput struct { // Reserved for future use. IdnLangCode *string `type:"string"` - metadataCheckDomainAvailabilityInput `json:"-" xml:"-"` -} - -type metadataCheckDomainAvailabilityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -687,11 +683,7 @@ type CheckDomainAvailabilityOutput struct { // later. Availability *string `type:"string" required:"true" enum:"DomainAvailability"` - metadataCheckDomainAvailabilityOutput `json:"-" xml:"-"` -} - -type metadataCheckDomainAvailabilityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -896,11 +888,7 @@ type ContactDetail struct { // Required: No ZipCode *string `type:"string"` - metadataContactDetail `json:"-" xml:"-"` -} - -type metadataContactDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -943,11 +931,7 @@ type DeleteTagsForDomainInput struct { // '> TagsToDelete []*string `type:"list" required:"true"` - metadataDeleteTagsForDomainInput `json:"-" xml:"-"` -} - -type metadataDeleteTagsForDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -961,11 +945,7 @@ func (s DeleteTagsForDomainInput) GoString() string { } type DeleteTagsForDomainOutput struct { - metadataDeleteTagsForDomainOutput `json:"-" xml:"-"` -} - -type metadataDeleteTagsForDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -981,11 +961,7 @@ func (s DeleteTagsForDomainOutput) GoString() string { type DisableDomainAutoRenewInput struct { DomainName *string `type:"string" required:"true"` - metadataDisableDomainAutoRenewInput `json:"-" xml:"-"` -} - -type metadataDisableDomainAutoRenewInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -999,11 +975,7 @@ func (s DisableDomainAutoRenewInput) GoString() string { } type DisableDomainAutoRenewOutput struct { - metadataDisableDomainAutoRenewOutput `json:"-" xml:"-"` -} - -type metadataDisableDomainAutoRenewOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1031,11 +1003,7 @@ type DisableDomainTransferLockInput struct { // Required: Yes DomainName *string `type:"string" required:"true"` - metadataDisableDomainTransferLockInput `json:"-" xml:"-"` -} - -type metadataDisableDomainTransferLockInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1060,11 +1028,7 @@ type DisableDomainTransferLockOutput struct { // Constraints: Maximum 255 characters. OperationId *string `type:"string" required:"true"` - metadataDisableDomainTransferLockOutput `json:"-" xml:"-"` -} - -type metadataDisableDomainTransferLockOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1103,11 +1067,7 @@ type DomainSummary struct { // Valid values: True | False TransferLock *bool `type:"boolean"` - metadataDomainSummary `json:"-" xml:"-"` -} - -type metadataDomainSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1123,11 +1083,7 @@ func (s DomainSummary) GoString() string { type EnableDomainAutoRenewInput struct { DomainName *string `type:"string" required:"true"` - metadataEnableDomainAutoRenewInput `json:"-" xml:"-"` -} - -type metadataEnableDomainAutoRenewInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1141,11 +1097,7 @@ func (s EnableDomainAutoRenewInput) GoString() string { } type EnableDomainAutoRenewOutput struct { - metadataEnableDomainAutoRenewOutput `json:"-" xml:"-"` -} - -type metadataEnableDomainAutoRenewOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1173,11 +1125,7 @@ type EnableDomainTransferLockInput struct { // Required: Yes DomainName *string `type:"string" required:"true"` - metadataEnableDomainTransferLockInput `json:"-" xml:"-"` -} - -type metadataEnableDomainTransferLockInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1202,11 +1150,7 @@ type EnableDomainTransferLockOutput struct { // Constraints: Maximum 255 characters. OperationId *string `type:"string" required:"true"` - metadataEnableDomainTransferLockOutput `json:"-" xml:"-"` -} - -type metadataEnableDomainTransferLockOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1252,11 +1196,7 @@ type ExtraParam struct { // Required: Yes Value *string `type:"string" required:"true"` - metadataExtraParam `json:"-" xml:"-"` -} - -type metadataExtraParam struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1284,11 +1224,7 @@ type GetDomainDetailInput struct { // Required: Yes DomainName *string `type:"string" required:"true"` - metadataGetDomainDetailInput `json:"-" xml:"-"` -} - -type metadataGetDomainDetailInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1440,11 +1376,7 @@ type GetDomainDetailOutput struct { // Type: String WhoIsServer *string `type:"string"` - metadataGetDomainDetailOutput `json:"-" xml:"-"` -} - -type metadataGetDomainDetailOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1469,11 +1401,7 @@ type GetOperationDetailInput struct { // Required: Yes OperationId *string `type:"string" required:"true"` - metadataGetOperationDetailInput `json:"-" xml:"-"` -} - -type metadataGetOperationDetailInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1516,11 +1444,7 @@ type GetOperationDetailOutput struct { // Type: String Type *string `type:"string" enum:"OperationType"` - metadataGetOperationDetailOutput `json:"-" xml:"-"` -} - -type metadataGetOperationDetailOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1562,11 +1486,7 @@ type ListDomainsInput struct { // Required: No MaxItems *int64 `type:"integer"` - metadataListDomainsInput `json:"-" xml:"-"` -} - -type metadataListDomainsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1597,11 +1517,7 @@ type ListDomainsOutput struct { // Parent: Operations NextPageMarker *string `type:"string"` - metadataListDomainsOutput `json:"-" xml:"-"` -} - -type metadataListDomainsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1641,11 +1557,7 @@ type ListOperationsInput struct { // Required: No MaxItems *int64 `type:"integer"` - metadataListOperationsInput `json:"-" xml:"-"` -} - -type metadataListOperationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1676,11 +1588,7 @@ type ListOperationsOutput struct { // Children: OperationId, Status, SubmittedDate, Type Operations []*OperationSummary `type:"list" required:"true"` - metadataListOperationsOutput `json:"-" xml:"-"` -} - -type metadataListOperationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1698,11 +1606,7 @@ type ListTagsForDomainInput struct { // The domain for which you want to get a list of tags. DomainName *string `type:"string" required:"true"` - metadataListTagsForDomainInput `json:"-" xml:"-"` -} - -type metadataListTagsForDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1736,11 +1640,7 @@ type ListTagsForDomainOutput struct { // Type: String TagList []*Tag `type:"list" required:"true"` - metadataListTagsForDomainOutput `json:"-" xml:"-"` -} - -type metadataListTagsForDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1776,11 +1676,7 @@ type Nameserver struct { // Parent: Nameservers Name *string `type:"string" required:"true"` - metadataNameserver `json:"-" xml:"-"` -} - -type metadataNameserver struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1816,11 +1712,7 @@ type OperationSummary struct { // | UPDATE_NAMESERVER | CHANGE_PRIVACY_PROTECTION | DOMAIN_LOCK Type *string `type:"string" required:"true" enum:"OperationType"` - metadataOperationSummary `json:"-" xml:"-"` -} - -type metadataOperationSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1950,11 +1842,7 @@ type RegisterDomainInput struct { // Required: Yes TechContact *ContactDetail `type:"structure" required:"true"` - metadataRegisterDomainInput `json:"-" xml:"-"` -} - -type metadataRegisterDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1979,11 +1867,7 @@ type RegisterDomainOutput struct { // Constraints: Maximum 255 characters. OperationId *string `type:"string" required:"true"` - metadataRegisterDomainOutput `json:"-" xml:"-"` -} - -type metadataRegisterDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2011,11 +1895,7 @@ type RetrieveDomainAuthCodeInput struct { // Required: Yes DomainName *string `type:"string" required:"true"` - metadataRetrieveDomainAuthCodeInput `json:"-" xml:"-"` -} - -type metadataRetrieveDomainAuthCodeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2035,11 +1915,7 @@ type RetrieveDomainAuthCodeOutput struct { // Type: String AuthCode *string `type:"string" required:"true"` - metadataRetrieveDomainAuthCodeOutput `json:"-" xml:"-"` -} - -type metadataRetrieveDomainAuthCodeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2080,11 +1956,7 @@ type Tag struct { // Required: Yes Value *string `type:"string"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2231,11 +2103,7 @@ type TransferDomainInput struct { // Required: Yes TechContact *ContactDetail `type:"structure" required:"true"` - metadataTransferDomainInput `json:"-" xml:"-"` -} - -type metadataTransferDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2260,11 +2128,7 @@ type TransferDomainOutput struct { // Constraints: Maximum 255 characters. OperationId *string `type:"string" required:"true"` - metadataTransferDomainOutput `json:"-" xml:"-"` -} - -type metadataTransferDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2325,11 +2189,7 @@ type UpdateDomainContactInput struct { // Required: Yes TechContact *ContactDetail `type:"structure"` - metadataUpdateDomainContactInput `json:"-" xml:"-"` -} - -type metadataUpdateDomainContactInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2354,11 +2214,7 @@ type UpdateDomainContactOutput struct { // Constraints: Maximum 255 characters. OperationId *string `type:"string" required:"true"` - metadataUpdateDomainContactOutput `json:"-" xml:"-"` -} - -type metadataUpdateDomainContactOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2428,11 +2284,7 @@ type UpdateDomainContactPrivacyInput struct { // Required: No TechPrivacy *bool `type:"boolean"` - metadataUpdateDomainContactPrivacyInput `json:"-" xml:"-"` -} - -type metadataUpdateDomainContactPrivacyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2457,11 +2309,7 @@ type UpdateDomainContactPrivacyOutput struct { // Constraints: Maximum 255 characters. OperationId *string `type:"string" required:"true"` - metadataUpdateDomainContactPrivacyOutput `json:"-" xml:"-"` -} - -type metadataUpdateDomainContactPrivacyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2501,11 +2349,7 @@ type UpdateDomainNameserversInput struct { // Required: Yes Nameservers []*Nameserver `type:"list" required:"true"` - metadataUpdateDomainNameserversInput `json:"-" xml:"-"` -} - -type metadataUpdateDomainNameserversInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2530,11 +2374,7 @@ type UpdateDomainNameserversOutput struct { // Constraints: Maximum 255 characters. OperationId *string `type:"string" required:"true"` - metadataUpdateDomainNameserversOutput `json:"-" xml:"-"` -} - -type metadataUpdateDomainNameserversOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2606,11 +2446,7 @@ type UpdateTagsForDomainInput struct { // Required: Yes TagsToUpdate []*Tag `type:"list"` - metadataUpdateTagsForDomainInput `json:"-" xml:"-"` -} - -type metadataUpdateTagsForDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2624,11 +2460,7 @@ func (s UpdateTagsForDomainInput) GoString() string { } type UpdateTagsForDomainOutput struct { - metadataUpdateTagsForDomainOutput `json:"-" xml:"-"` -} - -type metadataUpdateTagsForDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/s3/api.go b/service/s3/api.go index e45a718f9b6..26972263371 100644 --- a/service/s3/api.go +++ b/service/s3/api.go @@ -1627,11 +1627,7 @@ type AbortMultipartUploadInput struct { UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` - metadataAbortMultipartUploadInput `json:"-" xml:"-"` -} - -type metadataAbortMultipartUploadInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1649,11 +1645,7 @@ type AbortMultipartUploadOutput struct { // request. RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - metadataAbortMultipartUploadOutput `json:"-" xml:"-"` -} - -type metadataAbortMultipartUploadOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1672,11 +1664,7 @@ type AccessControlPolicy struct { Owner *Owner `type:"structure"` - metadataAccessControlPolicy `json:"-" xml:"-"` -} - -type metadataAccessControlPolicy struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1696,11 +1684,7 @@ type Bucket struct { // The name of the bucket. Name *string `type:"string"` - metadataBucket `json:"-" xml:"-"` -} - -type metadataBucket struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1716,11 +1700,7 @@ func (s Bucket) GoString() string { type BucketLifecycleConfiguration struct { Rules []*LifecycleRule `locationName:"Rule" type:"list" flattened:"true" required:"true"` - metadataBucketLifecycleConfiguration `json:"-" xml:"-"` -} - -type metadataBucketLifecycleConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1736,11 +1716,7 @@ func (s BucketLifecycleConfiguration) GoString() string { type BucketLoggingStatus struct { LoggingEnabled *LoggingEnabled `type:"structure"` - metadataBucketLoggingStatus `json:"-" xml:"-"` -} - -type metadataBucketLoggingStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1756,11 +1732,7 @@ func (s BucketLoggingStatus) GoString() string { type CORSConfiguration struct { CORSRules []*CORSRule `locationName:"CORSRule" type:"list" flattened:"true" required:"true"` - metadataCORSConfiguration `json:"-" xml:"-"` -} - -type metadataCORSConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1793,11 +1765,7 @@ type CORSRule struct { // for the specified resource. MaxAgeSeconds *int64 `type:"integer"` - metadataCORSRule `json:"-" xml:"-"` -} - -type metadataCORSRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1824,11 +1792,7 @@ type CloudFunctionConfiguration struct { InvocationRole *string `type:"string"` - metadataCloudFunctionConfiguration `json:"-" xml:"-"` -} - -type metadataCloudFunctionConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1844,11 +1808,7 @@ func (s CloudFunctionConfiguration) GoString() string { type CommonPrefix struct { Prefix *string `type:"string"` - metadataCommonPrefix `json:"-" xml:"-"` -} - -type metadataCommonPrefix struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1876,11 +1836,7 @@ type CompleteMultipartUploadInput struct { UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` - metadataCompleteMultipartUploadInput `json:"-" xml:"-"` -} - -type metadataCompleteMultipartUploadInput struct { - SDKShapeTraits bool `type:"structure" payload:"MultipartUpload"` + _ struct{} `type:"structure" payload:"MultipartUpload"` } // String returns the string representation @@ -1922,11 +1878,7 @@ type CompleteMultipartUploadOutput struct { // Version of the object. VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` - metadataCompleteMultipartUploadOutput `json:"-" xml:"-"` -} - -type metadataCompleteMultipartUploadOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1942,11 +1894,7 @@ func (s CompleteMultipartUploadOutput) GoString() string { type CompletedMultipartUpload struct { Parts []*CompletedPart `locationName:"Part" type:"list" flattened:"true"` - metadataCompletedMultipartUpload `json:"-" xml:"-"` -} - -type metadataCompletedMultipartUpload struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1967,11 +1915,7 @@ type CompletedPart struct { // 1 and 10,000. PartNumber *int64 `type:"integer"` - metadataCompletedPart `json:"-" xml:"-"` -} - -type metadataCompletedPart struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2001,11 +1945,7 @@ type Condition struct { // the redirect to be applied. KeyPrefixEquals *string `type:"string"` - metadataCondition `json:"-" xml:"-"` -} - -type metadataCondition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2134,11 +2074,7 @@ type CopyObjectInput struct { // the value of this header in the object metadata. WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` - metadataCopyObjectInput `json:"-" xml:"-"` -} - -type metadataCopyObjectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2184,11 +2120,7 @@ type CopyObjectOutput struct { // Version ID of the newly created copy. VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` - metadataCopyObjectOutput `json:"-" xml:"-"` -} - -type metadataCopyObjectOutput struct { - SDKShapeTraits bool `type:"structure" payload:"CopyObjectResult"` + _ struct{} `type:"structure" payload:"CopyObjectResult"` } // String returns the string representation @@ -2206,11 +2138,7 @@ type CopyObjectResult struct { LastModified *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataCopyObjectResult `json:"-" xml:"-"` -} - -type metadataCopyObjectResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2230,11 +2158,7 @@ type CopyPartResult struct { // Date and time at which the object was uploaded. LastModified *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataCopyPartResult `json:"-" xml:"-"` -} - -type metadataCopyPartResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2252,11 +2176,7 @@ type CreateBucketConfiguration struct { // a region, the bucket will be created in US Standard. LocationConstraint *string `type:"string" enum:"BucketLocationConstraint"` - metadataCreateBucketConfiguration `json:"-" xml:"-"` -} - -type metadataCreateBucketConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2293,11 +2213,7 @@ type CreateBucketInput struct { // Allows grantee to write the ACL for the applicable bucket. GrantWriteACP *string `location:"header" locationName:"x-amz-grant-write-acp" type:"string"` - metadataCreateBucketInput `json:"-" xml:"-"` -} - -type metadataCreateBucketInput struct { - SDKShapeTraits bool `type:"structure" payload:"CreateBucketConfiguration"` + _ struct{} `type:"structure" payload:"CreateBucketConfiguration"` } // String returns the string representation @@ -2313,11 +2229,7 @@ func (s CreateBucketInput) GoString() string { type CreateBucketOutput struct { Location *string `location:"header" locationName:"Location" type:"string"` - metadataCreateBucketOutput `json:"-" xml:"-"` -} - -type metadataCreateBucketOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2412,11 +2324,7 @@ type CreateMultipartUploadInput struct { // the value of this header in the object metadata. WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` - metadataCreateMultipartUploadInput `json:"-" xml:"-"` -} - -type metadataCreateMultipartUploadInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2461,11 +2369,7 @@ type CreateMultipartUploadOutput struct { // ID for the initiated multipart upload. UploadId *string `type:"string"` - metadataCreateMultipartUploadOutput `json:"-" xml:"-"` -} - -type metadataCreateMultipartUploadOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2485,11 +2389,7 @@ type Delete struct { // you must set its value to true. Quiet *bool `type:"boolean"` - metadataDelete `json:"-" xml:"-"` -} - -type metadataDelete struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2505,11 +2405,7 @@ func (s Delete) GoString() string { type DeleteBucketCorsInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataDeleteBucketCorsInput `json:"-" xml:"-"` -} - -type metadataDeleteBucketCorsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2523,11 +2419,7 @@ func (s DeleteBucketCorsInput) GoString() string { } type DeleteBucketCorsOutput struct { - metadataDeleteBucketCorsOutput `json:"-" xml:"-"` -} - -type metadataDeleteBucketCorsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2543,11 +2435,7 @@ func (s DeleteBucketCorsOutput) GoString() string { type DeleteBucketInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataDeleteBucketInput `json:"-" xml:"-"` -} - -type metadataDeleteBucketInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2563,11 +2451,7 @@ func (s DeleteBucketInput) GoString() string { type DeleteBucketLifecycleInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataDeleteBucketLifecycleInput `json:"-" xml:"-"` -} - -type metadataDeleteBucketLifecycleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2581,11 +2465,7 @@ func (s DeleteBucketLifecycleInput) GoString() string { } type DeleteBucketLifecycleOutput struct { - metadataDeleteBucketLifecycleOutput `json:"-" xml:"-"` -} - -type metadataDeleteBucketLifecycleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2599,11 +2479,7 @@ func (s DeleteBucketLifecycleOutput) GoString() string { } type DeleteBucketOutput struct { - metadataDeleteBucketOutput `json:"-" xml:"-"` -} - -type metadataDeleteBucketOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2619,11 +2495,7 @@ func (s DeleteBucketOutput) GoString() string { type DeleteBucketPolicyInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataDeleteBucketPolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteBucketPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2637,11 +2509,7 @@ func (s DeleteBucketPolicyInput) GoString() string { } type DeleteBucketPolicyOutput struct { - metadataDeleteBucketPolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteBucketPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2657,11 +2525,7 @@ func (s DeleteBucketPolicyOutput) GoString() string { type DeleteBucketReplicationInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataDeleteBucketReplicationInput `json:"-" xml:"-"` -} - -type metadataDeleteBucketReplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2675,11 +2539,7 @@ func (s DeleteBucketReplicationInput) GoString() string { } type DeleteBucketReplicationOutput struct { - metadataDeleteBucketReplicationOutput `json:"-" xml:"-"` -} - -type metadataDeleteBucketReplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2695,11 +2555,7 @@ func (s DeleteBucketReplicationOutput) GoString() string { type DeleteBucketTaggingInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataDeleteBucketTaggingInput `json:"-" xml:"-"` -} - -type metadataDeleteBucketTaggingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2713,11 +2569,7 @@ func (s DeleteBucketTaggingInput) GoString() string { } type DeleteBucketTaggingOutput struct { - metadataDeleteBucketTaggingOutput `json:"-" xml:"-"` -} - -type metadataDeleteBucketTaggingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2733,11 +2585,7 @@ func (s DeleteBucketTaggingOutput) GoString() string { type DeleteBucketWebsiteInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataDeleteBucketWebsiteInput `json:"-" xml:"-"` -} - -type metadataDeleteBucketWebsiteInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2751,11 +2599,7 @@ func (s DeleteBucketWebsiteInput) GoString() string { } type DeleteBucketWebsiteOutput struct { - metadataDeleteBucketWebsiteOutput `json:"-" xml:"-"` -} - -type metadataDeleteBucketWebsiteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2784,11 +2628,7 @@ type DeleteMarkerEntry struct { // Version ID of an object. VersionId *string `type:"string"` - metadataDeleteMarkerEntry `json:"-" xml:"-"` -} - -type metadataDeleteMarkerEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2819,11 +2659,7 @@ type DeleteObjectInput struct { // VersionId used to reference a specific version of the object. VersionId *string `location:"querystring" locationName:"versionId" type:"string"` - metadataDeleteObjectInput `json:"-" xml:"-"` -} - -type metadataDeleteObjectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2849,11 +2685,7 @@ type DeleteObjectOutput struct { // operation. VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` - metadataDeleteObjectOutput `json:"-" xml:"-"` -} - -type metadataDeleteObjectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2881,11 +2713,7 @@ type DeleteObjectsInput struct { // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - metadataDeleteObjectsInput `json:"-" xml:"-"` -} - -type metadataDeleteObjectsInput struct { - SDKShapeTraits bool `type:"structure" payload:"Delete"` + _ struct{} `type:"structure" payload:"Delete"` } // String returns the string representation @@ -2907,11 +2735,7 @@ type DeleteObjectsOutput struct { // request. RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - metadataDeleteObjectsOutput `json:"-" xml:"-"` -} - -type metadataDeleteObjectsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2933,11 +2757,7 @@ type DeletedObject struct { VersionId *string `type:"string"` - metadataDeletedObject `json:"-" xml:"-"` -} - -type metadataDeletedObject struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2958,11 +2778,7 @@ type Destination struct { // The class of storage used to store the object. StorageClass *string `type:"string" enum:"StorageClass"` - metadataDestination `json:"-" xml:"-"` -} - -type metadataDestination struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2984,11 +2800,7 @@ type Error struct { VersionId *string `type:"string"` - metadataError `json:"-" xml:"-"` -} - -type metadataError struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3005,11 +2817,7 @@ type ErrorDocument struct { // The object key name to use when a 4XX class error occurs. Key *string `min:"1" type:"string" required:"true"` - metadataErrorDocument `json:"-" xml:"-"` -} - -type metadataErrorDocument struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3033,11 +2841,7 @@ type FilterRule struct { Value *string `type:"string"` - metadataFilterRule `json:"-" xml:"-"` -} - -type metadataFilterRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3053,11 +2857,7 @@ func (s FilterRule) GoString() string { type GetBucketAclInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketAclInput `json:"-" xml:"-"` -} - -type metadataGetBucketAclInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3076,11 +2876,7 @@ type GetBucketAclOutput struct { Owner *Owner `type:"structure"` - metadataGetBucketAclOutput `json:"-" xml:"-"` -} - -type metadataGetBucketAclOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3096,11 +2892,7 @@ func (s GetBucketAclOutput) GoString() string { type GetBucketCorsInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketCorsInput `json:"-" xml:"-"` -} - -type metadataGetBucketCorsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3116,11 +2908,7 @@ func (s GetBucketCorsInput) GoString() string { type GetBucketCorsOutput struct { CORSRules []*CORSRule `locationName:"CORSRule" type:"list" flattened:"true"` - metadataGetBucketCorsOutput `json:"-" xml:"-"` -} - -type metadataGetBucketCorsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3136,11 +2924,7 @@ func (s GetBucketCorsOutput) GoString() string { type GetBucketLifecycleConfigurationInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketLifecycleConfigurationInput `json:"-" xml:"-"` -} - -type metadataGetBucketLifecycleConfigurationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3156,11 +2940,7 @@ func (s GetBucketLifecycleConfigurationInput) GoString() string { type GetBucketLifecycleConfigurationOutput struct { Rules []*LifecycleRule `locationName:"Rule" type:"list" flattened:"true"` - metadataGetBucketLifecycleConfigurationOutput `json:"-" xml:"-"` -} - -type metadataGetBucketLifecycleConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3176,11 +2956,7 @@ func (s GetBucketLifecycleConfigurationOutput) GoString() string { type GetBucketLifecycleInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketLifecycleInput `json:"-" xml:"-"` -} - -type metadataGetBucketLifecycleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3196,11 +2972,7 @@ func (s GetBucketLifecycleInput) GoString() string { type GetBucketLifecycleOutput struct { Rules []*Rule `locationName:"Rule" type:"list" flattened:"true"` - metadataGetBucketLifecycleOutput `json:"-" xml:"-"` -} - -type metadataGetBucketLifecycleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3216,11 +2988,7 @@ func (s GetBucketLifecycleOutput) GoString() string { type GetBucketLocationInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketLocationInput `json:"-" xml:"-"` -} - -type metadataGetBucketLocationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3236,11 +3004,7 @@ func (s GetBucketLocationInput) GoString() string { type GetBucketLocationOutput struct { LocationConstraint *string `type:"string" enum:"BucketLocationConstraint"` - metadataGetBucketLocationOutput `json:"-" xml:"-"` -} - -type metadataGetBucketLocationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3256,11 +3020,7 @@ func (s GetBucketLocationOutput) GoString() string { type GetBucketLoggingInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketLoggingInput `json:"-" xml:"-"` -} - -type metadataGetBucketLoggingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3276,11 +3036,7 @@ func (s GetBucketLoggingInput) GoString() string { type GetBucketLoggingOutput struct { LoggingEnabled *LoggingEnabled `type:"structure"` - metadataGetBucketLoggingOutput `json:"-" xml:"-"` -} - -type metadataGetBucketLoggingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3297,11 +3053,7 @@ type GetBucketNotificationConfigurationRequest struct { // Name of the buket to get the notification configuration for. Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketNotificationConfigurationRequest `json:"-" xml:"-"` -} - -type metadataGetBucketNotificationConfigurationRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3317,11 +3069,7 @@ func (s GetBucketNotificationConfigurationRequest) GoString() string { type GetBucketPolicyInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketPolicyInput `json:"-" xml:"-"` -} - -type metadataGetBucketPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3338,11 +3086,7 @@ type GetBucketPolicyOutput struct { // The bucket policy as a JSON document. Policy *string `type:"string"` - metadataGetBucketPolicyOutput `json:"-" xml:"-"` -} - -type metadataGetBucketPolicyOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Policy"` + _ struct{} `type:"structure" payload:"Policy"` } // String returns the string representation @@ -3358,11 +3102,7 @@ func (s GetBucketPolicyOutput) GoString() string { type GetBucketReplicationInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketReplicationInput `json:"-" xml:"-"` -} - -type metadataGetBucketReplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3380,11 +3120,7 @@ type GetBucketReplicationOutput struct { // replication configuration size can be up to 2 MB. ReplicationConfiguration *ReplicationConfiguration `type:"structure"` - metadataGetBucketReplicationOutput `json:"-" xml:"-"` -} - -type metadataGetBucketReplicationOutput struct { - SDKShapeTraits bool `type:"structure" payload:"ReplicationConfiguration"` + _ struct{} `type:"structure" payload:"ReplicationConfiguration"` } // String returns the string representation @@ -3400,11 +3136,7 @@ func (s GetBucketReplicationOutput) GoString() string { type GetBucketRequestPaymentInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketRequestPaymentInput `json:"-" xml:"-"` -} - -type metadataGetBucketRequestPaymentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3421,11 +3153,7 @@ type GetBucketRequestPaymentOutput struct { // Specifies who pays for the download and request fees. Payer *string `type:"string" enum:"Payer"` - metadataGetBucketRequestPaymentOutput `json:"-" xml:"-"` -} - -type metadataGetBucketRequestPaymentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3441,11 +3169,7 @@ func (s GetBucketRequestPaymentOutput) GoString() string { type GetBucketTaggingInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketTaggingInput `json:"-" xml:"-"` -} - -type metadataGetBucketTaggingInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3461,11 +3185,7 @@ func (s GetBucketTaggingInput) GoString() string { type GetBucketTaggingOutput struct { TagSet []*Tag `locationNameList:"Tag" type:"list" required:"true"` - metadataGetBucketTaggingOutput `json:"-" xml:"-"` -} - -type metadataGetBucketTaggingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3481,11 +3201,7 @@ func (s GetBucketTaggingOutput) GoString() string { type GetBucketVersioningInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketVersioningInput `json:"-" xml:"-"` -} - -type metadataGetBucketVersioningInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3507,11 +3223,7 @@ type GetBucketVersioningOutput struct { // The versioning state of the bucket. Status *string `type:"string" enum:"BucketVersioningStatus"` - metadataGetBucketVersioningOutput `json:"-" xml:"-"` -} - -type metadataGetBucketVersioningOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3527,11 +3239,7 @@ func (s GetBucketVersioningOutput) GoString() string { type GetBucketWebsiteInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataGetBucketWebsiteInput `json:"-" xml:"-"` -} - -type metadataGetBucketWebsiteInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3553,11 +3261,7 @@ type GetBucketWebsiteOutput struct { RoutingRules []*RoutingRule `locationNameList:"RoutingRule" type:"list"` - metadataGetBucketWebsiteOutput `json:"-" xml:"-"` -} - -type metadataGetBucketWebsiteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3584,11 +3288,7 @@ type GetObjectAclInput struct { // VersionId used to reference a specific version of the object. VersionId *string `location:"querystring" locationName:"versionId" type:"string"` - metadataGetObjectAclInput `json:"-" xml:"-"` -} - -type metadataGetObjectAclInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3611,11 +3311,7 @@ type GetObjectAclOutput struct { // request. RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - metadataGetObjectAclOutput `json:"-" xml:"-"` -} - -type metadataGetObjectAclOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3695,11 +3391,7 @@ type GetObjectInput struct { // VersionId used to reference a specific version of the object. VersionId *string `location:"querystring" locationName:"versionId" type:"string"` - metadataGetObjectInput `json:"-" xml:"-"` -} - -type metadataGetObjectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3808,11 +3500,7 @@ type GetObjectOutput struct { // the value of this header in the object metadata. WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` - metadataGetObjectOutput `json:"-" xml:"-"` -} - -type metadataGetObjectOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } // String returns the string representation @@ -3836,11 +3524,7 @@ type GetObjectTorrentInput struct { // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - metadataGetObjectTorrentInput `json:"-" xml:"-"` -} - -type metadataGetObjectTorrentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3860,11 +3544,7 @@ type GetObjectTorrentOutput struct { // request. RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - metadataGetObjectTorrentOutput `json:"-" xml:"-"` -} - -type metadataGetObjectTorrentOutput struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } // String returns the string representation @@ -3883,11 +3563,7 @@ type Grant struct { // Specifies the permission given to the grantee. Permission *string `type:"string" enum:"Permission"` - metadataGrant `json:"-" xml:"-"` -} - -type metadataGrant struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3916,11 +3592,7 @@ type Grantee struct { // URI of the grantee group. URI *string `type:"string"` - metadataGrantee `json:"-" xml:"-"` -} - -type metadataGrantee struct { - SDKShapeTraits bool `type:"structure" xmlPrefix:"xsi" xmlURI:"http://www.w3.org/2001/XMLSchema-instance"` + _ struct{} `type:"structure" xmlPrefix:"xsi" xmlURI:"http://www.w3.org/2001/XMLSchema-instance"` } // String returns the string representation @@ -3936,11 +3608,7 @@ func (s Grantee) GoString() string { type HeadBucketInput struct { Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - metadataHeadBucketInput `json:"-" xml:"-"` -} - -type metadataHeadBucketInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3954,11 +3622,7 @@ func (s HeadBucketInput) GoString() string { } type HeadBucketOutput struct { - metadataHeadBucketOutput `json:"-" xml:"-"` -} - -type metadataHeadBucketOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4020,11 +3684,7 @@ type HeadObjectInput struct { // VersionId used to reference a specific version of the object. VersionId *string `location:"querystring" locationName:"versionId" type:"string"` - metadataHeadObjectInput `json:"-" xml:"-"` -} - -type metadataHeadObjectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4127,11 +3787,7 @@ type HeadObjectOutput struct { // the value of this header in the object metadata. WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` - metadataHeadObjectOutput `json:"-" xml:"-"` -} - -type metadataHeadObjectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4151,11 +3807,7 @@ type IndexDocument struct { // The suffix must not be empty and must not include a slash character. Suffix *string `type:"string" required:"true"` - metadataIndexDocument `json:"-" xml:"-"` -} - -type metadataIndexDocument struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4176,11 +3828,7 @@ type Initiator struct { // the principal is an IAM User, it provides a user ARN value. ID *string `type:"string"` - metadataInitiator `json:"-" xml:"-"` -} - -type metadataInitiator struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4199,11 +3847,7 @@ type KeyFilter struct { // filter rule. FilterRules []*FilterRule `locationName:"FilterRule" type:"list" flattened:"true"` - metadataKeyFilter `json:"-" xml:"-"` -} - -type metadataKeyFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4233,11 +3877,7 @@ type LambdaFunctionConfiguration struct { // of the specified type. LambdaFunctionArn *string `locationName:"CloudFunction" type:"string" required:"true"` - metadataLambdaFunctionConfiguration `json:"-" xml:"-"` -} - -type metadataLambdaFunctionConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4253,11 +3893,7 @@ func (s LambdaFunctionConfiguration) GoString() string { type LifecycleConfiguration struct { Rules []*Rule `locationName:"Rule" type:"list" flattened:"true" required:"true"` - metadataLifecycleConfiguration `json:"-" xml:"-"` -} - -type metadataLifecycleConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4279,11 +3915,7 @@ type LifecycleExpiration struct { // The value must be a non-zero positive integer. Days *int64 `type:"integer"` - metadataLifecycleExpiration `json:"-" xml:"-"` -} - -type metadataLifecycleExpiration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4320,11 +3952,7 @@ type LifecycleRule struct { Transitions []*Transition `locationName:"Transition" type:"list" flattened:"true"` - metadataLifecycleRule `json:"-" xml:"-"` -} - -type metadataLifecycleRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4338,11 +3966,7 @@ func (s LifecycleRule) GoString() string { } type ListBucketsInput struct { - metadataListBucketsInput `json:"-" xml:"-"` -} - -type metadataListBucketsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4360,11 +3984,7 @@ type ListBucketsOutput struct { Owner *Owner `type:"structure"` - metadataListBucketsOutput `json:"-" xml:"-"` -} - -type metadataListBucketsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4409,11 +4029,7 @@ type ListMultipartUploadsInput struct { // is ignored. UploadIdMarker *string `location:"querystring" locationName:"upload-id-marker" type:"string"` - metadataListMultipartUploadsInput `json:"-" xml:"-"` -} - -type metadataListMultipartUploadsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4467,11 +4083,7 @@ type ListMultipartUploadsOutput struct { Uploads []*MultipartUpload `locationName:"Upload" type:"list" flattened:"true"` - metadataListMultipartUploadsOutput `json:"-" xml:"-"` -} - -type metadataListMultipartUploadsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4511,11 +4123,7 @@ type ListObjectVersionsInput struct { // Specifies the object version you want to start listing from. VersionIdMarker *string `location:"querystring" locationName:"version-id-marker" type:"string"` - metadataListObjectVersionsInput `json:"-" xml:"-"` -} - -type metadataListObjectVersionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4564,11 +4172,7 @@ type ListObjectVersionsOutput struct { Versions []*ObjectVersion `locationName:"Version" type:"list" flattened:"true"` - metadataListObjectVersionsOutput `json:"-" xml:"-"` -} - -type metadataListObjectVersionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4605,11 +4209,7 @@ type ListObjectsInput struct { // Limits the response to keys that begin with the specified prefix. Prefix *string `location:"querystring" locationName:"prefix" type:"string"` - metadataListObjectsInput `json:"-" xml:"-"` -} - -type metadataListObjectsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4653,11 +4253,7 @@ type ListObjectsOutput struct { Prefix *string `type:"string"` - metadataListObjectsOutput `json:"-" xml:"-"` -} - -type metadataListObjectsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4691,11 +4287,7 @@ type ListPartsInput struct { // Upload ID identifying the multipart upload whose parts are being listed. UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` - metadataListPartsInput `json:"-" xml:"-"` -} - -type metadataListPartsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4746,11 +4338,7 @@ type ListPartsOutput struct { // Upload ID identifying the multipart upload whose parts are being listed. UploadId *string `type:"string"` - metadataListPartsOutput `json:"-" xml:"-"` -} - -type metadataListPartsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4778,11 +4366,7 @@ type LoggingEnabled struct { // be stored under. TargetPrefix *string `type:"string"` - metadataLoggingEnabled `json:"-" xml:"-"` -} - -type metadataLoggingEnabled struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4813,11 +4397,7 @@ type MultipartUpload struct { // Upload ID that identifies the multipart upload. UploadId *string `type:"string"` - metadataMultipartUpload `json:"-" xml:"-"` -} - -type metadataMultipartUpload struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4843,11 +4423,7 @@ type NoncurrentVersionExpiration struct { // Service Developer Guide. NoncurrentDays *int64 `type:"integer"` - metadataNoncurrentVersionExpiration `json:"-" xml:"-"` -} - -type metadataNoncurrentVersionExpiration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4876,11 +4452,7 @@ type NoncurrentVersionTransition struct { // The class of storage used to store the object. StorageClass *string `type:"string" enum:"TransitionStorageClass"` - metadataNoncurrentVersionTransition `json:"-" xml:"-"` -} - -type metadataNoncurrentVersionTransition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4902,11 +4474,7 @@ type NotificationConfiguration struct { TopicConfigurations []*TopicConfiguration `locationName:"TopicConfiguration" type:"list" flattened:"true"` - metadataNotificationConfiguration `json:"-" xml:"-"` -} - -type metadataNotificationConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4926,11 +4494,7 @@ type NotificationConfigurationDeprecated struct { TopicConfiguration *TopicConfigurationDeprecated `type:"structure"` - metadataNotificationConfigurationDeprecated `json:"-" xml:"-"` -} - -type metadataNotificationConfigurationDeprecated struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4950,11 +4514,7 @@ type NotificationConfigurationFilter struct { // Container for object key name prefix and suffix filtering rules. Key *KeyFilter `locationName:"S3Key" type:"structure"` - metadataNotificationConfigurationFilter `json:"-" xml:"-"` -} - -type metadataNotificationConfigurationFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4981,11 +4541,7 @@ type Object struct { // The class of storage used to store the object. StorageClass *string `type:"string" enum:"ObjectStorageClass"` - metadataObject `json:"-" xml:"-"` -} - -type metadataObject struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5005,11 +4561,7 @@ type ObjectIdentifier struct { // VersionId for the specific version of the object to delete. VersionId *string `type:"string"` - metadataObjectIdentifier `json:"-" xml:"-"` -} - -type metadataObjectIdentifier struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5046,11 +4598,7 @@ type ObjectVersion struct { // Version ID of an object. VersionId *string `type:"string"` - metadataObjectVersion `json:"-" xml:"-"` -} - -type metadataObjectVersion struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5068,11 +4616,7 @@ type Owner struct { ID *string `type:"string"` - metadataOwner `json:"-" xml:"-"` -} - -type metadataOwner struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5099,11 +4643,7 @@ type Part struct { // Size of the uploaded part data. Size *int64 `type:"integer"` - metadataPart `json:"-" xml:"-"` -} - -type metadataPart struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5140,11 +4680,7 @@ type PutBucketAclInput struct { // Allows grantee to write the ACL for the applicable bucket. GrantWriteACP *string `location:"header" locationName:"x-amz-grant-write-acp" type:"string"` - metadataPutBucketAclInput `json:"-" xml:"-"` -} - -type metadataPutBucketAclInput struct { - SDKShapeTraits bool `type:"structure" payload:"AccessControlPolicy"` + _ struct{} `type:"structure" payload:"AccessControlPolicy"` } // String returns the string representation @@ -5158,11 +4694,7 @@ func (s PutBucketAclInput) GoString() string { } type PutBucketAclOutput struct { - metadataPutBucketAclOutput `json:"-" xml:"-"` -} - -type metadataPutBucketAclOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5180,11 +4712,7 @@ type PutBucketCorsInput struct { CORSConfiguration *CORSConfiguration `locationName:"CORSConfiguration" type:"structure" required:"true"` - metadataPutBucketCorsInput `json:"-" xml:"-"` -} - -type metadataPutBucketCorsInput struct { - SDKShapeTraits bool `type:"structure" payload:"CORSConfiguration"` + _ struct{} `type:"structure" payload:"CORSConfiguration"` } // String returns the string representation @@ -5198,11 +4726,7 @@ func (s PutBucketCorsInput) GoString() string { } type PutBucketCorsOutput struct { - metadataPutBucketCorsOutput `json:"-" xml:"-"` -} - -type metadataPutBucketCorsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5220,11 +4744,7 @@ type PutBucketLifecycleConfigurationInput struct { LifecycleConfiguration *BucketLifecycleConfiguration `locationName:"LifecycleConfiguration" type:"structure"` - metadataPutBucketLifecycleConfigurationInput `json:"-" xml:"-"` -} - -type metadataPutBucketLifecycleConfigurationInput struct { - SDKShapeTraits bool `type:"structure" payload:"LifecycleConfiguration"` + _ struct{} `type:"structure" payload:"LifecycleConfiguration"` } // String returns the string representation @@ -5238,11 +4758,7 @@ func (s PutBucketLifecycleConfigurationInput) GoString() string { } type PutBucketLifecycleConfigurationOutput struct { - metadataPutBucketLifecycleConfigurationOutput `json:"-" xml:"-"` -} - -type metadataPutBucketLifecycleConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5260,11 +4776,7 @@ type PutBucketLifecycleInput struct { LifecycleConfiguration *LifecycleConfiguration `locationName:"LifecycleConfiguration" type:"structure"` - metadataPutBucketLifecycleInput `json:"-" xml:"-"` -} - -type metadataPutBucketLifecycleInput struct { - SDKShapeTraits bool `type:"structure" payload:"LifecycleConfiguration"` + _ struct{} `type:"structure" payload:"LifecycleConfiguration"` } // String returns the string representation @@ -5278,11 +4790,7 @@ func (s PutBucketLifecycleInput) GoString() string { } type PutBucketLifecycleOutput struct { - metadataPutBucketLifecycleOutput `json:"-" xml:"-"` -} - -type metadataPutBucketLifecycleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5300,11 +4808,7 @@ type PutBucketLoggingInput struct { BucketLoggingStatus *BucketLoggingStatus `locationName:"BucketLoggingStatus" type:"structure" required:"true"` - metadataPutBucketLoggingInput `json:"-" xml:"-"` -} - -type metadataPutBucketLoggingInput struct { - SDKShapeTraits bool `type:"structure" payload:"BucketLoggingStatus"` + _ struct{} `type:"structure" payload:"BucketLoggingStatus"` } // String returns the string representation @@ -5318,11 +4822,7 @@ func (s PutBucketLoggingInput) GoString() string { } type PutBucketLoggingOutput struct { - metadataPutBucketLoggingOutput `json:"-" xml:"-"` -} - -type metadataPutBucketLoggingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5342,11 +4842,7 @@ type PutBucketNotificationConfigurationInput struct { // this element is empty, notifications are turned off on the bucket. NotificationConfiguration *NotificationConfiguration `locationName:"NotificationConfiguration" type:"structure" required:"true"` - metadataPutBucketNotificationConfigurationInput `json:"-" xml:"-"` -} - -type metadataPutBucketNotificationConfigurationInput struct { - SDKShapeTraits bool `type:"structure" payload:"NotificationConfiguration"` + _ struct{} `type:"structure" payload:"NotificationConfiguration"` } // String returns the string representation @@ -5360,11 +4856,7 @@ func (s PutBucketNotificationConfigurationInput) GoString() string { } type PutBucketNotificationConfigurationOutput struct { - metadataPutBucketNotificationConfigurationOutput `json:"-" xml:"-"` -} - -type metadataPutBucketNotificationConfigurationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5382,11 +4874,7 @@ type PutBucketNotificationInput struct { NotificationConfiguration *NotificationConfigurationDeprecated `locationName:"NotificationConfiguration" type:"structure" required:"true"` - metadataPutBucketNotificationInput `json:"-" xml:"-"` -} - -type metadataPutBucketNotificationInput struct { - SDKShapeTraits bool `type:"structure" payload:"NotificationConfiguration"` + _ struct{} `type:"structure" payload:"NotificationConfiguration"` } // String returns the string representation @@ -5400,11 +4888,7 @@ func (s PutBucketNotificationInput) GoString() string { } type PutBucketNotificationOutput struct { - metadataPutBucketNotificationOutput `json:"-" xml:"-"` -} - -type metadataPutBucketNotificationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5423,11 +4907,7 @@ type PutBucketPolicyInput struct { // The bucket policy as a JSON document. Policy *string `type:"string" required:"true"` - metadataPutBucketPolicyInput `json:"-" xml:"-"` -} - -type metadataPutBucketPolicyInput struct { - SDKShapeTraits bool `type:"structure" payload:"Policy"` + _ struct{} `type:"structure" payload:"Policy"` } // String returns the string representation @@ -5441,11 +4921,7 @@ func (s PutBucketPolicyInput) GoString() string { } type PutBucketPolicyOutput struct { - metadataPutBucketPolicyOutput `json:"-" xml:"-"` -} - -type metadataPutBucketPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5465,11 +4941,7 @@ type PutBucketReplicationInput struct { // replication configuration size can be up to 2 MB. ReplicationConfiguration *ReplicationConfiguration `locationName:"ReplicationConfiguration" type:"structure" required:"true"` - metadataPutBucketReplicationInput `json:"-" xml:"-"` -} - -type metadataPutBucketReplicationInput struct { - SDKShapeTraits bool `type:"structure" payload:"ReplicationConfiguration"` + _ struct{} `type:"structure" payload:"ReplicationConfiguration"` } // String returns the string representation @@ -5483,11 +4955,7 @@ func (s PutBucketReplicationInput) GoString() string { } type PutBucketReplicationOutput struct { - metadataPutBucketReplicationOutput `json:"-" xml:"-"` -} - -type metadataPutBucketReplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5505,11 +4973,7 @@ type PutBucketRequestPaymentInput struct { RequestPaymentConfiguration *RequestPaymentConfiguration `locationName:"RequestPaymentConfiguration" type:"structure" required:"true"` - metadataPutBucketRequestPaymentInput `json:"-" xml:"-"` -} - -type metadataPutBucketRequestPaymentInput struct { - SDKShapeTraits bool `type:"structure" payload:"RequestPaymentConfiguration"` + _ struct{} `type:"structure" payload:"RequestPaymentConfiguration"` } // String returns the string representation @@ -5523,11 +4987,7 @@ func (s PutBucketRequestPaymentInput) GoString() string { } type PutBucketRequestPaymentOutput struct { - metadataPutBucketRequestPaymentOutput `json:"-" xml:"-"` -} - -type metadataPutBucketRequestPaymentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5545,11 +5005,7 @@ type PutBucketTaggingInput struct { Tagging *Tagging `locationName:"Tagging" type:"structure" required:"true"` - metadataPutBucketTaggingInput `json:"-" xml:"-"` -} - -type metadataPutBucketTaggingInput struct { - SDKShapeTraits bool `type:"structure" payload:"Tagging"` + _ struct{} `type:"structure" payload:"Tagging"` } // String returns the string representation @@ -5563,11 +5019,7 @@ func (s PutBucketTaggingInput) GoString() string { } type PutBucketTaggingOutput struct { - metadataPutBucketTaggingOutput `json:"-" xml:"-"` -} - -type metadataPutBucketTaggingOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5589,11 +5041,7 @@ type PutBucketVersioningInput struct { VersioningConfiguration *VersioningConfiguration `locationName:"VersioningConfiguration" type:"structure" required:"true"` - metadataPutBucketVersioningInput `json:"-" xml:"-"` -} - -type metadataPutBucketVersioningInput struct { - SDKShapeTraits bool `type:"structure" payload:"VersioningConfiguration"` + _ struct{} `type:"structure" payload:"VersioningConfiguration"` } // String returns the string representation @@ -5607,11 +5055,7 @@ func (s PutBucketVersioningInput) GoString() string { } type PutBucketVersioningOutput struct { - metadataPutBucketVersioningOutput `json:"-" xml:"-"` -} - -type metadataPutBucketVersioningOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5629,11 +5073,7 @@ type PutBucketWebsiteInput struct { WebsiteConfiguration *WebsiteConfiguration `locationName:"WebsiteConfiguration" type:"structure" required:"true"` - metadataPutBucketWebsiteInput `json:"-" xml:"-"` -} - -type metadataPutBucketWebsiteInput struct { - SDKShapeTraits bool `type:"structure" payload:"WebsiteConfiguration"` + _ struct{} `type:"structure" payload:"WebsiteConfiguration"` } // String returns the string representation @@ -5647,11 +5087,7 @@ func (s PutBucketWebsiteInput) GoString() string { } type PutBucketWebsiteOutput struct { - metadataPutBucketWebsiteOutput `json:"-" xml:"-"` -} - -type metadataPutBucketWebsiteOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5696,11 +5132,7 @@ type PutObjectAclInput struct { // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - metadataPutObjectAclInput `json:"-" xml:"-"` -} - -type metadataPutObjectAclInput struct { - SDKShapeTraits bool `type:"structure" payload:"AccessControlPolicy"` + _ struct{} `type:"structure" payload:"AccessControlPolicy"` } // String returns the string representation @@ -5718,11 +5150,7 @@ type PutObjectAclOutput struct { // request. RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - metadataPutObjectAclOutput `json:"-" xml:"-"` -} - -type metadataPutObjectAclOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5824,11 +5252,7 @@ type PutObjectInput struct { // the value of this header in the object metadata. WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` - metadataPutObjectInput `json:"-" xml:"-"` -} - -type metadataPutObjectInput struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } // String returns the string representation @@ -5874,11 +5298,7 @@ type PutObjectOutput struct { // Version of the object. VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` - metadataPutObjectOutput `json:"-" xml:"-"` -} - -type metadataPutObjectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5909,11 +5329,7 @@ type QueueConfiguration struct { // events of specified type. QueueArn *string `locationName:"Queue" type:"string" required:"true"` - metadataQueueConfiguration `json:"-" xml:"-"` -} - -type metadataQueueConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5938,11 +5354,7 @@ type QueueConfigurationDeprecated struct { Queue *string `type:"string"` - metadataQueueConfigurationDeprecated `json:"-" xml:"-"` -} - -type metadataQueueConfigurationDeprecated struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5980,11 +5392,7 @@ type Redirect struct { // be present only if ReplaceKeyPrefixWith is not provided. ReplaceKeyWith *string `type:"string"` - metadataRedirect `json:"-" xml:"-"` -} - -type metadataRedirect struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6005,11 +5413,7 @@ type RedirectAllRequestsTo struct { // protocol that is used in the original request. Protocol *string `type:"string" enum:"Protocol"` - metadataRedirectAllRequestsTo `json:"-" xml:"-"` -} - -type metadataRedirectAllRequestsTo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6033,11 +5437,7 @@ type ReplicationConfiguration struct { // configuration must have at least one rule and can contain up to 1,000 rules. Rules []*ReplicationRule `locationName:"Rule" type:"list" flattened:"true" required:"true"` - metadataReplicationConfiguration `json:"-" xml:"-"` -} - -type metadataReplicationConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6064,11 +5464,7 @@ type ReplicationRule struct { // The rule is ignored if status is not Enabled. Status *string `type:"string" required:"true" enum:"ReplicationRuleStatus"` - metadataReplicationRule `json:"-" xml:"-"` -} - -type metadataReplicationRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6085,11 +5481,7 @@ type RequestPaymentConfiguration struct { // Specifies who pays for the download and request fees. Payer *string `type:"string" required:"true" enum:"Payer"` - metadataRequestPaymentConfiguration `json:"-" xml:"-"` -} - -type metadataRequestPaymentConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6117,11 +5509,7 @@ type RestoreObjectInput struct { VersionId *string `location:"querystring" locationName:"versionId" type:"string"` - metadataRestoreObjectInput `json:"-" xml:"-"` -} - -type metadataRestoreObjectInput struct { - SDKShapeTraits bool `type:"structure" payload:"RestoreRequest"` + _ struct{} `type:"structure" payload:"RestoreRequest"` } // String returns the string representation @@ -6139,11 +5527,7 @@ type RestoreObjectOutput struct { // request. RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - metadataRestoreObjectOutput `json:"-" xml:"-"` -} - -type metadataRestoreObjectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6160,11 +5544,7 @@ type RestoreRequest struct { // Lifetime of the active copy in days Days *int64 `type:"integer" required:"true"` - metadataRestoreRequest `json:"-" xml:"-"` -} - -type metadataRestoreRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6189,11 +5569,7 @@ type RoutingRule struct { // you can can specify a different error code to return. Redirect *Redirect `type:"structure" required:"true"` - metadataRoutingRule `json:"-" xml:"-"` -} - -type metadataRoutingRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6235,11 +5611,7 @@ type Rule struct { Transition *Transition `type:"structure"` - metadataRule `json:"-" xml:"-"` -} - -type metadataRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6259,11 +5631,7 @@ type Tag struct { // Value of the tag. Value *string `type:"string" required:"true"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6279,11 +5647,7 @@ func (s Tag) GoString() string { type Tagging struct { TagSet []*Tag `locationNameList:"Tag" type:"list" required:"true"` - metadataTagging `json:"-" xml:"-"` -} - -type metadataTagging struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6302,11 +5666,7 @@ type TargetGrant struct { // Logging permissions assigned to the Grantee for the bucket. Permission *string `type:"string" enum:"BucketLogsPermission"` - metadataTargetGrant `json:"-" xml:"-"` -} - -type metadataTargetGrant struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6337,11 +5697,7 @@ type TopicConfiguration struct { // events of specified type. TopicArn *string `locationName:"Topic" type:"string" required:"true"` - metadataTopicConfiguration `json:"-" xml:"-"` -} - -type metadataTopicConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6368,11 +5724,7 @@ type TopicConfigurationDeprecated struct { // specified events for the bucket. Topic *string `type:"string"` - metadataTopicConfigurationDeprecated `json:"-" xml:"-"` -} - -type metadataTopicConfigurationDeprecated struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6397,11 +5749,7 @@ type Transition struct { // The class of storage used to store the object. StorageClass *string `type:"string" enum:"TransitionStorageClass"` - metadataTransition `json:"-" xml:"-"` -} - -type metadataTransition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6485,11 +5833,7 @@ type UploadPartCopyInput struct { // Upload ID identifying the multipart upload whose part is being copied. UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` - metadataUploadPartCopyInput `json:"-" xml:"-"` -} - -type metadataUploadPartCopyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6531,11 +5875,7 @@ type UploadPartCopyOutput struct { // (e.g., AES256, aws:kms). ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - metadataUploadPartCopyOutput `json:"-" xml:"-"` -} - -type metadataUploadPartCopyOutput struct { - SDKShapeTraits bool `type:"structure" payload:"CopyPartResult"` + _ struct{} `type:"structure" payload:"CopyPartResult"` } // String returns the string representation @@ -6588,11 +5928,7 @@ type UploadPartInput struct { // Upload ID identifying the multipart upload whose part is being uploaded. UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` - metadataUploadPartInput `json:"-" xml:"-"` -} - -type metadataUploadPartInput struct { - SDKShapeTraits bool `type:"structure" payload:"Body"` + _ struct{} `type:"structure" payload:"Body"` } // String returns the string representation @@ -6631,11 +5967,7 @@ type UploadPartOutput struct { // (e.g., AES256, aws:kms). ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - metadataUploadPartOutput `json:"-" xml:"-"` -} - -type metadataUploadPartOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6657,11 +5989,7 @@ type VersioningConfiguration struct { // The versioning state of the bucket. Status *string `type:"string" enum:"BucketVersioningStatus"` - metadataVersioningConfiguration `json:"-" xml:"-"` -} - -type metadataVersioningConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6683,11 +6011,7 @@ type WebsiteConfiguration struct { RoutingRules []*RoutingRule `locationNameList:"RoutingRule" type:"list"` - metadataWebsiteConfiguration `json:"-" xml:"-"` -} - -type metadataWebsiteConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/ses/api.go b/service/ses/api.go index 15f9dd2688e..cffea19dace 100644 --- a/service/ses/api.go +++ b/service/ses/api.go @@ -1385,11 +1385,7 @@ type AddHeaderAction struct { // ("\r" or "\n"). HeaderValue *string `type:"string" required:"true"` - metadataAddHeaderAction `json:"-" xml:"-"` -} - -type metadataAddHeaderAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1415,11 +1411,7 @@ type Body struct { // clients, or clients on high-latency networks (such as mobile devices). Text *Content `type:"structure"` - metadataBody `json:"-" xml:"-"` -} - -type metadataBody struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1458,11 +1450,7 @@ type BounceAction struct { // Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html). TopicArn *string `type:"string"` - metadataBounceAction `json:"-" xml:"-"` -} - -type metadataBounceAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1498,11 +1486,7 @@ type BouncedRecipientInfo struct { // BounceType. RecipientDsnFields *RecipientDsnFields `type:"structure"` - metadataBouncedRecipientInfo `json:"-" xml:"-"` -} - -type metadataBouncedRecipientInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1526,11 +1510,7 @@ type CloneReceiptRuleSetInput struct { // 64 characters. RuleSetName *string `type:"string" required:"true"` - metadataCloneReceiptRuleSetInput `json:"-" xml:"-"` -} - -type metadataCloneReceiptRuleSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1544,11 +1524,7 @@ func (s CloneReceiptRuleSetInput) GoString() string { } type CloneReceiptRuleSetOutput struct { - metadataCloneReceiptRuleSetOutput `json:"-" xml:"-"` -} - -type metadataCloneReceiptRuleSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1573,11 +1549,7 @@ type Content struct { // The textual data of the content. Data *string `type:"string" required:"true"` - metadataContent `json:"-" xml:"-"` -} - -type metadataContent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1595,11 +1567,7 @@ type CreateReceiptFilterInput struct { // of a name, an IP address range, and whether to allow or block mail from it. Filter *ReceiptFilter `type:"structure" required:"true"` - metadataCreateReceiptFilterInput `json:"-" xml:"-"` -} - -type metadataCreateReceiptFilterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1613,11 +1581,7 @@ func (s CreateReceiptFilterInput) GoString() string { } type CreateReceiptFilterOutput struct { - metadataCreateReceiptFilterOutput `json:"-" xml:"-"` -} - -type metadataCreateReceiptFilterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1643,11 +1607,7 @@ type CreateReceiptRuleInput struct { // The name of the rule set to which to add the rule. RuleSetName *string `type:"string" required:"true"` - metadataCreateReceiptRuleInput `json:"-" xml:"-"` -} - -type metadataCreateReceiptRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1661,11 +1621,7 @@ func (s CreateReceiptRuleInput) GoString() string { } type CreateReceiptRuleOutput struct { - metadataCreateReceiptRuleOutput `json:"-" xml:"-"` -} - -type metadataCreateReceiptRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1686,11 +1642,7 @@ type CreateReceiptRuleSetInput struct { // 64 characters. RuleSetName *string `type:"string" required:"true"` - metadataCreateReceiptRuleSetInput `json:"-" xml:"-"` -} - -type metadataCreateReceiptRuleSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1704,11 +1656,7 @@ func (s CreateReceiptRuleSetInput) GoString() string { } type CreateReceiptRuleSetOutput struct { - metadataCreateReceiptRuleSetOutput `json:"-" xml:"-"` -} - -type metadataCreateReceiptRuleSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1727,11 +1675,7 @@ type DeleteIdentityInput struct { // The identity to be removed from the list of identities for the AWS Account. Identity *string `type:"string" required:"true"` - metadataDeleteIdentityInput `json:"-" xml:"-"` -} - -type metadataDeleteIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1747,11 +1691,7 @@ func (s DeleteIdentityInput) GoString() string { // An empty element. Receiving this element indicates that the request completed // successfully. type DeleteIdentityOutput struct { - metadataDeleteIdentityOutput `json:"-" xml:"-"` -} - -type metadataDeleteIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1779,11 +1719,7 @@ type DeleteIdentityPolicyInput struct { // The name of the policy to be deleted. PolicyName *string `min:"1" type:"string" required:"true"` - metadataDeleteIdentityPolicyInput `json:"-" xml:"-"` -} - -type metadataDeleteIdentityPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1799,11 +1735,7 @@ func (s DeleteIdentityPolicyInput) GoString() string { // An empty element. Receiving this element indicates that the request completed // successfully. type DeleteIdentityPolicyOutput struct { - metadataDeleteIdentityPolicyOutput `json:"-" xml:"-"` -} - -type metadataDeleteIdentityPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1820,11 +1752,7 @@ type DeleteReceiptFilterInput struct { // The name of the IP address filter to delete. FilterName *string `type:"string" required:"true"` - metadataDeleteReceiptFilterInput `json:"-" xml:"-"` -} - -type metadataDeleteReceiptFilterInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1838,11 +1766,7 @@ func (s DeleteReceiptFilterInput) GoString() string { } type DeleteReceiptFilterOutput struct { - metadataDeleteReceiptFilterOutput `json:"-" xml:"-"` -} - -type metadataDeleteReceiptFilterOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1862,11 +1786,7 @@ type DeleteReceiptRuleInput struct { // The name of the receipt rule set that contains the receipt rule to delete. RuleSetName *string `type:"string" required:"true"` - metadataDeleteReceiptRuleInput `json:"-" xml:"-"` -} - -type metadataDeleteReceiptRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1880,11 +1800,7 @@ func (s DeleteReceiptRuleInput) GoString() string { } type DeleteReceiptRuleOutput struct { - metadataDeleteReceiptRuleOutput `json:"-" xml:"-"` -} - -type metadataDeleteReceiptRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1901,11 +1817,7 @@ type DeleteReceiptRuleSetInput struct { // The name of the receipt rule set to delete. RuleSetName *string `type:"string" required:"true"` - metadataDeleteReceiptRuleSetInput `json:"-" xml:"-"` -} - -type metadataDeleteReceiptRuleSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1919,11 +1831,7 @@ func (s DeleteReceiptRuleSetInput) GoString() string { } type DeleteReceiptRuleSetOutput struct { - metadataDeleteReceiptRuleSetOutput `json:"-" xml:"-"` -} - -type metadataDeleteReceiptRuleSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1942,11 +1850,7 @@ type DeleteVerifiedEmailAddressInput struct { // An email address to be removed from the list of verified addresses. EmailAddress *string `type:"string" required:"true"` - metadataDeleteVerifiedEmailAddressInput `json:"-" xml:"-"` -} - -type metadataDeleteVerifiedEmailAddressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1960,11 +1864,7 @@ func (s DeleteVerifiedEmailAddressInput) GoString() string { } type DeleteVerifiedEmailAddressOutput struct { - metadataDeleteVerifiedEmailAddressOutput `json:"-" xml:"-"` -} - -type metadataDeleteVerifiedEmailAddressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1978,11 +1878,7 @@ func (s DeleteVerifiedEmailAddressOutput) GoString() string { } type DescribeActiveReceiptRuleSetInput struct { - metadataDescribeActiveReceiptRuleSetInput `json:"-" xml:"-"` -} - -type metadataDescribeActiveReceiptRuleSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2003,11 +1899,7 @@ type DescribeActiveReceiptRuleSetOutput struct { // The receipt rules that belong to the active rule set. Rules []*ReceiptRule `type:"list"` - metadataDescribeActiveReceiptRuleSetOutput `json:"-" xml:"-"` -} - -type metadataDescribeActiveReceiptRuleSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2027,11 +1919,7 @@ type DescribeReceiptRuleInput struct { // The name of the receipt rule set to which the receipt rule belongs. RuleSetName *string `type:"string" required:"true"` - metadataDescribeReceiptRuleInput `json:"-" xml:"-"` -} - -type metadataDescribeReceiptRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2050,11 +1938,7 @@ type DescribeReceiptRuleOutput struct { // (TLS) policy. Rule *ReceiptRule `type:"structure"` - metadataDescribeReceiptRuleOutput `json:"-" xml:"-"` -} - -type metadataDescribeReceiptRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2071,11 +1955,7 @@ type DescribeReceiptRuleSetInput struct { // The name of the receipt rule set to describe. RuleSetName *string `type:"string" required:"true"` - metadataDescribeReceiptRuleSetInput `json:"-" xml:"-"` -} - -type metadataDescribeReceiptRuleSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2096,11 +1976,7 @@ type DescribeReceiptRuleSetOutput struct { // A list of the receipt rules that belong to the specified receipt rule set. Rules []*ReceiptRule `type:"list"` - metadataDescribeReceiptRuleSetOutput `json:"-" xml:"-"` -} - -type metadataDescribeReceiptRuleSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2130,11 +2006,7 @@ type Destination struct { // The To: field(s) of the message. ToAddresses []*string `type:"list"` - metadataDestination `json:"-" xml:"-"` -} - -type metadataDestination struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2161,11 +2033,7 @@ type ExtensionField struct { // not contain newline characters ("\r" or "\n"). Value *string `type:"string" required:"true"` - metadataExtensionField `json:"-" xml:"-"` -} - -type metadataExtensionField struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2189,11 +2057,7 @@ type GetIdentityDkimAttributesInput struct { // both. Identities []*string `type:"list" required:"true"` - metadataGetIdentityDkimAttributesInput `json:"-" xml:"-"` -} - -type metadataGetIdentityDkimAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2211,11 +2075,7 @@ type GetIdentityDkimAttributesOutput struct { // The DKIM attributes for an email address or a domain. DkimAttributes map[string]*IdentityDkimAttributes `type:"map" required:"true"` - metadataGetIdentityDkimAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetIdentityDkimAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2234,11 +2094,7 @@ type GetIdentityNotificationAttributesInput struct { // example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com. Identities []*string `type:"list" required:"true"` - metadataGetIdentityNotificationAttributesInput `json:"-" xml:"-"` -} - -type metadataGetIdentityNotificationAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2259,11 +2115,7 @@ type GetIdentityNotificationAttributesOutput struct { // A map of Identity to IdentityNotificationAttributes. NotificationAttributes map[string]*IdentityNotificationAttributes `type:"map" required:"true"` - metadataGetIdentityNotificationAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetIdentityNotificationAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2291,11 +2143,7 @@ type GetIdentityPoliciesInput struct { // are attached to the identity, you can use ListIdentityPolicies. PolicyNames []*string `type:"list" required:"true"` - metadataGetIdentityPoliciesInput `json:"-" xml:"-"` -} - -type metadataGetIdentityPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2314,11 +2162,7 @@ type GetIdentityPoliciesOutput struct { // A map of policy names to policies. Policies map[string]*string `type:"map" required:"true"` - metadataGetIdentityPoliciesOutput `json:"-" xml:"-"` -} - -type metadataGetIdentityPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2337,11 +2181,7 @@ type GetIdentityVerificationAttributesInput struct { // A list of identities. Identities []*string `type:"list" required:"true"` - metadataGetIdentityVerificationAttributesInput `json:"-" xml:"-"` -} - -type metadataGetIdentityVerificationAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2359,11 +2199,7 @@ type GetIdentityVerificationAttributesOutput struct { // A map of Identities to IdentityVerificationAttributes objects. VerificationAttributes map[string]*IdentityVerificationAttributes `type:"map" required:"true"` - metadataGetIdentityVerificationAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetIdentityVerificationAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2377,11 +2213,7 @@ func (s GetIdentityVerificationAttributesOutput) GoString() string { } type GetSendQuotaInput struct { - metadataGetSendQuotaInput `json:"-" xml:"-"` -} - -type metadataGetSendQuotaInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2411,11 +2243,7 @@ type GetSendQuotaOutput struct { // The number of emails sent during the previous 24 hours. SentLast24Hours *float64 `type:"double"` - metadataGetSendQuotaOutput `json:"-" xml:"-"` -} - -type metadataGetSendQuotaOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2429,11 +2257,7 @@ func (s GetSendQuotaOutput) GoString() string { } type GetSendStatisticsInput struct { - metadataGetSendStatisticsInput `json:"-" xml:"-"` -} - -type metadataGetSendStatisticsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2453,11 +2277,7 @@ type GetSendStatisticsOutput struct { // A list of data points, each of which represents 15 minutes of activity. SendDataPoints []*SendDataPoint `type:"list"` - metadataGetSendStatisticsOutput `json:"-" xml:"-"` -} - -type metadataGetSendStatisticsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2492,11 +2312,7 @@ type IdentityDkimAttributes struct { // identities, not email address identities.) DkimVerificationStatus *string `type:"string" required:"true" enum:"VerificationStatus"` - metadataIdentityDkimAttributes `json:"-" xml:"-"` -} - -type metadataIdentityDkimAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2532,11 +2348,7 @@ type IdentityNotificationAttributes struct { // will be published only to the specified bounce and complaint Amazon SNS topics. ForwardingEnabled *bool `type:"boolean" required:"true"` - metadataIdentityNotificationAttributes `json:"-" xml:"-"` -} - -type metadataIdentityNotificationAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2558,11 +2370,7 @@ type IdentityVerificationAttributes struct { // The verification token for a domain identity. Null for email address identities. VerificationToken *string `type:"string"` - metadataIdentityVerificationAttributes `json:"-" xml:"-"` -} - -type metadataIdentityVerificationAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2611,11 +2419,7 @@ type LambdaAction struct { // Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html). TopicArn *string `type:"string"` - metadataLambdaAction `json:"-" xml:"-"` -} - -type metadataLambdaAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2641,11 +2445,7 @@ type ListIdentitiesInput struct { // The token to use for pagination. NextToken *string `type:"string"` - metadataListIdentitiesInput `json:"-" xml:"-"` -} - -type metadataListIdentitiesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2666,11 +2466,7 @@ type ListIdentitiesOutput struct { // The token used for pagination. NextToken *string `type:"string"` - metadataListIdentitiesOutput `json:"-" xml:"-"` -} - -type metadataListIdentitiesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2693,11 +2489,7 @@ type ListIdentityPoliciesInput struct { // To successfully call this API, you must own the identity. Identity *string `type:"string" required:"true"` - metadataListIdentityPoliciesInput `json:"-" xml:"-"` -} - -type metadataListIdentityPoliciesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2716,11 +2508,7 @@ type ListIdentityPoliciesOutput struct { // A list of names of policies that apply to the specified identity. PolicyNames []*string `type:"list" required:"true"` - metadataListIdentityPoliciesOutput `json:"-" xml:"-"` -} - -type metadataListIdentityPoliciesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2734,11 +2522,7 @@ func (s ListIdentityPoliciesOutput) GoString() string { } type ListReceiptFiltersInput struct { - metadataListReceiptFiltersInput `json:"-" xml:"-"` -} - -type metadataListReceiptFiltersInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2756,11 +2540,7 @@ type ListReceiptFiltersOutput struct { // an IP address range, and whether to allow or block mail from it. Filters []*ReceiptFilter `type:"list"` - metadataListReceiptFiltersOutput `json:"-" xml:"-"` -} - -type metadataListReceiptFiltersOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2778,11 +2558,7 @@ type ListReceiptRuleSetsInput struct { // the position in the receipt rule set list. NextToken *string `type:"string"` - metadataListReceiptRuleSetsInput `json:"-" xml:"-"` -} - -type metadataListReceiptRuleSetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2805,11 +2581,7 @@ type ListReceiptRuleSetsOutput struct { // of the rule set name and the timestamp of when the rule set was created. RuleSets []*ReceiptRuleSetMetadata `type:"list"` - metadataListReceiptRuleSetsOutput `json:"-" xml:"-"` -} - -type metadataListReceiptRuleSetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2823,11 +2595,7 @@ func (s ListReceiptRuleSetsOutput) GoString() string { } type ListVerifiedEmailAddressesInput struct { - metadataListVerifiedEmailAddressesInput `json:"-" xml:"-"` -} - -type metadataListVerifiedEmailAddressesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2845,11 +2613,7 @@ type ListVerifiedEmailAddressesOutput struct { // A list of email addresses that have been verified. VerifiedEmailAddresses []*string `type:"list"` - metadataListVerifiedEmailAddressesOutput `json:"-" xml:"-"` -} - -type metadataListVerifiedEmailAddressesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2871,11 +2635,7 @@ type Message struct { // in the recipient's inbox. Subject *Content `type:"structure" required:"true"` - metadataMessage `json:"-" xml:"-"` -} - -type metadataMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2906,11 +2666,7 @@ type MessageDsn struct { // The default value is dns; inbound-smtp.[region].amazonaws.com. ReportingMta *string `type:"string" required:"true"` - metadataMessageDsn `json:"-" xml:"-"` -} - -type metadataMessageDsn struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2945,11 +2701,7 @@ type PutIdentityPolicyInput struct { // characters, dashes, and underscores. PolicyName *string `min:"1" type:"string" required:"true"` - metadataPutIdentityPolicyInput `json:"-" xml:"-"` -} - -type metadataPutIdentityPolicyInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2965,11 +2717,7 @@ func (s PutIdentityPolicyInput) GoString() string { // An empty element. Receiving this element indicates that the request completed // successfully. type PutIdentityPolicyOutput struct { - metadataPutIdentityPolicyOutput `json:"-" xml:"-"` -} - -type metadataPutIdentityPolicyOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2999,11 +2747,7 @@ type RawMessage struct { // SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html). Data []byte `type:"blob" required:"true"` - metadataRawMessage `json:"-" xml:"-"` -} - -type metadataRawMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3050,11 +2794,7 @@ type ReceiptAction struct { // SNS. WorkmailAction *WorkmailAction `type:"structure"` - metadataReceiptAction `json:"-" xml:"-"` -} - -type metadataReceiptAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3084,11 +2824,7 @@ type ReceiptFilter struct { // 64 characters. Name *string `type:"string" required:"true"` - metadataReceiptFilter `json:"-" xml:"-"` -} - -type metadataReceiptFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3116,11 +2852,7 @@ type ReceiptIpFilter struct { // Indicates whether to block or allow incoming mail from the specified IP addresses. Policy *string `type:"string" required:"true" enum:"ReceiptFilterPolicy"` - metadataReceiptIpFilter `json:"-" xml:"-"` -} - -type metadataReceiptIpFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3174,11 +2906,7 @@ type ReceiptRule struct { // over TLS. The default is Optional. TlsPolicy *string `type:"string" enum:"TlsPolicy"` - metadataReceiptRule `json:"-" xml:"-"` -} - -type metadataReceiptRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3209,11 +2937,7 @@ type ReceiptRuleSetMetadata struct { // 64 characters. Name *string `type:"string"` - metadataReceiptRuleSetMetadata `json:"-" xml:"-"` -} - -type metadataReceiptRuleSetMetadata struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3269,11 +2993,7 @@ type RecipientDsnFields struct { // (https://tools.ietf.org/html/rfc3464). Status *string `type:"string" required:"true"` - metadataRecipientDsnFields `json:"-" xml:"-"` -} - -type metadataRecipientDsnFields struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3294,11 +3014,7 @@ type ReorderReceiptRuleSetInput struct { // The name of the receipt rule set to reorder. RuleSetName *string `type:"string" required:"true"` - metadataReorderReceiptRuleSetInput `json:"-" xml:"-"` -} - -type metadataReorderReceiptRuleSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3312,11 +3028,7 @@ func (s ReorderReceiptRuleSetInput) GoString() string { } type ReorderReceiptRuleSetOutput struct { - metadataReorderReceiptRuleSetOutput `json:"-" xml:"-"` -} - -type metadataReorderReceiptRuleSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3386,11 +3098,7 @@ type S3Action struct { // Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html). TopicArn *string `type:"string"` - metadataS3Action `json:"-" xml:"-"` -} - -type metadataS3Action struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3427,11 +3135,7 @@ type SNSAction struct { // Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html). TopicArn *string `type:"string" required:"true"` - metadataSNSAction `json:"-" xml:"-"` -} - -type metadataSNSAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3474,11 +3178,7 @@ type SendBounceInput struct { // The message ID of the message to be bounced. OriginalMessageId *string `type:"string" required:"true"` - metadataSendBounceInput `json:"-" xml:"-"` -} - -type metadataSendBounceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3495,11 +3195,7 @@ type SendBounceOutput struct { // The message ID of the bounce message. MessageId *string `type:"string"` - metadataSendBounceOutput `json:"-" xml:"-"` -} - -type metadataSendBounceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3530,11 +3226,7 @@ type SendDataPoint struct { // Time of the data point. Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"` - metadataSendDataPoint `json:"-" xml:"-"` -} - -type metadataSendDataPoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3615,11 +3307,7 @@ type SendEmailInput struct { // Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html). SourceArn *string `type:"string"` - metadataSendEmailInput `json:"-" xml:"-"` -} - -type metadataSendEmailInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3637,11 +3325,7 @@ type SendEmailOutput struct { // The unique message identifier returned from the SendEmail action. MessageId *string `type:"string" required:"true"` - metadataSendEmailOutput `json:"-" xml:"-"` -} - -type metadataSendEmailOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3737,11 +3421,7 @@ type SendRawEmailInput struct { // SendRawEmail in this guide, or see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html). SourceArn *string `type:"string"` - metadataSendRawEmailInput `json:"-" xml:"-"` -} - -type metadataSendRawEmailInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3759,11 +3439,7 @@ type SendRawEmailOutput struct { // The unique message identifier returned from the SendRawEmail action. MessageId *string `type:"string" required:"true"` - metadataSendRawEmailOutput `json:"-" xml:"-"` -} - -type metadataSendRawEmailOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3781,11 +3457,7 @@ type SetActiveReceiptRuleSetInput struct { // disables all email receiving. RuleSetName *string `type:"string"` - metadataSetActiveReceiptRuleSetInput `json:"-" xml:"-"` -} - -type metadataSetActiveReceiptRuleSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3799,11 +3471,7 @@ func (s SetActiveReceiptRuleSetInput) GoString() string { } type SetActiveReceiptRuleSetOutput struct { - metadataSetActiveReceiptRuleSetOutput `json:"-" xml:"-"` -} - -type metadataSetActiveReceiptRuleSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3826,11 +3494,7 @@ type SetIdentityDkimEnabledInput struct { // The identity for which DKIM signing should be enabled or disabled. Identity *string `type:"string" required:"true"` - metadataSetIdentityDkimEnabledInput `json:"-" xml:"-"` -} - -type metadataSetIdentityDkimEnabledInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3846,11 +3510,7 @@ func (s SetIdentityDkimEnabledInput) GoString() string { // An empty element. Receiving this element indicates that the request completed // successfully. type SetIdentityDkimEnabledOutput struct { - metadataSetIdentityDkimEnabledOutput `json:"-" xml:"-"` -} - -type metadataSetIdentityDkimEnabledOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3876,11 +3536,7 @@ type SetIdentityFeedbackForwardingEnabledInput struct { // Examples: user@example.com, example.com. Identity *string `type:"string" required:"true"` - metadataSetIdentityFeedbackForwardingEnabledInput `json:"-" xml:"-"` -} - -type metadataSetIdentityFeedbackForwardingEnabledInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3896,11 +3552,7 @@ func (s SetIdentityFeedbackForwardingEnabledInput) GoString() string { // An empty element. Receiving this element indicates that the request completed // successfully. type SetIdentityFeedbackForwardingEnabledOutput struct { - metadataSetIdentityFeedbackForwardingEnabledOutput `json:"-" xml:"-"` -} - -type metadataSetIdentityFeedbackForwardingEnabledOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3929,11 +3581,7 @@ type SetIdentityNotificationTopicInput struct { // and publishing is disabled. SnsTopic *string `type:"string"` - metadataSetIdentityNotificationTopicInput `json:"-" xml:"-"` -} - -type metadataSetIdentityNotificationTopicInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3949,11 +3597,7 @@ func (s SetIdentityNotificationTopicInput) GoString() string { // An empty element. Receiving this element indicates that the request completed // successfully. type SetIdentityNotificationTopicOutput struct { - metadataSetIdentityNotificationTopicOutput `json:"-" xml:"-"` -} - -type metadataSetIdentityNotificationTopicOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3976,11 +3620,7 @@ type SetReceiptRulePositionInput struct { // The name of the receipt rule set that contains the receipt rule to reposition. RuleSetName *string `type:"string" required:"true"` - metadataSetReceiptRulePositionInput `json:"-" xml:"-"` -} - -type metadataSetReceiptRulePositionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3994,11 +3634,7 @@ func (s SetReceiptRulePositionInput) GoString() string { } type SetReceiptRulePositionOutput struct { - metadataSetReceiptRulePositionOutput `json:"-" xml:"-"` -} - -type metadataSetReceiptRulePositionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4027,11 +3663,7 @@ type StopAction struct { // Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html). TopicArn *string `type:"string"` - metadataStopAction `json:"-" xml:"-"` -} - -type metadataStopAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4051,11 +3683,7 @@ type UpdateReceiptRuleInput struct { // The name of the receipt rule set to which the receipt rule belongs. RuleSetName *string `type:"string" required:"true"` - metadataUpdateReceiptRuleInput `json:"-" xml:"-"` -} - -type metadataUpdateReceiptRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4069,11 +3697,7 @@ func (s UpdateReceiptRuleInput) GoString() string { } type UpdateReceiptRuleOutput struct { - metadataUpdateReceiptRuleOutput `json:"-" xml:"-"` -} - -type metadataUpdateReceiptRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4092,11 +3716,7 @@ type VerifyDomainDkimInput struct { // The name of the domain to be verified for Easy DKIM signing. Domain *string `type:"string" required:"true"` - metadataVerifyDomainDkimInput `json:"-" xml:"-"` -} - -type metadataVerifyDomainDkimInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4125,11 +3745,7 @@ type VerifyDomainDkimOutput struct { // the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html). DkimTokens []*string `type:"list" required:"true"` - metadataVerifyDomainDkimOutput `json:"-" xml:"-"` -} - -type metadataVerifyDomainDkimOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4147,11 +3763,7 @@ type VerifyDomainIdentityInput struct { // The domain to be verified. Domain *string `type:"string" required:"true"` - metadataVerifyDomainIdentityInput `json:"-" xml:"-"` -} - -type metadataVerifyDomainIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4170,11 +3782,7 @@ type VerifyDomainIdentityOutput struct { // to complete domain verification. VerificationToken *string `type:"string" required:"true"` - metadataVerifyDomainIdentityOutput `json:"-" xml:"-"` -} - -type metadataVerifyDomainIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4192,11 +3800,7 @@ type VerifyEmailAddressInput struct { // The email address to be verified. EmailAddress *string `type:"string" required:"true"` - metadataVerifyEmailAddressInput `json:"-" xml:"-"` -} - -type metadataVerifyEmailAddressInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4210,11 +3814,7 @@ func (s VerifyEmailAddressInput) GoString() string { } type VerifyEmailAddressOutput struct { - metadataVerifyEmailAddressOutput `json:"-" xml:"-"` -} - -type metadataVerifyEmailAddressOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4232,11 +3832,7 @@ type VerifyEmailIdentityInput struct { // The email address to be verified. EmailAddress *string `type:"string" required:"true"` - metadataVerifyEmailIdentityInput `json:"-" xml:"-"` -} - -type metadataVerifyEmailIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4252,11 +3848,7 @@ func (s VerifyEmailIdentityInput) GoString() string { // An empty element. Receiving this element indicates that the request completed // successfully. type VerifyEmailIdentityOutput struct { - metadataVerifyEmailIdentityOutput `json:"-" xml:"-"` -} - -type metadataVerifyEmailIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4289,11 +3881,7 @@ type WorkmailAction struct { // Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html). TopicArn *string `type:"string"` - metadataWorkmailAction `json:"-" xml:"-"` -} - -type metadataWorkmailAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/simpledb/api.go b/service/simpledb/api.go index 64ec5edc0ac..3356c498de2 100644 --- a/service/simpledb/api.go +++ b/service/simpledb/api.go @@ -460,11 +460,7 @@ type Attribute struct { // The value of the attribute. Value *string `type:"string" required:"true"` - metadataAttribute `json:"-" xml:"-"` -} - -type metadataAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -484,11 +480,7 @@ type BatchDeleteAttributesInput struct { // A list of items on which to perform the operation. Items []*DeletableItem `locationNameList:"Item" type:"list" flattened:"true" required:"true"` - metadataBatchDeleteAttributesInput `json:"-" xml:"-"` -} - -type metadataBatchDeleteAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -502,11 +494,7 @@ func (s BatchDeleteAttributesInput) GoString() string { } type BatchDeleteAttributesOutput struct { - metadataBatchDeleteAttributesOutput `json:"-" xml:"-"` -} - -type metadataBatchDeleteAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -526,11 +514,7 @@ type BatchPutAttributesInput struct { // A list of items on which to perform the operation. Items []*ReplaceableItem `locationNameList:"Item" type:"list" flattened:"true" required:"true"` - metadataBatchPutAttributesInput `json:"-" xml:"-"` -} - -type metadataBatchPutAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -544,11 +528,7 @@ func (s BatchPutAttributesInput) GoString() string { } type BatchPutAttributesOutput struct { - metadataBatchPutAttributesOutput `json:"-" xml:"-"` -} - -type metadataBatchPutAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -566,11 +546,7 @@ type CreateDomainInput struct { // and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'. DomainName *string `type:"string" required:"true"` - metadataCreateDomainInput `json:"-" xml:"-"` -} - -type metadataCreateDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -584,11 +560,7 @@ func (s CreateDomainInput) GoString() string { } type CreateDomainOutput struct { - metadataCreateDomainOutput `json:"-" xml:"-"` -} - -type metadataCreateDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -608,11 +580,7 @@ type DeletableAttribute struct { // The value of the attribute. Value *string `type:"string"` - metadataDeletableAttribute `json:"-" xml:"-"` -} - -type metadataDeletableAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -630,11 +598,7 @@ type DeletableItem struct { Name *string `locationName:"ItemName" type:"string" required:"true"` - metadataDeletableItem `json:"-" xml:"-"` -} - -type metadataDeletableItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -664,11 +628,7 @@ type DeleteAttributesInput struct { // objects that contain one or more value-attribute pairs. ItemName *string `type:"string" required:"true"` - metadataDeleteAttributesInput `json:"-" xml:"-"` -} - -type metadataDeleteAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -682,11 +642,7 @@ func (s DeleteAttributesInput) GoString() string { } type DeleteAttributesOutput struct { - metadataDeleteAttributesOutput `json:"-" xml:"-"` -} - -type metadataDeleteAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -703,11 +659,7 @@ type DeleteDomainInput struct { // The name of the domain to delete. DomainName *string `type:"string" required:"true"` - metadataDeleteDomainInput `json:"-" xml:"-"` -} - -type metadataDeleteDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -721,11 +673,7 @@ func (s DeleteDomainInput) GoString() string { } type DeleteDomainOutput struct { - metadataDeleteDomainOutput `json:"-" xml:"-"` -} - -type metadataDeleteDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -742,11 +690,7 @@ type DomainMetadataInput struct { // The name of the domain for which to display the metadata of. DomainName *string `type:"string" required:"true"` - metadataDomainMetadataInput `json:"-" xml:"-"` -} - -type metadataDomainMetadataInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -781,11 +725,7 @@ type DomainMetadataOutput struct { // The data and time when metadata was calculated, in Epoch (UNIX) seconds. Timestamp *int64 `type:"integer"` - metadataDomainMetadataOutput `json:"-" xml:"-"` -} - -type metadataDomainMetadataOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -814,11 +754,7 @@ type GetAttributesInput struct { // The name of the item. ItemName *string `type:"string" required:"true"` - metadataGetAttributesInput `json:"-" xml:"-"` -} - -type metadataGetAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -835,11 +771,7 @@ type GetAttributesOutput struct { // The list of attributes returned by the operation. Attributes []*Attribute `locationNameList:"Attribute" type:"list" flattened:"true"` - metadataGetAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -861,11 +793,7 @@ type Item struct { // The name of the item. Name *string `type:"string" required:"true"` - metadataItem `json:"-" xml:"-"` -} - -type metadataItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -887,11 +815,7 @@ type ListDomainsInput struct { // names. NextToken *string `type:"string"` - metadataListDomainsInput `json:"-" xml:"-"` -} - -type metadataListDomainsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -912,11 +836,7 @@ type ListDomainsOutput struct { // MaxNumberOfDomains still available. NextToken *string `type:"string"` - metadataListDomainsOutput `json:"-" xml:"-"` -} - -type metadataListDomainsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -944,11 +864,7 @@ type PutAttributesInput struct { // The name of the item. ItemName *string `type:"string" required:"true"` - metadataPutAttributesInput `json:"-" xml:"-"` -} - -type metadataPutAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -962,11 +878,7 @@ func (s PutAttributesInput) GoString() string { } type PutAttributesOutput struct { - metadataPutAttributesOutput `json:"-" xml:"-"` -} - -type metadataPutAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -990,11 +902,7 @@ type ReplaceableAttribute struct { // The value of the replaceable attribute. Value *string `type:"string" required:"true"` - metadataReplaceableAttribute `json:"-" xml:"-"` -} - -type metadataReplaceableAttribute struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1014,11 +922,7 @@ type ReplaceableItem struct { // The name of the replaceable item. Name *string `locationName:"ItemName" type:"string" required:"true"` - metadataReplaceableItem `json:"-" xml:"-"` -} - -type metadataReplaceableItem struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1044,11 +948,7 @@ type SelectInput struct { // The expression used to query the domain. SelectExpression *string `type:"string" required:"true"` - metadataSelectInput `json:"-" xml:"-"` -} - -type metadataSelectInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1069,11 +969,7 @@ type SelectOutput struct { // the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds. NextToken *string `type:"string"` - metadataSelectOutput `json:"-" xml:"-"` -} - -type metadataSelectOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1105,11 +1001,7 @@ type UpdateCondition struct { // parameter is equal to true. Value *string `type:"string"` - metadataUpdateCondition `json:"-" xml:"-"` -} - -type metadataUpdateCondition struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/sns/api.go b/service/sns/api.go index 0fccfaa2c59..2760cb5d2d8 100644 --- a/service/sns/api.go +++ b/service/sns/api.go @@ -858,11 +858,7 @@ type AddPermissionInput struct { // The ARN of the topic whose access control policy you wish to modify. TopicArn *string `type:"string" required:"true"` - metadataAddPermissionInput `json:"-" xml:"-"` -} - -type metadataAddPermissionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -876,11 +872,7 @@ func (s AddPermissionInput) GoString() string { } type AddPermissionOutput struct { - metadataAddPermissionOutput `json:"-" xml:"-"` -} - -type metadataAddPermissionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -907,11 +899,7 @@ type ConfirmSubscriptionInput struct { // The ARN of the topic for which you wish to confirm a subscription. TopicArn *string `type:"string" required:"true"` - metadataConfirmSubscriptionInput `json:"-" xml:"-"` -} - -type metadataConfirmSubscriptionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -929,11 +917,7 @@ type ConfirmSubscriptionOutput struct { // The ARN of the created subscription. SubscriptionArn *string `type:"string"` - metadataConfirmSubscriptionOutput `json:"-" xml:"-"` -} - -type metadataConfirmSubscriptionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -960,11 +944,7 @@ type CreatePlatformApplicationInput struct { // (Apple Push Notification Service), APNS_SANDBOX, and GCM (Google Cloud Messaging). Platform *string `type:"string" required:"true"` - metadataCreatePlatformApplicationInput `json:"-" xml:"-"` -} - -type metadataCreatePlatformApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -982,11 +962,7 @@ type CreatePlatformApplicationOutput struct { // PlatformApplicationArn is returned. PlatformApplicationArn *string `type:"string"` - metadataCreatePlatformApplicationOutput `json:"-" xml:"-"` -} - -type metadataCreatePlatformApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1019,11 +995,7 @@ type CreatePlatformEndpointInput struct { // token equivalent is called the registration ID. Token *string `type:"string" required:"true"` - metadataCreatePlatformEndpointInput `json:"-" xml:"-"` -} - -type metadataCreatePlatformEndpointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1041,11 +1013,7 @@ type CreatePlatformEndpointOutput struct { // EndpointArn returned from CreateEndpoint action. EndpointArn *string `type:"string"` - metadataCreatePlatformEndpointOutput `json:"-" xml:"-"` -} - -type metadataCreatePlatformEndpointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1067,11 +1035,7 @@ type CreateTopicInput struct { // 256 characters long. Name *string `type:"string" required:"true"` - metadataCreateTopicInput `json:"-" xml:"-"` -} - -type metadataCreateTopicInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1089,11 +1053,7 @@ type CreateTopicOutput struct { // The Amazon Resource Name (ARN) assigned to the created topic. TopicArn *string `type:"string"` - metadataCreateTopicOutput `json:"-" xml:"-"` -} - -type metadataCreateTopicOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1111,11 +1071,7 @@ type DeleteEndpointInput struct { // EndpointArn of endpoint to delete. EndpointArn *string `type:"string" required:"true"` - metadataDeleteEndpointInput `json:"-" xml:"-"` -} - -type metadataDeleteEndpointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1129,11 +1085,7 @@ func (s DeleteEndpointInput) GoString() string { } type DeleteEndpointOutput struct { - metadataDeleteEndpointOutput `json:"-" xml:"-"` -} - -type metadataDeleteEndpointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1151,11 +1103,7 @@ type DeletePlatformApplicationInput struct { // PlatformApplicationArn of platform application object to delete. PlatformApplicationArn *string `type:"string" required:"true"` - metadataDeletePlatformApplicationInput `json:"-" xml:"-"` -} - -type metadataDeletePlatformApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1169,11 +1117,7 @@ func (s DeletePlatformApplicationInput) GoString() string { } type DeletePlatformApplicationOutput struct { - metadataDeletePlatformApplicationOutput `json:"-" xml:"-"` -} - -type metadataDeletePlatformApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1190,11 +1134,7 @@ type DeleteTopicInput struct { // The ARN of the topic you want to delete. TopicArn *string `type:"string" required:"true"` - metadataDeleteTopicInput `json:"-" xml:"-"` -} - -type metadataDeleteTopicInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1208,11 +1148,7 @@ func (s DeleteTopicInput) GoString() string { } type DeleteTopicOutput struct { - metadataDeleteTopicOutput `json:"-" xml:"-"` -} - -type metadataDeleteTopicOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1233,11 +1169,7 @@ type Endpoint struct { // EndpointArn for mobile app and device. EndpointArn *string `type:"string"` - metadataEndpoint `json:"-" xml:"-"` -} - -type metadataEndpoint struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1255,11 +1187,7 @@ type GetEndpointAttributesInput struct { // EndpointArn for GetEndpointAttributes input. EndpointArn *string `type:"string" required:"true"` - metadataGetEndpointAttributesInput `json:"-" xml:"-"` -} - -type metadataGetEndpointAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1287,11 +1215,7 @@ type GetEndpointAttributesOutput struct { // service. Attributes map[string]*string `type:"map"` - metadataGetEndpointAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetEndpointAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1309,11 +1233,7 @@ type GetPlatformApplicationAttributesInput struct { // PlatformApplicationArn for GetPlatformApplicationAttributesInput. PlatformApplicationArn *string `type:"string" required:"true"` - metadataGetPlatformApplicationAttributesInput `json:"-" xml:"-"` -} - -type metadataGetPlatformApplicationAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1339,11 +1259,7 @@ type GetPlatformApplicationAttributesOutput struct { // endpoints. Attributes map[string]*string `type:"map"` - metadataGetPlatformApplicationAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetPlatformApplicationAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1361,11 +1277,7 @@ type GetSubscriptionAttributesInput struct { // The ARN of the subscription whose properties you want to get. SubscriptionArn *string `type:"string" required:"true"` - metadataGetSubscriptionAttributesInput `json:"-" xml:"-"` -} - -type metadataGetSubscriptionAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1392,11 +1304,7 @@ type GetSubscriptionAttributesOutput struct { // policy and account system defaults Attributes map[string]*string `type:"map"` - metadataGetSubscriptionAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetSubscriptionAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1414,11 +1322,7 @@ type GetTopicAttributesInput struct { // The ARN of the topic whose properties you want to get. TopicArn *string `type:"string" required:"true"` - metadataGetTopicAttributesInput `json:"-" xml:"-"` -} - -type metadataGetTopicAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1447,11 +1351,7 @@ type GetTopicAttributesOutput struct { // account system defaults Attributes map[string]*string `type:"map"` - metadataGetTopicAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetTopicAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1474,11 +1374,7 @@ type ListEndpointsByPlatformApplicationInput struct { // PlatformApplicationArn for ListEndpointsByPlatformApplicationInput action. PlatformApplicationArn *string `type:"string" required:"true"` - metadataListEndpointsByPlatformApplicationInput `json:"-" xml:"-"` -} - -type metadataListEndpointsByPlatformApplicationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1500,11 +1396,7 @@ type ListEndpointsByPlatformApplicationOutput struct { // action if additional records are available after the first page results. NextToken *string `type:"string"` - metadataListEndpointsByPlatformApplicationOutput `json:"-" xml:"-"` -} - -type metadataListEndpointsByPlatformApplicationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1523,11 +1415,7 @@ type ListPlatformApplicationsInput struct { // retrieve additional records that are available after the first page results. NextToken *string `type:"string"` - metadataListPlatformApplicationsInput `json:"-" xml:"-"` -} - -type metadataListPlatformApplicationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1549,11 +1437,7 @@ type ListPlatformApplicationsOutput struct { // Platform applications returned when calling ListPlatformApplications action. PlatformApplications []*PlatformApplication `type:"list"` - metadataListPlatformApplicationsOutput `json:"-" xml:"-"` -} - -type metadataListPlatformApplicationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1574,11 +1458,7 @@ type ListSubscriptionsByTopicInput struct { // The ARN of the topic for which you wish to find subscriptions. TopicArn *string `type:"string" required:"true"` - metadataListSubscriptionsByTopicInput `json:"-" xml:"-"` -} - -type metadataListSubscriptionsByTopicInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1600,11 +1480,7 @@ type ListSubscriptionsByTopicOutput struct { // A list of subscriptions. Subscriptions []*Subscription `type:"list"` - metadataListSubscriptionsByTopicOutput `json:"-" xml:"-"` -} - -type metadataListSubscriptionsByTopicOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1622,11 +1498,7 @@ type ListSubscriptionsInput struct { // Token returned by the previous ListSubscriptions request. NextToken *string `type:"string"` - metadataListSubscriptionsInput `json:"-" xml:"-"` -} - -type metadataListSubscriptionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1648,11 +1520,7 @@ type ListSubscriptionsOutput struct { // A list of subscriptions. Subscriptions []*Subscription `type:"list"` - metadataListSubscriptionsOutput `json:"-" xml:"-"` -} - -type metadataListSubscriptionsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1669,11 +1537,7 @@ type ListTopicsInput struct { // Token returned by the previous ListTopics request. NextToken *string `type:"string"` - metadataListTopicsInput `json:"-" xml:"-"` -} - -type metadataListTopicsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1695,11 +1559,7 @@ type ListTopicsOutput struct { // A list of topic ARNs. Topics []*Topic `type:"list"` - metadataListTopicsOutput `json:"-" xml:"-"` -} - -type metadataListTopicsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1734,11 +1594,7 @@ type MessageAttributeValue struct { // see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). StringValue *string `type:"string"` - metadataMessageAttributeValue `json:"-" xml:"-"` -} - -type metadataMessageAttributeValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1759,11 +1615,7 @@ type PlatformApplication struct { // PlatformApplicationArn for platform application object. PlatformApplicationArn *string `type:"string"` - metadataPlatformApplication `json:"-" xml:"-"` -} - -type metadataPlatformApplication struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1840,11 +1692,7 @@ type PublishInput struct { // The topic you want to publish to. TopicArn *string `type:"string"` - metadataPublishInput `json:"-" xml:"-"` -} - -type metadataPublishInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1864,11 +1712,7 @@ type PublishOutput struct { // Length Constraint: Maximum 100 characters MessageId *string `type:"string"` - metadataPublishOutput `json:"-" xml:"-"` -} - -type metadataPublishOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1889,11 +1733,7 @@ type RemovePermissionInput struct { // The ARN of the topic whose access control policy you wish to modify. TopicArn *string `type:"string" required:"true"` - metadataRemovePermissionInput `json:"-" xml:"-"` -} - -type metadataRemovePermissionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1907,11 +1747,7 @@ func (s RemovePermissionInput) GoString() string { } type RemovePermissionOutput struct { - metadataRemovePermissionOutput `json:"-" xml:"-"` -} - -type metadataRemovePermissionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1942,11 +1778,7 @@ type SetEndpointAttributesInput struct { // EndpointArn used for SetEndpointAttributes action. EndpointArn *string `type:"string" required:"true"` - metadataSetEndpointAttributesInput `json:"-" xml:"-"` -} - -type metadataSetEndpointAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1960,11 +1792,7 @@ func (s SetEndpointAttributesInput) GoString() string { } type SetEndpointAttributesOutput struct { - metadataSetEndpointAttributesOutput `json:"-" xml:"-"` -} - -type metadataSetEndpointAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1999,11 +1827,7 @@ type SetPlatformApplicationAttributesInput struct { // PlatformApplicationArn for SetPlatformApplicationAttributes action. PlatformApplicationArn *string `type:"string" required:"true"` - metadataSetPlatformApplicationAttributesInput `json:"-" xml:"-"` -} - -type metadataSetPlatformApplicationAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2017,11 +1841,7 @@ func (s SetPlatformApplicationAttributesInput) GoString() string { } type SetPlatformApplicationAttributesOutput struct { - metadataSetPlatformApplicationAttributesOutput `json:"-" xml:"-"` -} - -type metadataSetPlatformApplicationAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2048,11 +1868,7 @@ type SetSubscriptionAttributesInput struct { // The ARN of the subscription to modify. SubscriptionArn *string `type:"string" required:"true"` - metadataSetSubscriptionAttributesInput `json:"-" xml:"-"` -} - -type metadataSetSubscriptionAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2066,11 +1882,7 @@ func (s SetSubscriptionAttributesInput) GoString() string { } type SetSubscriptionAttributesOutput struct { - metadataSetSubscriptionAttributesOutput `json:"-" xml:"-"` -} - -type metadataSetSubscriptionAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2097,11 +1909,7 @@ type SetTopicAttributesInput struct { // The ARN of the topic to modify. TopicArn *string `type:"string" required:"true"` - metadataSetTopicAttributesInput `json:"-" xml:"-"` -} - -type metadataSetTopicAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2115,11 +1923,7 @@ func (s SetTopicAttributesInput) GoString() string { } type SetTopicAttributesOutput struct { - metadataSetTopicAttributesOutput `json:"-" xml:"-"` -} - -type metadataSetTopicAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2158,11 +1962,7 @@ type SubscribeInput struct { // The ARN of the topic you want to subscribe to. TopicArn *string `type:"string" required:"true"` - metadataSubscribeInput `json:"-" xml:"-"` -} - -type metadataSubscribeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2181,11 +1981,7 @@ type SubscribeOutput struct { // immediately (without requiring endpoint owner confirmation). SubscriptionArn *string `type:"string"` - metadataSubscribeOutput `json:"-" xml:"-"` -} - -type metadataSubscribeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2215,11 +2011,7 @@ type Subscription struct { // The ARN of the subscription's topic. TopicArn *string `type:"string"` - metadataSubscription `json:"-" xml:"-"` -} - -type metadataSubscription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2238,11 +2030,7 @@ type Topic struct { // The topic's ARN. TopicArn *string `type:"string"` - metadataTopic `json:"-" xml:"-"` -} - -type metadataTopic struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2260,11 +2048,7 @@ type UnsubscribeInput struct { // The ARN of the subscription to be deleted. SubscriptionArn *string `type:"string" required:"true"` - metadataUnsubscribeInput `json:"-" xml:"-"` -} - -type metadataUnsubscribeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2278,11 +2062,7 @@ func (s UnsubscribeInput) GoString() string { } type UnsubscribeOutput struct { - metadataUnsubscribeOutput `json:"-" xml:"-"` -} - -type metadataUnsubscribeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/sqs/api.go b/service/sqs/api.go index 87ed43faf06..cd5d6daa307 100644 --- a/service/sqs/api.go +++ b/service/sqs/api.go @@ -764,11 +764,7 @@ type AddPermissionInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataAddPermissionInput `json:"-" xml:"-"` -} - -type metadataAddPermissionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -782,11 +778,7 @@ func (s AddPermissionInput) GoString() string { } type AddPermissionOutput struct { - metadataAddPermissionOutput `json:"-" xml:"-"` -} - -type metadataAddPermissionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -814,11 +806,7 @@ type BatchResultErrorEntry struct { // Whether the error happened due to the sender's fault. SenderFault *bool `type:"boolean" required:"true"` - metadataBatchResultErrorEntry `json:"-" xml:"-"` -} - -type metadataBatchResultErrorEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -839,11 +827,7 @@ type ChangeMessageVisibilityBatchInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataChangeMessageVisibilityBatchInput `json:"-" xml:"-"` -} - -type metadataChangeMessageVisibilityBatchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -866,11 +850,7 @@ type ChangeMessageVisibilityBatchOutput struct { // A list of ChangeMessageVisibilityBatchResultEntry items. Successful []*ChangeMessageVisibilityBatchResultEntry `locationNameList:"ChangeMessageVisibilityBatchResultEntry" type:"list" flattened:"true" required:"true"` - metadataChangeMessageVisibilityBatchOutput `json:"-" xml:"-"` -} - -type metadataChangeMessageVisibilityBatchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -907,11 +887,7 @@ type ChangeMessageVisibilityBatchRequestEntry struct { // The new value (in seconds) for the message's visibility timeout. VisibilityTimeout *int64 `type:"integer"` - metadataChangeMessageVisibilityBatchRequestEntry `json:"-" xml:"-"` -} - -type metadataChangeMessageVisibilityBatchRequestEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -929,11 +905,7 @@ type ChangeMessageVisibilityBatchResultEntry struct { // Represents a message whose visibility timeout has been changed successfully. Id *string `type:"string" required:"true"` - metadataChangeMessageVisibilityBatchResultEntry `json:"-" xml:"-"` -} - -type metadataChangeMessageVisibilityBatchResultEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -958,11 +930,7 @@ type ChangeMessageVisibilityInput struct { // visibility timeout. VisibilityTimeout *int64 `type:"integer" required:"true"` - metadataChangeMessageVisibilityInput `json:"-" xml:"-"` -} - -type metadataChangeMessageVisibilityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -976,11 +944,7 @@ func (s ChangeMessageVisibilityInput) GoString() string { } type ChangeMessageVisibilityOutput struct { - metadataChangeMessageVisibilityOutput `json:"-" xml:"-"` -} - -type metadataChangeMessageVisibilityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1021,11 +985,7 @@ type CreateQueueInput struct { // The name for the queue to be created. QueueName *string `type:"string" required:"true"` - metadataCreateQueueInput `json:"-" xml:"-"` -} - -type metadataCreateQueueInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1043,11 +1003,7 @@ type CreateQueueOutput struct { // The URL for the created Amazon SQS queue. QueueUrl *string `type:"string"` - metadataCreateQueueOutput `json:"-" xml:"-"` -} - -type metadataCreateQueueOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1067,11 +1023,7 @@ type DeleteMessageBatchInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataDeleteMessageBatchInput `json:"-" xml:"-"` -} - -type metadataDeleteMessageBatchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1094,11 +1046,7 @@ type DeleteMessageBatchOutput struct { // A list of DeleteMessageBatchResultEntry items. Successful []*DeleteMessageBatchResultEntry `locationNameList:"DeleteMessageBatchResultEntry" type:"list" flattened:"true" required:"true"` - metadataDeleteMessageBatchOutput `json:"-" xml:"-"` -} - -type metadataDeleteMessageBatchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1121,11 +1069,7 @@ type DeleteMessageBatchRequestEntry struct { // A receipt handle. ReceiptHandle *string `type:"string" required:"true"` - metadataDeleteMessageBatchRequestEntry `json:"-" xml:"-"` -} - -type metadataDeleteMessageBatchRequestEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1143,11 +1087,7 @@ type DeleteMessageBatchResultEntry struct { // Represents a successfully deleted message. Id *string `type:"string" required:"true"` - metadataDeleteMessageBatchResultEntry `json:"-" xml:"-"` -} - -type metadataDeleteMessageBatchResultEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1167,11 +1107,7 @@ type DeleteMessageInput struct { // The receipt handle associated with the message to delete. ReceiptHandle *string `type:"string" required:"true"` - metadataDeleteMessageInput `json:"-" xml:"-"` -} - -type metadataDeleteMessageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1185,11 +1121,7 @@ func (s DeleteMessageInput) GoString() string { } type DeleteMessageOutput struct { - metadataDeleteMessageOutput `json:"-" xml:"-"` -} - -type metadataDeleteMessageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1206,11 +1138,7 @@ type DeleteQueueInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataDeleteQueueInput `json:"-" xml:"-"` -} - -type metadataDeleteQueueInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1224,11 +1152,7 @@ func (s DeleteQueueInput) GoString() string { } type DeleteQueueOutput struct { - metadataDeleteQueueOutput `json:"-" xml:"-"` -} - -type metadataDeleteQueueOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1248,11 +1172,7 @@ type GetQueueAttributesInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataGetQueueAttributesInput `json:"-" xml:"-"` -} - -type metadataGetQueueAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1270,11 +1190,7 @@ type GetQueueAttributesOutput struct { // A map of attributes to the respective values. Attributes map[string]*string `locationName:"Attribute" locationNameKey:"Name" locationNameValue:"Value" type:"map" flattened:"true"` - metadataGetQueueAttributesOutput `json:"-" xml:"-"` -} - -type metadataGetQueueAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1295,11 +1211,7 @@ type GetQueueUrlInput struct { // The AWS account ID of the account that created the queue. QueueOwnerAWSAccountId *string `type:"string"` - metadataGetQueueUrlInput `json:"-" xml:"-"` -} - -type metadataGetQueueUrlInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1318,11 +1230,7 @@ type GetQueueUrlOutput struct { // The URL for the queue. QueueUrl *string `type:"string"` - metadataGetQueueUrlOutput `json:"-" xml:"-"` -} - -type metadataGetQueueUrlOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1339,11 +1247,7 @@ type ListDeadLetterSourceQueuesInput struct { // The queue URL of a dead letter queue. QueueUrl *string `type:"string" required:"true"` - metadataListDeadLetterSourceQueuesInput `json:"-" xml:"-"` -} - -type metadataListDeadLetterSourceQueuesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1362,11 +1266,7 @@ type ListDeadLetterSourceQueuesOutput struct { // with a dead letter queue. QueueUrls []*string `locationName:"queueUrls" locationNameList:"QueueUrl" type:"list" flattened:"true" required:"true"` - metadataListDeadLetterSourceQueuesOutput `json:"-" xml:"-"` -} - -type metadataListDeadLetterSourceQueuesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1384,11 +1284,7 @@ type ListQueuesInput struct { // begins with the specified string are returned. QueueNamePrefix *string `type:"string"` - metadataListQueuesInput `json:"-" xml:"-"` -} - -type metadataListQueuesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1406,11 +1302,7 @@ type ListQueuesOutput struct { // A list of queue URLs, up to 1000 entries. QueueUrls []*string `locationNameList:"QueueUrl" type:"list" flattened:"true"` - metadataListQueuesOutput `json:"-" xml:"-"` -} - -type metadataListQueuesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1456,11 +1348,7 @@ type Message struct { // you provide the last received receipt handle to delete the message. ReceiptHandle *string `type:"string"` - metadataMessage `json:"-" xml:"-"` -} - -type metadataMessage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1501,11 +1389,7 @@ type MessageAttributeValue struct { // see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). StringValue *string `type:"string"` - metadataMessageAttributeValue `json:"-" xml:"-"` -} - -type metadataMessageAttributeValue struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1523,11 +1407,7 @@ type PurgeQueueInput struct { // API. QueueUrl *string `type:"string" required:"true"` - metadataPurgeQueueInput `json:"-" xml:"-"` -} - -type metadataPurgeQueueInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1541,11 +1421,7 @@ func (s PurgeQueueInput) GoString() string { } type PurgeQueueOutput struct { - metadataPurgeQueueOutput `json:"-" xml:"-"` -} - -type metadataPurgeQueueOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1607,11 +1483,7 @@ type ReceiveMessageInput struct { // sooner than WaitTimeSeconds. WaitTimeSeconds *int64 `type:"integer"` - metadataReceiveMessageInput `json:"-" xml:"-"` -} - -type metadataReceiveMessageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1629,11 +1501,7 @@ type ReceiveMessageOutput struct { // A list of messages. Messages []*Message `locationNameList:"Message" type:"list" flattened:"true"` - metadataReceiveMessageOutput `json:"-" xml:"-"` -} - -type metadataReceiveMessageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1654,11 +1522,7 @@ type RemovePermissionInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataRemovePermissionInput `json:"-" xml:"-"` -} - -type metadataRemovePermissionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1672,11 +1536,7 @@ func (s RemovePermissionInput) GoString() string { } type RemovePermissionOutput struct { - metadataRemovePermissionOutput `json:"-" xml:"-"` -} - -type metadataRemovePermissionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1696,11 +1556,7 @@ type SendMessageBatchInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataSendMessageBatchInput `json:"-" xml:"-"` -} - -type metadataSendMessageBatchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1724,11 +1580,7 @@ type SendMessageBatchOutput struct { // A list of SendMessageBatchResultEntry items. Successful []*SendMessageBatchResultEntry `locationNameList:"SendMessageBatchResultEntry" type:"list" flattened:"true" required:"true"` - metadataSendMessageBatchOutput `json:"-" xml:"-"` -} - -type metadataSendMessageBatchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1758,11 +1610,7 @@ type SendMessageBatchRequestEntry struct { // Body of the message. MessageBody *string `type:"string" required:"true"` - metadataSendMessageBatchRequestEntry `json:"-" xml:"-"` -} - -type metadataSendMessageBatchRequestEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1795,11 +1643,7 @@ type SendMessageBatchResultEntry struct { // An identifier for the message. MessageId *string `type:"string" required:"true"` - metadataSendMessageBatchResultEntry `json:"-" xml:"-"` -} - -type metadataSendMessageBatchResultEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1830,11 +1674,7 @@ type SendMessageInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataSendMessageInput `json:"-" xml:"-"` -} - -type metadataSendMessageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1866,11 +1706,7 @@ type SendMessageOutput struct { // in the Amazon SQS Developer Guide. MessageId *string `type:"string"` - metadataSendMessageOutput `json:"-" xml:"-"` -} - -type metadataSendMessageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1913,11 +1749,7 @@ type SetQueueAttributesInput struct { // The URL of the Amazon SQS queue to take action on. QueueUrl *string `type:"string" required:"true"` - metadataSetQueueAttributesInput `json:"-" xml:"-"` -} - -type metadataSetQueueAttributesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1931,11 +1763,7 @@ func (s SetQueueAttributesInput) GoString() string { } type SetQueueAttributesOutput struct { - metadataSetQueueAttributesOutput `json:"-" xml:"-"` -} - -type metadataSetQueueAttributesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/ssm/api.go b/service/ssm/api.go index f7c98b4935a..2b77deeb52c 100644 --- a/service/ssm/api.go +++ b/service/ssm/api.go @@ -483,11 +483,7 @@ type Association struct { // The name of the SSM document. Name *string `type:"string"` - metadataAssociation `json:"-" xml:"-"` -} - -type metadataAssociation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -517,11 +513,7 @@ type AssociationDescription struct { // The association status. Status *AssociationStatus `type:"structure"` - metadataAssociationDescription `json:"-" xml:"-"` -} - -type metadataAssociationDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -542,11 +534,7 @@ type AssociationFilter struct { // The filter value. Value *string `locationName:"value" min:"1" type:"string" required:"true"` - metadataAssociationFilter `json:"-" xml:"-"` -} - -type metadataAssociationFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -573,11 +561,7 @@ type AssociationStatus struct { // The status. Name *string `type:"string" required:"true" enum:"AssociationStatusName"` - metadataAssociationStatus `json:"-" xml:"-"` -} - -type metadataAssociationStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -599,11 +583,7 @@ type CancelCommandInput struct { // requested. InstanceIds []*string `min:"1" type:"list"` - metadataCancelCommandInput `json:"-" xml:"-"` -} - -type metadataCancelCommandInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -619,11 +599,7 @@ func (s CancelCommandInput) GoString() string { // Whether or not the command was successfully canceled. There is no guarantee // that a request can be canceled. type CancelCommandOutput struct { - metadataCancelCommandOutput `json:"-" xml:"-"` -} - -type metadataCancelCommandOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -674,11 +650,7 @@ type Command struct { // The status of the command. Status *string `type:"string" enum:"CommandStatus"` - metadataCommand `json:"-" xml:"-"` -} - -type metadataCommand struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -699,11 +671,7 @@ type CommandFilter struct { // The filter value. For example: June 30, 2015. Value *string `locationName:"value" min:"1" type:"string" required:"true"` - metadataCommandFilter `json:"-" xml:"-"` -} - -type metadataCommandFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -746,11 +714,7 @@ type CommandInvocation struct { // Gets the trace output sent by the agent. TraceOutput *string `type:"string"` - metadataCommandInvocation `json:"-" xml:"-"` -} - -type metadataCommandInvocation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -794,11 +758,7 @@ type CommandPlugin struct { // The status of this plugin. You can execute a document with multiple plugins. Status *string `type:"string" enum:"CommandPluginStatus"` - metadataCommandPlugin `json:"-" xml:"-"` -} - -type metadataCommandPlugin struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -815,11 +775,7 @@ type CreateAssociationBatchInput struct { // One or more associations. Entries []*CreateAssociationBatchRequestEntry `locationNameList:"entries" type:"list" required:"true"` - metadataCreateAssociationBatchInput `json:"-" xml:"-"` -} - -type metadataCreateAssociationBatchInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -839,11 +795,7 @@ type CreateAssociationBatchOutput struct { // Information about the associations that succeeded. Successful []*AssociationDescription `locationNameList:"AssociationDescription" type:"list"` - metadataCreateAssociationBatchOutput `json:"-" xml:"-"` -} - -type metadataCreateAssociationBatchOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -867,11 +819,7 @@ type CreateAssociationBatchRequestEntry struct { // A description of the parameters for a document. Parameters map[string][]*string `type:"map"` - metadataCreateAssociationBatchRequestEntry `json:"-" xml:"-"` -} - -type metadataCreateAssociationBatchRequestEntry struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -894,11 +842,7 @@ type CreateAssociationInput struct { // The parameters for the document’s runtime configuration. Parameters map[string][]*string `type:"map"` - metadataCreateAssociationInput `json:"-" xml:"-"` -} - -type metadataCreateAssociationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -915,11 +859,7 @@ type CreateAssociationOutput struct { // Information about the association. AssociationDescription *AssociationDescription `type:"structure"` - metadataCreateAssociationOutput `json:"-" xml:"-"` -} - -type metadataCreateAssociationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -940,11 +880,7 @@ type CreateDocumentInput struct { // A name for the SSM document. Name *string `type:"string" required:"true"` - metadataCreateDocumentInput `json:"-" xml:"-"` -} - -type metadataCreateDocumentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -961,11 +897,7 @@ type CreateDocumentOutput struct { // Information about the SSM document. DocumentDescription *DocumentDescription `type:"structure"` - metadataCreateDocumentOutput `json:"-" xml:"-"` -} - -type metadataCreateDocumentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -985,11 +917,7 @@ type DeleteAssociationInput struct { // The name of the SSM document. Name *string `type:"string" required:"true"` - metadataDeleteAssociationInput `json:"-" xml:"-"` -} - -type metadataDeleteAssociationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1003,11 +931,7 @@ func (s DeleteAssociationInput) GoString() string { } type DeleteAssociationOutput struct { - metadataDeleteAssociationOutput `json:"-" xml:"-"` -} - -type metadataDeleteAssociationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1024,11 +948,7 @@ type DeleteDocumentInput struct { // The name of the SSM document. Name *string `type:"string" required:"true"` - metadataDeleteDocumentInput `json:"-" xml:"-"` -} - -type metadataDeleteDocumentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1042,11 +962,7 @@ func (s DeleteDocumentInput) GoString() string { } type DeleteDocumentOutput struct { - metadataDeleteDocumentOutput `json:"-" xml:"-"` -} - -type metadataDeleteDocumentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1066,11 +982,7 @@ type DescribeAssociationInput struct { // The name of the SSM document. Name *string `type:"string" required:"true"` - metadataDescribeAssociationInput `json:"-" xml:"-"` -} - -type metadataDescribeAssociationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1087,11 +999,7 @@ type DescribeAssociationOutput struct { // Information about the association. AssociationDescription *AssociationDescription `type:"structure"` - metadataDescribeAssociationOutput `json:"-" xml:"-"` -} - -type metadataDescribeAssociationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1108,11 +1016,7 @@ type DescribeDocumentInput struct { // The name of the SSM document. Name *string `type:"string" required:"true"` - metadataDescribeDocumentInput `json:"-" xml:"-"` -} - -type metadataDescribeDocumentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1129,11 +1033,7 @@ type DescribeDocumentOutput struct { // Information about the SSM document. Document *DocumentDescription `type:"structure"` - metadataDescribeDocumentOutput `json:"-" xml:"-"` -} - -type metadataDescribeDocumentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1159,11 +1059,7 @@ type DescribeInstanceInformationInput struct { // a previous call.) NextToken *string `type:"string"` - metadataDescribeInstanceInformationInput `json:"-" xml:"-"` -} - -type metadataDescribeInstanceInformationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1184,11 +1080,7 @@ type DescribeInstanceInformationOutput struct { // items to return, the string is empty. NextToken *string `type:"string"` - metadataDescribeInstanceInformationOutput `json:"-" xml:"-"` -} - -type metadataDescribeInstanceInformationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1224,11 +1116,7 @@ type DocumentDescription struct { // The status of the SSM document. Status *string `type:"string" enum:"DocumentStatus"` - metadataDocumentDescription `json:"-" xml:"-"` -} - -type metadataDocumentDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1249,11 +1137,7 @@ type DocumentFilter struct { // The value of the filter. Value *string `locationName:"value" min:"1" type:"string" required:"true"` - metadataDocumentFilter `json:"-" xml:"-"` -} - -type metadataDocumentFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1274,11 +1158,7 @@ type DocumentIdentifier struct { // The operating system platform. PlatformTypes []*string `locationNameList:"PlatformType" type:"list"` - metadataDocumentIdentifier `json:"-" xml:"-"` -} - -type metadataDocumentIdentifier struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1306,11 +1186,7 @@ type DocumentParameter struct { // The type of parameter. The type can be either “String” or “StringList”. Type *string `type:"string" enum:"DocumentParameterType"` - metadataDocumentParameter `json:"-" xml:"-"` -} - -type metadataDocumentParameter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1334,11 +1210,7 @@ type FailedCreateAssociation struct { // A description of the failure. Message *string `type:"string"` - metadataFailedCreateAssociation `json:"-" xml:"-"` -} - -type metadataFailedCreateAssociation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1355,11 +1227,7 @@ type GetDocumentInput struct { // The name of the SSM document. Name *string `type:"string" required:"true"` - metadataGetDocumentInput `json:"-" xml:"-"` -} - -type metadataGetDocumentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1379,11 +1247,7 @@ type GetDocumentOutput struct { // The name of the SSM document. Name *string `type:"string"` - metadataGetDocumentOutput `json:"-" xml:"-"` -} - -type metadataGetDocumentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1422,11 +1286,7 @@ type InstanceInformation struct { // The version of the OS platform running on your instance. PlatformVersion *string `type:"string"` - metadataInstanceInformation `json:"-" xml:"-"` -} - -type metadataInstanceInformation struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1447,11 +1307,7 @@ type InstanceInformationFilter struct { // The filter values. ValueSet []*string `locationName:"valueSet" locationNameList:"InstanceInformationFilterValue" min:"1" type:"list" required:"true"` - metadataInstanceInformationFilter `json:"-" xml:"-"` -} - -type metadataInstanceInformationFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1477,11 +1333,7 @@ type ListAssociationsInput struct { // a previous call.) NextToken *string `type:"string"` - metadataListAssociationsInput `json:"-" xml:"-"` -} - -type metadataListAssociationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1502,11 +1354,7 @@ type ListAssociationsOutput struct { // items to return, the string is empty. NextToken *string `type:"string"` - metadataListAssociationsOutput `json:"-" xml:"-"` -} - -type metadataListAssociationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1543,11 +1391,7 @@ type ListCommandInvocationsInput struct { // token from a previous call.) NextToken *string `type:"string"` - metadataListCommandInvocationsInput `json:"-" xml:"-"` -} - -type metadataListCommandInvocationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1568,11 +1412,7 @@ type ListCommandInvocationsOutput struct { // token from a previous call.) NextToken *string `type:"string"` - metadataListCommandInvocationsOutput `json:"-" xml:"-"` -} - -type metadataListCommandInvocationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1605,11 +1445,7 @@ type ListCommandsInput struct { // token from a previous call.) NextToken *string `type:"string"` - metadataListCommandsInput `json:"-" xml:"-"` -} - -type metadataListCommandsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1630,11 +1466,7 @@ type ListCommandsOutput struct { // token from a previous call.) NextToken *string `type:"string"` - metadataListCommandsOutput `json:"-" xml:"-"` -} - -type metadataListCommandsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1660,11 +1492,7 @@ type ListDocumentsInput struct { // a previous call.) NextToken *string `type:"string"` - metadataListDocumentsInput `json:"-" xml:"-"` -} - -type metadataListDocumentsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1685,11 +1513,7 @@ type ListDocumentsOutput struct { // items to return, the string is empty. NextToken *string `type:"string"` - metadataListDocumentsOutput `json:"-" xml:"-"` -} - -type metadataListDocumentsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1729,11 +1553,7 @@ type SendCommandInput struct { // it will not execute. TimeoutSeconds *int64 `min:"30" type:"integer"` - metadataSendCommandInput `json:"-" xml:"-"` -} - -type metadataSendCommandInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1751,11 +1571,7 @@ type SendCommandOutput struct { // can be used future references to this request. Command *Command `type:"structure"` - metadataSendCommandOutput `json:"-" xml:"-"` -} - -type metadataSendCommandOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1778,11 +1594,7 @@ type UpdateAssociationStatusInput struct { // The name of the SSM document. Name *string `type:"string" required:"true"` - metadataUpdateAssociationStatusInput `json:"-" xml:"-"` -} - -type metadataUpdateAssociationStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1799,11 +1611,7 @@ type UpdateAssociationStatusOutput struct { // Information about the association. AssociationDescription *AssociationDescription `type:"structure"` - metadataUpdateAssociationStatusOutput `json:"-" xml:"-"` -} - -type metadataUpdateAssociationStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/storagegateway/api.go b/service/storagegateway/api.go index 3227fa3ae5c..7f542e0d20a 100644 --- a/service/storagegateway/api.go +++ b/service/storagegateway/api.go @@ -1919,11 +1919,7 @@ type ActivateGatewayInput struct { // Valid Values: "IBM-ULT3580-TD5" TapeDriveType *string `min:"2" type:"string"` - metadataActivateGatewayInput `json:"-" xml:"-"` -} - -type metadataActivateGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1945,11 +1941,7 @@ type ActivateGatewayOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataActivateGatewayOutput `json:"-" xml:"-"` -} - -type metadataActivateGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1969,11 +1961,7 @@ type AddCacheInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataAddCacheInput `json:"-" xml:"-"` -} - -type metadataAddCacheInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1991,11 +1979,7 @@ type AddCacheOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataAddCacheOutput `json:"-" xml:"-"` -} - -type metadataAddCacheOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2020,11 +2004,7 @@ type AddTagsToResourceInput struct { // in UTF-8 format, and the following special characters: + - = . _ : / @. Tags []*Tag `type:"list" required:"true"` - metadataAddTagsToResourceInput `json:"-" xml:"-"` -} - -type metadataAddTagsToResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2042,11 +2022,7 @@ type AddTagsToResourceOutput struct { // The Amazon Resource Name (ARN) of the resource you want to add tags to. ResourceARN *string `min:"50" type:"string"` - metadataAddTagsToResourceOutput `json:"-" xml:"-"` -} - -type metadataAddTagsToResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2066,11 +2042,7 @@ type AddUploadBufferInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataAddUploadBufferInput `json:"-" xml:"-"` -} - -type metadataAddUploadBufferInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2088,11 +2060,7 @@ type AddUploadBufferOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataAddUploadBufferOutput `json:"-" xml:"-"` -} - -type metadataAddUploadBufferOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2118,11 +2086,7 @@ type AddWorkingStorageInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataAddWorkingStorageInput `json:"-" xml:"-"` -} - -type metadataAddWorkingStorageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2142,11 +2106,7 @@ type AddWorkingStorageOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataAddWorkingStorageOutput `json:"-" xml:"-"` -} - -type metadataAddWorkingStorageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2177,11 +2137,7 @@ type CachediSCSIVolume struct { // Lists iSCSI information about a volume. VolumeiSCSIAttributes *VolumeiSCSIAttributes `type:"structure"` - metadataCachediSCSIVolume `json:"-" xml:"-"` -} - -type metadataCachediSCSIVolume struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2204,11 +2160,7 @@ type CancelArchivalInput struct { // for. TapeARN *string `min:"50" type:"string" required:"true"` - metadataCancelArchivalInput `json:"-" xml:"-"` -} - -type metadataCancelArchivalInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2227,11 +2179,7 @@ type CancelArchivalOutput struct { // canceled. TapeARN *string `min:"50" type:"string"` - metadataCancelArchivalOutput `json:"-" xml:"-"` -} - -type metadataCancelArchivalOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2254,11 +2202,7 @@ type CancelRetrievalInput struct { // for. TapeARN *string `min:"50" type:"string" required:"true"` - metadataCancelRetrievalInput `json:"-" xml:"-"` -} - -type metadataCancelRetrievalInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2277,11 +2221,7 @@ type CancelRetrievalOutput struct { // canceled. TapeARN *string `min:"50" type:"string"` - metadataCancelRetrievalOutput `json:"-" xml:"-"` -} - -type metadataCancelRetrievalOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2314,11 +2254,7 @@ type ChapInfo struct { // (-). TargetARN *string `min:"50" type:"string"` - metadataChapInfo `json:"-" xml:"-"` -} - -type metadataChapInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2346,11 +2282,7 @@ type CreateCachediSCSIVolumeInput struct { VolumeSizeInBytes *int64 `type:"long" required:"true"` - metadataCreateCachediSCSIVolumeInput `json:"-" xml:"-"` -} - -type metadataCreateCachediSCSIVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2368,11 +2300,7 @@ type CreateCachediSCSIVolumeOutput struct { VolumeARN *string `min:"50" type:"string"` - metadataCreateCachediSCSIVolumeOutput `json:"-" xml:"-"` -} - -type metadataCreateCachediSCSIVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2390,11 +2318,7 @@ type CreateSnapshotFromVolumeRecoveryPointInput struct { VolumeARN *string `min:"50" type:"string" required:"true"` - metadataCreateSnapshotFromVolumeRecoveryPointInput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotFromVolumeRecoveryPointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2414,11 +2338,7 @@ type CreateSnapshotFromVolumeRecoveryPointOutput struct { VolumeRecoveryPointTime *string `type:"string"` - metadataCreateSnapshotFromVolumeRecoveryPointOutput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotFromVolumeRecoveryPointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2444,11 +2364,7 @@ type CreateSnapshotInput struct { // to return a list of gateway volumes. VolumeARN *string `min:"50" type:"string" required:"true"` - metadataCreateSnapshotInput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2471,11 +2387,7 @@ type CreateSnapshotOutput struct { // The Amazon Resource Name (ARN) of the volume of which the snapshot was taken. VolumeARN *string `min:"50" type:"string"` - metadataCreateSnapshotOutput `json:"-" xml:"-"` -} - -type metadataCreateSnapshotOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2529,11 +2441,7 @@ type CreateStorediSCSIVolumeInput struct { // The target name must be unique across all volumes of a gateway. TargetName *string `min:"1" type:"string" required:"true"` - metadataCreateStorediSCSIVolumeInput `json:"-" xml:"-"` -} - -type metadataCreateStorediSCSIVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2558,11 +2466,7 @@ type CreateStorediSCSIVolumeOutput struct { // The size of the volume in bytes. VolumeSizeInBytes *int64 `type:"long"` - metadataCreateStorediSCSIVolumeOutput `json:"-" xml:"-"` -} - -type metadataCreateStorediSCSIVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2603,11 +2507,7 @@ type CreateTapesInput struct { // The size must be gigabyte (1024*1024*1024 byte) aligned. TapeSizeInBytes *int64 `type:"long" required:"true"` - metadataCreateTapesInput `json:"-" xml:"-"` -} - -type metadataCreateTapesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2626,11 +2526,7 @@ type CreateTapesOutput struct { // tapes that were created. TapeARNs []*string `type:"list"` - metadataCreateTapesOutput `json:"-" xml:"-"` -} - -type metadataCreateTapesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2650,11 +2546,7 @@ type DeleteBandwidthRateLimitInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDeleteBandwidthRateLimitInput `json:"-" xml:"-"` -} - -type metadataDeleteBandwidthRateLimitInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2674,11 +2566,7 @@ type DeleteBandwidthRateLimitOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataDeleteBandwidthRateLimitOutput `json:"-" xml:"-"` -} - -type metadataDeleteBandwidthRateLimitOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2702,11 +2590,7 @@ type DeleteChapCredentialsInput struct { // operation to return to retrieve the TargetARN for specified VolumeARN. TargetARN *string `min:"50" type:"string" required:"true"` - metadataDeleteChapCredentialsInput `json:"-" xml:"-"` -} - -type metadataDeleteChapCredentialsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2727,11 +2611,7 @@ type DeleteChapCredentialsOutput struct { // The Amazon Resource Name (ARN) of the target. TargetARN *string `min:"50" type:"string"` - metadataDeleteChapCredentialsOutput `json:"-" xml:"-"` -} - -type metadataDeleteChapCredentialsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2750,11 +2630,7 @@ type DeleteGatewayInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDeleteGatewayInput `json:"-" xml:"-"` -} - -type metadataDeleteGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2773,11 +2649,7 @@ type DeleteGatewayOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataDeleteGatewayOutput `json:"-" xml:"-"` -} - -type metadataDeleteGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2793,11 +2665,7 @@ func (s DeleteGatewayOutput) GoString() string { type DeleteSnapshotScheduleInput struct { VolumeARN *string `min:"50" type:"string" required:"true"` - metadataDeleteSnapshotScheduleInput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotScheduleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2813,11 +2681,7 @@ func (s DeleteSnapshotScheduleInput) GoString() string { type DeleteSnapshotScheduleOutput struct { VolumeARN *string `min:"50" type:"string"` - metadataDeleteSnapshotScheduleOutput `json:"-" xml:"-"` -} - -type metadataDeleteSnapshotScheduleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2836,11 +2700,7 @@ type DeleteTapeArchiveInput struct { // tape shelf (VTS). TapeARN *string `min:"50" type:"string" required:"true"` - metadataDeleteTapeArchiveInput `json:"-" xml:"-"` -} - -type metadataDeleteTapeArchiveInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2859,11 +2719,7 @@ type DeleteTapeArchiveOutput struct { // the virtual tape shelf (VTS). TapeARN *string `min:"50" type:"string"` - metadataDeleteTapeArchiveOutput `json:"-" xml:"-"` -} - -type metadataDeleteTapeArchiveOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2886,11 +2742,7 @@ type DeleteTapeInput struct { // The Amazon Resource Name (ARN) of the virtual tape to delete. TapeARN *string `min:"50" type:"string" required:"true"` - metadataDeleteTapeInput `json:"-" xml:"-"` -} - -type metadataDeleteTapeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2908,11 +2760,7 @@ type DeleteTapeOutput struct { // The Amazon Resource Name (ARN) of the deleted virtual tape. TapeARN *string `min:"50" type:"string"` - metadataDeleteTapeOutput `json:"-" xml:"-"` -} - -type metadataDeleteTapeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2931,11 +2779,7 @@ type DeleteVolumeInput struct { // to return a list of gateway volumes. VolumeARN *string `min:"50" type:"string" required:"true"` - metadataDeleteVolumeInput `json:"-" xml:"-"` -} - -type metadataDeleteVolumeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2954,11 +2798,7 @@ type DeleteVolumeOutput struct { // is the same ARN you provided in the request. VolumeARN *string `min:"50" type:"string"` - metadataDeleteVolumeOutput `json:"-" xml:"-"` -} - -type metadataDeleteVolumeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2977,11 +2817,7 @@ type DescribeBandwidthRateLimitInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDescribeBandwidthRateLimitInput `json:"-" xml:"-"` -} - -type metadataDescribeBandwidthRateLimitInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3008,11 +2844,7 @@ type DescribeBandwidthRateLimitOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataDescribeBandwidthRateLimitOutput `json:"-" xml:"-"` -} - -type metadataDescribeBandwidthRateLimitOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3030,11 +2862,7 @@ type DescribeCacheInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDescribeCacheInput `json:"-" xml:"-"` -} - -type metadataDescribeCacheInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3064,11 +2892,7 @@ type DescribeCacheOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataDescribeCacheOutput `json:"-" xml:"-"` -} - -type metadataDescribeCacheOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3084,11 +2908,7 @@ func (s DescribeCacheOutput) GoString() string { type DescribeCachediSCSIVolumesInput struct { VolumeARNs []*string `type:"list" required:"true"` - metadataDescribeCachediSCSIVolumesInput `json:"-" xml:"-"` -} - -type metadataDescribeCachediSCSIVolumesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3107,11 +2927,7 @@ type DescribeCachediSCSIVolumesOutput struct { // volume. CachediSCSIVolumes []*CachediSCSIVolume `type:"list"` - metadataDescribeCachediSCSIVolumesOutput `json:"-" xml:"-"` -} - -type metadataDescribeCachediSCSIVolumesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3131,11 +2947,7 @@ type DescribeChapCredentialsInput struct { // operation to return to retrieve the TargetARN for specified VolumeARN. TargetARN *string `min:"50" type:"string" required:"true"` - metadataDescribeChapCredentialsInput `json:"-" xml:"-"` -} - -type metadataDescribeChapCredentialsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3167,11 +2979,7 @@ type DescribeChapCredentialsOutput struct { // TargetARN: The Amazon Resource Name (ARN) of the storage volume. ChapCredentials []*ChapInfo `type:"list"` - metadataDescribeChapCredentialsOutput `json:"-" xml:"-"` -} - -type metadataDescribeChapCredentialsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3190,11 +2998,7 @@ type DescribeGatewayInformationInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDescribeGatewayInformationInput `json:"-" xml:"-"` -} - -type metadataDescribeGatewayInformationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3242,11 +3046,7 @@ type DescribeGatewayInformationOutput struct { // this field is not returned in the response. NextUpdateAvailabilityDate *string `min:"1" type:"string"` - metadataDescribeGatewayInformationOutput `json:"-" xml:"-"` -} - -type metadataDescribeGatewayInformationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3265,11 +3065,7 @@ type DescribeMaintenanceStartTimeInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDescribeMaintenanceStartTimeInput `json:"-" xml:"-"` -} - -type metadataDescribeMaintenanceStartTimeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3295,11 +3091,7 @@ type DescribeMaintenanceStartTimeOutput struct { Timezone *string `min:"3" type:"string"` - metadataDescribeMaintenanceStartTimeOutput `json:"-" xml:"-"` -} - -type metadataDescribeMaintenanceStartTimeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3319,11 +3111,7 @@ type DescribeSnapshotScheduleInput struct { // to return a list of gateway volumes. VolumeARN *string `min:"50" type:"string" required:"true"` - metadataDescribeSnapshotScheduleInput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotScheduleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3347,11 +3135,7 @@ type DescribeSnapshotScheduleOutput struct { VolumeARN *string `min:"50" type:"string"` - metadataDescribeSnapshotScheduleOutput `json:"-" xml:"-"` -} - -type metadataDescribeSnapshotScheduleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3371,11 +3155,7 @@ type DescribeStorediSCSIVolumesInput struct { // same gateway. Use ListVolumes to get volume ARNs for a gateway. VolumeARNs []*string `type:"list" required:"true"` - metadataDescribeStorediSCSIVolumesInput `json:"-" xml:"-"` -} - -type metadataDescribeStorediSCSIVolumesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3391,11 +3171,7 @@ func (s DescribeStorediSCSIVolumesInput) GoString() string { type DescribeStorediSCSIVolumesOutput struct { StorediSCSIVolumes []*StorediSCSIVolume `type:"list"` - metadataDescribeStorediSCSIVolumesOutput `json:"-" xml:"-"` -} - -type metadataDescribeStorediSCSIVolumesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3422,11 +3198,7 @@ type DescribeTapeArchivesInput struct { // the virtual tapes you want to describe. TapeARNs []*string `type:"list"` - metadataDescribeTapeArchivesInput `json:"-" xml:"-"` -} - -type metadataDescribeTapeArchivesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3454,11 +3226,7 @@ type DescribeTapeArchivesOutput struct { // the tapes, status of the tapes, progress of the description and tape barcode. TapeArchives []*TapeArchive `type:"list"` - metadataDescribeTapeArchivesOutput `json:"-" xml:"-"` -} - -type metadataDescribeTapeArchivesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3485,11 +3253,7 @@ type DescribeTapeRecoveryPointsInput struct { // the virtual tape recovery points. Marker *string `min:"1" type:"string"` - metadataDescribeTapeRecoveryPointsInput `json:"-" xml:"-"` -} - -type metadataDescribeTapeRecoveryPointsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3519,11 +3283,7 @@ type DescribeTapeRecoveryPointsOutput struct { // An array of TapeRecoveryPointInfos that are available for the specified gateway. TapeRecoveryPointInfos []*TapeRecoveryPointInfo `type:"list"` - metadataDescribeTapeRecoveryPointsOutput `json:"-" xml:"-"` -} - -type metadataDescribeTapeRecoveryPointsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3560,11 +3320,7 @@ type DescribeTapesInput struct { // with the specified gateway. TapeARNs []*string `type:"list"` - metadataDescribeTapesInput `json:"-" xml:"-"` -} - -type metadataDescribeTapesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3589,11 +3345,7 @@ type DescribeTapesOutput struct { // An array of virtual tape descriptions. Tapes []*Tape `type:"list"` - metadataDescribeTapesOutput `json:"-" xml:"-"` -} - -type metadataDescribeTapesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3611,11 +3363,7 @@ type DescribeUploadBufferInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDescribeUploadBufferInput `json:"-" xml:"-"` -} - -type metadataDescribeUploadBufferInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3639,11 +3387,7 @@ type DescribeUploadBufferOutput struct { UploadBufferUsedInBytes *int64 `type:"long"` - metadataDescribeUploadBufferOutput `json:"-" xml:"-"` -} - -type metadataDescribeUploadBufferOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3678,11 +3422,7 @@ type DescribeVTLDevicesInput struct { // gateway. VTLDeviceARNs []*string `type:"list"` - metadataDescribeVTLDevicesInput `json:"-" xml:"-"` -} - -type metadataDescribeVTLDevicesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3711,11 +3451,7 @@ type DescribeVTLDevicesOutput struct { // of the VTL devices. VTLDevices []*VTLDevice `type:"list"` - metadataDescribeVTLDevicesOutput `json:"-" xml:"-"` -} - -type metadataDescribeVTLDevicesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3734,11 +3470,7 @@ type DescribeWorkingStorageInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDescribeWorkingStorageInput `json:"-" xml:"-"` -} - -type metadataDescribeWorkingStorageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3771,11 +3503,7 @@ type DescribeWorkingStorageOutput struct { // is configured for the gateway, this field returns 0. WorkingStorageUsedInBytes *int64 `type:"long"` - metadataDescribeWorkingStorageOutput `json:"-" xml:"-"` -} - -type metadataDescribeWorkingStorageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3803,11 +3531,7 @@ type DeviceiSCSIAttributes struct { // name(iqn) of a tape drive or media changer target. TargetARN *string `min:"50" type:"string"` - metadataDeviceiSCSIAttributes `json:"-" xml:"-"` -} - -type metadataDeviceiSCSIAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3826,11 +3550,7 @@ type DisableGatewayInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataDisableGatewayInput `json:"-" xml:"-"` -} - -type metadataDisableGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3848,11 +3568,7 @@ type DisableGatewayOutput struct { // The unique Amazon Resource Name of the disabled gateway. GatewayARN *string `min:"50" type:"string"` - metadataDisableGatewayOutput `json:"-" xml:"-"` -} - -type metadataDisableGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3880,11 +3596,7 @@ type Disk struct { DiskStatus *string `type:"string"` - metadataDisk `json:"-" xml:"-"` -} - -type metadataDisk struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3907,11 +3619,7 @@ type Error struct { // Human-readable text that provides detail about the error that occurred. ErrorDetails map[string]*string `locationName:"errorDetails" type:"map"` - metadataError `json:"-" xml:"-"` -} - -type metadataError struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3935,11 +3643,7 @@ type GatewayInfo struct { GatewayType *string `min:"2" type:"string"` - metadataGatewayInfo `json:"-" xml:"-"` -} - -type metadataGatewayInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3964,11 +3668,7 @@ type ListGatewaysInput struct { // list of gateways. Marker *string `min:"1" type:"string"` - metadataListGatewaysInput `json:"-" xml:"-"` -} - -type metadataListGatewaysInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3986,11 +3686,7 @@ type ListGatewaysOutput struct { Marker *string `min:"1" type:"string"` - metadataListGatewaysOutput `json:"-" xml:"-"` -} - -type metadataListGatewaysOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4009,11 +3705,7 @@ type ListLocalDisksInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataListLocalDisksInput `json:"-" xml:"-"` -} - -type metadataListLocalDisksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4033,11 +3725,7 @@ type ListLocalDisksOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataListLocalDisksOutput `json:"-" xml:"-"` -} - -type metadataListLocalDisksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4064,11 +3752,7 @@ type ListTagsForResourceInput struct { // tags. ResourceARN *string `min:"50" type:"string"` - metadataListTagsForResourceInput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4094,11 +3778,7 @@ type ListTagsForResourceOutput struct { // An array that contains the tags for the specified resource. Tags []*Tag `type:"list"` - metadataListTagsForResourceOutput `json:"-" xml:"-"` -} - -type metadataListTagsForResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4117,11 +3797,7 @@ type ListVolumeInitiatorsInput struct { // to return a list of gateway volumes for the gateway. VolumeARN *string `min:"50" type:"string" required:"true"` - metadataListVolumeInitiatorsInput `json:"-" xml:"-"` -} - -type metadataListVolumeInitiatorsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4140,11 +3816,7 @@ type ListVolumeInitiatorsOutput struct { // to the gateway. Initiators []*string `type:"list"` - metadataListVolumeInitiatorsOutput `json:"-" xml:"-"` -} - -type metadataListVolumeInitiatorsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4162,11 +3834,7 @@ type ListVolumeRecoveryPointsInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataListVolumeRecoveryPointsInput `json:"-" xml:"-"` -} - -type metadataListVolumeRecoveryPointsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4186,11 +3854,7 @@ type ListVolumeRecoveryPointsOutput struct { VolumeRecoveryPointInfos []*VolumeRecoveryPointInfo `type:"list"` - metadataListVolumeRecoveryPointsOutput `json:"-" xml:"-"` -} - -type metadataListVolumeRecoveryPointsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4220,11 +3884,7 @@ type ListVolumesInput struct { // Volumes request. Marker *string `min:"1" type:"string"` - metadataListVolumesInput `json:"-" xml:"-"` -} - -type metadataListVolumesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4246,11 +3906,7 @@ type ListVolumesOutput struct { VolumeInfos []*VolumeInfo `type:"list"` - metadataListVolumesOutput `json:"-" xml:"-"` -} - -type metadataListVolumesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4277,11 +3933,7 @@ type NetworkInterface struct { // This is currently unsupported and will not be returned in output. MacAddress *string `type:"string"` - metadataNetworkInterface `json:"-" xml:"-"` -} - -type metadataNetworkInterface struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4304,11 +3956,7 @@ type RemoveTagsFromResourceInput struct { // is composed of a key/value pair. TagKeys []*string `type:"list"` - metadataRemoveTagsFromResourceInput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromResourceInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4327,11 +3975,7 @@ type RemoveTagsFromResourceOutput struct { // from. ResourceARN *string `min:"50" type:"string"` - metadataRemoveTagsFromResourceOutput `json:"-" xml:"-"` -} - -type metadataRemoveTagsFromResourceOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4349,11 +3993,7 @@ type ResetCacheInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataResetCacheInput `json:"-" xml:"-"` -} - -type metadataResetCacheInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4371,11 +4011,7 @@ type ResetCacheOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataResetCacheOutput `json:"-" xml:"-"` -} - -type metadataResetCacheOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4402,11 +4038,7 @@ type RetrieveTapeArchiveInput struct { // the virtual tape shelf (VTS). TapeARN *string `min:"50" type:"string" required:"true"` - metadataRetrieveTapeArchiveInput `json:"-" xml:"-"` -} - -type metadataRetrieveTapeArchiveInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4424,11 +4056,7 @@ type RetrieveTapeArchiveOutput struct { // The Amazon Resource Name (ARN) of the retrieved virtual tape. TapeARN *string `min:"50" type:"string"` - metadataRetrieveTapeArchiveOutput `json:"-" xml:"-"` -} - -type metadataRetrieveTapeArchiveOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4451,11 +4079,7 @@ type RetrieveTapeRecoveryPointInput struct { // retrieve the recovery point. TapeARN *string `min:"50" type:"string" required:"true"` - metadataRetrieveTapeRecoveryPointInput `json:"-" xml:"-"` -} - -type metadataRetrieveTapeRecoveryPointInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4474,11 +4098,7 @@ type RetrieveTapeRecoveryPointOutput struct { // point was retrieved. TapeARN *string `min:"50" type:"string"` - metadataRetrieveTapeRecoveryPointOutput `json:"-" xml:"-"` -} - -type metadataRetrieveTapeRecoveryPointOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4497,11 +4117,7 @@ type ShutdownGatewayInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataShutdownGatewayInput `json:"-" xml:"-"` -} - -type metadataShutdownGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4520,11 +4136,7 @@ type ShutdownGatewayOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataShutdownGatewayOutput `json:"-" xml:"-"` -} - -type metadataShutdownGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4543,11 +4155,7 @@ type StartGatewayInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataStartGatewayInput `json:"-" xml:"-"` -} - -type metadataStartGatewayInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4566,11 +4174,7 @@ type StartGatewayOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataStartGatewayOutput `json:"-" xml:"-"` -} - -type metadataStartGatewayOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4605,11 +4209,7 @@ type StorediSCSIVolume struct { // Lists iSCSI information about a volume. VolumeiSCSIAttributes *VolumeiSCSIAttributes `type:"structure"` - metadataStorediSCSIVolume `json:"-" xml:"-"` -} - -type metadataStorediSCSIVolume struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4627,11 +4227,7 @@ type Tag struct { Value *string `type:"string" required:"true"` - metadataTag `json:"-" xml:"-"` -} - -type metadataTag struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4668,11 +4264,7 @@ type Tape struct { // with. VTLDevice *string `min:"50" type:"string"` - metadataTape `json:"-" xml:"-"` -} - -type metadataTape struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4711,11 +4303,7 @@ type TapeArchive struct { // The current state of the archived virtual tape. TapeStatus *string `type:"string"` - metadataTapeArchive `json:"-" xml:"-"` -} - -type metadataTapeArchive struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4745,11 +4333,7 @@ type TapeRecoveryPointInfo struct { TapeStatus *string `type:"string"` - metadataTapeRecoveryPointInfo `json:"-" xml:"-"` -} - -type metadataTapeRecoveryPointInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4776,11 +4360,7 @@ type UpdateBandwidthRateLimitInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataUpdateBandwidthRateLimitInput `json:"-" xml:"-"` -} - -type metadataUpdateBandwidthRateLimitInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4800,11 +4380,7 @@ type UpdateBandwidthRateLimitOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataUpdateBandwidthRateLimitOutput `json:"-" xml:"-"` -} - -type metadataUpdateBandwidthRateLimitOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4843,11 +4419,7 @@ type UpdateChapCredentialsInput struct { // operation to return the TargetARN for specified VolumeARN. TargetARN *string `min:"50" type:"string" required:"true"` - metadataUpdateChapCredentialsInput `json:"-" xml:"-"` -} - -type metadataUpdateChapCredentialsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4870,11 +4442,7 @@ type UpdateChapCredentialsOutput struct { // in the request. TargetARN *string `min:"50" type:"string"` - metadataUpdateChapCredentialsOutput `json:"-" xml:"-"` -} - -type metadataUpdateChapCredentialsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4898,11 +4466,7 @@ type UpdateGatewayInformationInput struct { GatewayTimezone *string `min:"3" type:"string"` - metadataUpdateGatewayInformationInput `json:"-" xml:"-"` -} - -type metadataUpdateGatewayInformationInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4923,11 +4487,7 @@ type UpdateGatewayInformationOutput struct { GatewayName *string `type:"string"` - metadataUpdateGatewayInformationOutput `json:"-" xml:"-"` -} - -type metadataUpdateGatewayInformationOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4946,11 +4506,7 @@ type UpdateGatewaySoftwareNowInput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string" required:"true"` - metadataUpdateGatewaySoftwareNowInput `json:"-" xml:"-"` -} - -type metadataUpdateGatewaySoftwareNowInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4969,11 +4525,7 @@ type UpdateGatewaySoftwareNowOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataUpdateGatewaySoftwareNowOutput `json:"-" xml:"-"` -} - -type metadataUpdateGatewaySoftwareNowOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5008,11 +4560,7 @@ type UpdateMaintenanceStartTimeInput struct { // the gateway. MinuteOfHour *int64 `type:"integer" required:"true"` - metadataUpdateMaintenanceStartTimeInput `json:"-" xml:"-"` -} - -type metadataUpdateMaintenanceStartTimeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5032,11 +4580,7 @@ type UpdateMaintenanceStartTimeOutput struct { // to return a list of gateways for your account and region. GatewayARN *string `min:"50" type:"string"` - metadataUpdateMaintenanceStartTimeOutput `json:"-" xml:"-"` -} - -type metadataUpdateMaintenanceStartTimeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5069,11 +4613,7 @@ type UpdateSnapshotScheduleInput struct { // to return a list of gateway volumes. VolumeARN *string `min:"50" type:"string" required:"true"` - metadataUpdateSnapshotScheduleInput `json:"-" xml:"-"` -} - -type metadataUpdateSnapshotScheduleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5090,11 +4630,7 @@ func (s UpdateSnapshotScheduleInput) GoString() string { type UpdateSnapshotScheduleOutput struct { VolumeARN *string `min:"50" type:"string"` - metadataUpdateSnapshotScheduleOutput `json:"-" xml:"-"` -} - -type metadataUpdateSnapshotScheduleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5117,11 +4653,7 @@ type UpdateVTLDeviceTypeInput struct { // The Amazon Resource Name (ARN) of the medium changer you want to select. VTLDeviceARN *string `min:"50" type:"string" required:"true"` - metadataUpdateVTLDeviceTypeInput `json:"-" xml:"-"` -} - -type metadataUpdateVTLDeviceTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5139,11 +4671,7 @@ type UpdateVTLDeviceTypeOutput struct { // The Amazon Resource Name (ARN) of the medium changer you have selected. VTLDeviceARN *string `min:"50" type:"string"` - metadataUpdateVTLDeviceTypeOutput `json:"-" xml:"-"` -} - -type metadataUpdateVTLDeviceTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5171,11 +4699,7 @@ type VTLDevice struct { VTLDeviceVendor *string `type:"string"` - metadataVTLDevice `json:"-" xml:"-"` -} - -type metadataVTLDevice struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5193,11 +4717,7 @@ type VolumeInfo struct { VolumeType *string `min:"3" type:"string"` - metadataVolumeInfo `json:"-" xml:"-"` -} - -type metadataVolumeInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5219,11 +4739,7 @@ type VolumeRecoveryPointInfo struct { VolumeUsageInBytes *int64 `type:"long"` - metadataVolumeRecoveryPointInfo `json:"-" xml:"-"` -} - -type metadataVolumeRecoveryPointInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5253,11 +4769,7 @@ type VolumeiSCSIAttributes struct { // The Amazon Resource Name (ARN) of the volume target. TargetARN *string `min:"50" type:"string"` - metadataVolumeiSCSIAttributes `json:"-" xml:"-"` -} - -type metadataVolumeiSCSIAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/sts/api.go b/service/sts/api.go index 52755c9e061..74a2198dac3 100644 --- a/service/sts/api.go +++ b/service/sts/api.go @@ -534,11 +534,7 @@ type AssumeRoleInput struct { // is missing or expired, the AssumeRole call returns an "access denied" error. TokenCode *string `min:"6" type:"string"` - metadataAssumeRoleInput `json:"-" xml:"-"` -} - -type metadataAssumeRoleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -570,11 +566,7 @@ type AssumeRoleOutput struct { // which means the policy exceeded the allowed space. PackedPolicySize *int64 `type:"integer"` - metadataAssumeRoleOutput `json:"-" xml:"-"` -} - -type metadataAssumeRoleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -632,11 +624,7 @@ type AssumeRoleWithSAMLInput struct { // in the Using IAM guide. SAMLAssertion *string `min:"4" type:"string" required:"true"` - metadataAssumeRoleWithSAMLInput `json:"-" xml:"-"` -} - -type metadataAssumeRoleWithSAMLInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -695,11 +683,7 @@ type AssumeRoleWithSAMLOutput struct { // is returned with no modifications. SubjectType *string `type:"string"` - metadataAssumeRoleWithSAMLOutput `json:"-" xml:"-"` -} - -type metadataAssumeRoleWithSAMLOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -762,11 +746,7 @@ type AssumeRoleWithWebIdentityInput struct { // the application makes an AssumeRoleWithWebIdentity call. WebIdentityToken *string `min:"4" type:"string" required:"true"` - metadataAssumeRoleWithWebIdentityInput `json:"-" xml:"-"` -} - -type metadataAssumeRoleWithWebIdentityInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -817,11 +797,7 @@ type AssumeRoleWithWebIdentityOutput struct { // returned by the identity provider as the token's sub (Subject) claim. SubjectFromWebIdentityToken *string `min:"6" type:"string"` - metadataAssumeRoleWithWebIdentityOutput `json:"-" xml:"-"` -} - -type metadataAssumeRoleWithWebIdentityOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -848,11 +824,7 @@ type AssumedRoleUser struct { // role is created. AssumedRoleId *string `min:"2" type:"string" required:"true"` - metadataAssumedRoleUser `json:"-" xml:"-"` -} - -type metadataAssumedRoleUser struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -879,11 +851,7 @@ type Credentials struct { // The token that users must pass to the service API to use the temporary credentials. SessionToken *string `type:"string" required:"true"` - metadataCredentials `json:"-" xml:"-"` -} - -type metadataCredentials struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -900,11 +868,7 @@ type DecodeAuthorizationMessageInput struct { // The encoded message that was returned with the response. EncodedMessage *string `min:"1" type:"string" required:"true"` - metadataDecodeAuthorizationMessageInput `json:"-" xml:"-"` -} - -type metadataDecodeAuthorizationMessageInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -925,11 +889,7 @@ type DecodeAuthorizationMessageOutput struct { // see DecodeAuthorizationMessage. DecodedMessage *string `type:"string"` - metadataDecodeAuthorizationMessageOutput `json:"-" xml:"-"` -} - -type metadataDecodeAuthorizationMessageOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -954,11 +914,7 @@ type FederatedUser struct { // similar to the unique ID of an IAM user. FederatedUserId *string `min:"2" type:"string" required:"true"` - metadataFederatedUser `json:"-" xml:"-"` -} - -type metadataFederatedUser struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1010,11 +966,7 @@ type GetFederationTokenInput struct { // GetFederationToken (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_getfederationtoken.html). Policy *string `min:"1" type:"string"` - metadataGetFederationTokenInput `json:"-" xml:"-"` -} - -type metadataGetFederationTokenInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1044,11 +996,7 @@ type GetFederationTokenOutput struct { // of the allowed value. PackedPolicySize *int64 `type:"integer"` - metadataGetFederationTokenOutput `json:"-" xml:"-"` -} - -type metadataGetFederationTokenOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1086,11 +1034,7 @@ type GetSessionTokenInput struct { // response when requesting resources that require MFA authentication. TokenCode *string `min:"6" type:"string"` - metadataGetSessionTokenInput `json:"-" xml:"-"` -} - -type metadataGetSessionTokenInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1109,11 +1053,7 @@ type GetSessionTokenOutput struct { // The session credentials for API authentication. Credentials *Credentials `type:"structure"` - metadataGetSessionTokenOutput `json:"-" xml:"-"` -} - -type metadataGetSessionTokenOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/support/api.go b/service/support/api.go index 0832dccfdf5..2f9089c3ee5 100644 --- a/service/support/api.go +++ b/service/support/api.go @@ -535,11 +535,7 @@ type AddAttachmentsToSetInput struct { // set, and the size limit is 5 MB per attachment. Attachments []*Attachment `locationName:"attachments" type:"list" required:"true"` - metadataAddAttachmentsToSetInput `json:"-" xml:"-"` -} - -type metadataAddAttachmentsToSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -564,11 +560,7 @@ type AddAttachmentsToSetOutput struct { // The time and date when the attachment set expires. ExpiryTime *string `locationName:"expiryTime" type:"string"` - metadataAddAttachmentsToSetOutput `json:"-" xml:"-"` -} - -type metadataAddAttachmentsToSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -598,11 +590,7 @@ type AddCommunicationToCaseInput struct { // The body of an email communication to add to the support case. CommunicationBody *string `locationName:"communicationBody" type:"string" required:"true"` - metadataAddCommunicationToCaseInput `json:"-" xml:"-"` -} - -type metadataAddCommunicationToCaseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -620,11 +608,7 @@ type AddCommunicationToCaseOutput struct { // True if AddCommunicationToCase succeeds. Otherwise, returns an error. Result *bool `locationName:"result" type:"boolean"` - metadataAddCommunicationToCaseOutput `json:"-" xml:"-"` -} - -type metadataAddCommunicationToCaseOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -646,11 +630,7 @@ type Attachment struct { // The name of the attachment file. FileName *string `locationName:"fileName" type:"string"` - metadataAttachment `json:"-" xml:"-"` -} - -type metadataAttachment struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -672,11 +652,7 @@ type AttachmentDetails struct { // The file name of the attachment. FileName *string `locationName:"fileName" type:"string"` - metadataAttachmentDetails `json:"-" xml:"-"` -} - -type metadataAttachmentDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -753,11 +729,7 @@ type CaseDetails struct { // The time that the case was case created in the AWS Support Center. TimeCreated *string `locationName:"timeCreated" type:"string"` - metadataCaseDetails `json:"-" xml:"-"` -} - -type metadataCaseDetails struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -780,11 +752,7 @@ type Category struct { // The category name for the support case. Name *string `locationName:"name" type:"string"` - metadataCategory `json:"-" xml:"-"` -} - -type metadataCategory struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -817,11 +785,7 @@ type Communication struct { // The time the communication was created. TimeCreated *string `locationName:"timeCreated" type:"string"` - metadataCommunication `json:"-" xml:"-"` -} - -type metadataCommunication struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -871,11 +835,7 @@ type CreateCaseInput struct { // The title of the AWS Support case. Subject *string `locationName:"subject" type:"string" required:"true"` - metadataCreateCaseInput `json:"-" xml:"-"` -} - -type metadataCreateCaseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -895,11 +855,7 @@ type CreateCaseOutput struct { // an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47 CaseId *string `locationName:"caseId" type:"string"` - metadataCreateCaseOutput `json:"-" xml:"-"` -} - -type metadataCreateCaseOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -917,11 +873,7 @@ type DescribeAttachmentInput struct { // operation. AttachmentId *string `locationName:"attachmentId" type:"string" required:"true"` - metadataDescribeAttachmentInput `json:"-" xml:"-"` -} - -type metadataDescribeAttachmentInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -940,11 +892,7 @@ type DescribeAttachmentOutput struct { // The attachment content and file name. Attachment *Attachment `locationName:"attachment" type:"structure"` - metadataDescribeAttachmentOutput `json:"-" xml:"-"` -} - -type metadataDescribeAttachmentOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -992,11 +940,7 @@ type DescribeCasesInput struct { // A resumption point for pagination. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeCasesInput `json:"-" xml:"-"` -} - -type metadataDescribeCasesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1018,11 +962,7 @@ type DescribeCasesOutput struct { // A resumption point for pagination. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeCasesOutput `json:"-" xml:"-"` -} - -type metadataDescribeCasesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1054,11 +994,7 @@ type DescribeCommunicationsInput struct { // A resumption point for pagination. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeCommunicationsInput `json:"-" xml:"-"` -} - -type metadataDescribeCommunicationsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1079,11 +1015,7 @@ type DescribeCommunicationsOutput struct { // A resumption point for pagination. NextToken *string `locationName:"nextToken" type:"string"` - metadataDescribeCommunicationsOutput `json:"-" xml:"-"` -} - -type metadataDescribeCommunicationsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1105,11 +1037,7 @@ type DescribeServicesInput struct { // A JSON-formatted list of service codes available for AWS services. ServiceCodeList []*string `locationName:"serviceCodeList" type:"list"` - metadataDescribeServicesInput `json:"-" xml:"-"` -} - -type metadataDescribeServicesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1127,11 +1055,7 @@ type DescribeServicesOutput struct { // A JSON-formatted list of AWS services. Services []*Service `locationName:"services" type:"list"` - metadataDescribeServicesOutput `json:"-" xml:"-"` -} - -type metadataDescribeServicesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1150,11 +1074,7 @@ type DescribeSeverityLevelsInput struct { // must be passed explicitly for operations that take them. Language *string `locationName:"language" type:"string"` - metadataDescribeSeverityLevelsInput `json:"-" xml:"-"` -} - -type metadataDescribeSeverityLevelsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1173,11 +1093,7 @@ type DescribeSeverityLevelsOutput struct { // are defined by your service level agreement with AWS. SeverityLevels []*SeverityLevel `locationName:"severityLevels" type:"list"` - metadataDescribeSeverityLevelsOutput `json:"-" xml:"-"` -} - -type metadataDescribeSeverityLevelsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1194,11 +1110,7 @@ type DescribeTrustedAdvisorCheckRefreshStatusesInput struct { // The IDs of the Trusted Advisor checks. CheckIds []*string `locationName:"checkIds" type:"list" required:"true"` - metadataDescribeTrustedAdvisorCheckRefreshStatusesInput `json:"-" xml:"-"` -} - -type metadataDescribeTrustedAdvisorCheckRefreshStatusesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1217,11 +1129,7 @@ type DescribeTrustedAdvisorCheckRefreshStatusesOutput struct { // The refresh status of the specified Trusted Advisor checks. Statuses []*TrustedAdvisorCheckRefreshStatus `locationName:"statuses" type:"list" required:"true"` - metadataDescribeTrustedAdvisorCheckRefreshStatusesOutput `json:"-" xml:"-"` -} - -type metadataDescribeTrustedAdvisorCheckRefreshStatusesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1243,11 +1151,7 @@ type DescribeTrustedAdvisorCheckResultInput struct { // must be passed explicitly for operations that take them. Language *string `locationName:"language" type:"string"` - metadataDescribeTrustedAdvisorCheckResultInput `json:"-" xml:"-"` -} - -type metadataDescribeTrustedAdvisorCheckResultInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1266,11 +1170,7 @@ type DescribeTrustedAdvisorCheckResultOutput struct { // The detailed results of the Trusted Advisor check. Result *TrustedAdvisorCheckResult `locationName:"result" type:"structure"` - metadataDescribeTrustedAdvisorCheckResultOutput `json:"-" xml:"-"` -} - -type metadataDescribeTrustedAdvisorCheckResultOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1287,11 +1187,7 @@ type DescribeTrustedAdvisorCheckSummariesInput struct { // The IDs of the Trusted Advisor checks. CheckIds []*string `locationName:"checkIds" type:"list" required:"true"` - metadataDescribeTrustedAdvisorCheckSummariesInput `json:"-" xml:"-"` -} - -type metadataDescribeTrustedAdvisorCheckSummariesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1310,11 +1206,7 @@ type DescribeTrustedAdvisorCheckSummariesOutput struct { // The summary information for the requested Trusted Advisor checks. Summaries []*TrustedAdvisorCheckSummary `locationName:"summaries" type:"list" required:"true"` - metadataDescribeTrustedAdvisorCheckSummariesOutput `json:"-" xml:"-"` -} - -type metadataDescribeTrustedAdvisorCheckSummariesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1333,11 +1225,7 @@ type DescribeTrustedAdvisorChecksInput struct { // must be passed explicitly for operations that take them. Language *string `locationName:"language" type:"string" required:"true"` - metadataDescribeTrustedAdvisorChecksInput `json:"-" xml:"-"` -} - -type metadataDescribeTrustedAdvisorChecksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1356,11 +1244,7 @@ type DescribeTrustedAdvisorChecksOutput struct { // Information about all available Trusted Advisor checks. Checks []*TrustedAdvisorCheckDescription `locationName:"checks" type:"list" required:"true"` - metadataDescribeTrustedAdvisorChecksOutput `json:"-" xml:"-"` -} - -type metadataDescribeTrustedAdvisorChecksOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1381,11 +1265,7 @@ type RecentCaseCommunications struct { // A resumption point for pagination. NextToken *string `locationName:"nextToken" type:"string"` - metadataRecentCaseCommunications `json:"-" xml:"-"` -} - -type metadataRecentCaseCommunications struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1402,11 +1282,7 @@ type RefreshTrustedAdvisorCheckInput struct { // The unique identifier for the Trusted Advisor check. CheckId *string `locationName:"checkId" type:"string" required:"true"` - metadataRefreshTrustedAdvisorCheckInput `json:"-" xml:"-"` -} - -type metadataRefreshTrustedAdvisorCheckInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1425,11 +1301,7 @@ type RefreshTrustedAdvisorCheckOutput struct { // the check is eligible for refresh. Status *TrustedAdvisorCheckRefreshStatus `locationName:"status" type:"structure" required:"true"` - metadataRefreshTrustedAdvisorCheckOutput `json:"-" xml:"-"` -} - -type metadataRefreshTrustedAdvisorCheckOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1447,11 +1319,7 @@ type ResolveCaseInput struct { // an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47 CaseId *string `locationName:"caseId" type:"string"` - metadataResolveCaseInput `json:"-" xml:"-"` -} - -type metadataResolveCaseInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1472,11 +1340,7 @@ type ResolveCaseOutput struct { // The status of the case when the ResolveCase request was sent. InitialCaseStatus *string `locationName:"initialCaseStatus" type:"string"` - metadataResolveCaseOutput `json:"-" xml:"-"` -} - -type metadataResolveCaseOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1504,11 +1368,7 @@ type Service struct { // code. Name *string `locationName:"name" type:"string"` - metadataService `json:"-" xml:"-"` -} - -type metadataService struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1531,11 +1391,7 @@ type SeverityLevel struct { // The name of the severity level that corresponds to the severity level code. Name *string `locationName:"name" type:"string"` - metadataSeverityLevel `json:"-" xml:"-"` -} - -type metadataSeverityLevel struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1555,11 +1411,7 @@ type TrustedAdvisorCategorySpecificSummary struct { // is in the Cost Optimizing category. CostOptimizing *TrustedAdvisorCostOptimizingSummary `locationName:"costOptimizing" type:"structure"` - metadataTrustedAdvisorCategorySpecificSummary `json:"-" xml:"-"` -} - -type metadataTrustedAdvisorCategorySpecificSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1594,11 +1446,7 @@ type TrustedAdvisorCheckDescription struct { // The display name for the Trusted Advisor check. Name *string `locationName:"name" type:"string" required:"true"` - metadataTrustedAdvisorCheckDescription `json:"-" xml:"-"` -} - -type metadataTrustedAdvisorCheckDescription struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1624,11 +1472,7 @@ type TrustedAdvisorCheckRefreshStatus struct { // "none", "enqueued", "processing", "success", or "abandoned". Status *string `locationName:"status" type:"string" required:"true"` - metadataTrustedAdvisorCheckRefreshStatus `json:"-" xml:"-"` -} - -type metadataTrustedAdvisorCheckRefreshStatus struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1664,11 +1508,7 @@ type TrustedAdvisorCheckResult struct { // The time of the last refresh of the check. Timestamp *string `locationName:"timestamp" type:"string" required:"true"` - metadataTrustedAdvisorCheckResult `json:"-" xml:"-"` -} - -type metadataTrustedAdvisorCheckResult struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1705,11 +1545,7 @@ type TrustedAdvisorCheckSummary struct { // The time of the last refresh of the check. Timestamp *string `locationName:"timestamp" type:"string" required:"true"` - metadataTrustedAdvisorCheckSummary `json:"-" xml:"-"` -} - -type metadataTrustedAdvisorCheckSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1733,11 +1569,7 @@ type TrustedAdvisorCostOptimizingSummary struct { // actions are taken. EstimatedPercentMonthlySavings *float64 `locationName:"estimatedPercentMonthlySavings" type:"double" required:"true"` - metadataTrustedAdvisorCostOptimizingSummary `json:"-" xml:"-"` -} - -type metadataTrustedAdvisorCostOptimizingSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1772,11 +1604,7 @@ type TrustedAdvisorResourceDetail struct { // The status code for the resource identified in the Trusted Advisor check. Status *string `locationName:"status" type:"string" required:"true"` - metadataTrustedAdvisorResourceDetail `json:"-" xml:"-"` -} - -type metadataTrustedAdvisorResourceDetail struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1807,11 +1635,7 @@ type TrustedAdvisorResourcesSummary struct { // marked as suppressed by the user. ResourcesSuppressed *int64 `locationName:"resourcesSuppressed" type:"long" required:"true"` - metadataTrustedAdvisorResourcesSummary `json:"-" xml:"-"` -} - -type metadataTrustedAdvisorResourcesSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/swf/api.go b/service/swf/api.go index f9bf29a1397..21191c9395f 100644 --- a/service/swf/api.go +++ b/service/swf/api.go @@ -1593,11 +1593,7 @@ type ActivityTaskCancelRequestedEventAttributes struct { // back the chain of events leading up to this event. DecisionTaskCompletedEventId *int64 `locationName:"decisionTaskCompletedEventId" type:"long" required:"true"` - metadataActivityTaskCancelRequestedEventAttributes `json:"-" xml:"-"` -} - -type metadataActivityTaskCancelRequestedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1630,11 +1626,7 @@ type ActivityTaskCanceledEventAttributes struct { // back the chain of events leading up to this event. StartedEventId *int64 `locationName:"startedEventId" type:"long" required:"true"` - metadataActivityTaskCanceledEventAttributes `json:"-" xml:"-"` -} - -type metadataActivityTaskCanceledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1662,11 +1654,7 @@ type ActivityTaskCompletedEventAttributes struct { // back the chain of events leading up to this event. StartedEventId *int64 `locationName:"startedEventId" type:"long" required:"true"` - metadataActivityTaskCompletedEventAttributes `json:"-" xml:"-"` -} - -type metadataActivityTaskCompletedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1697,11 +1685,7 @@ type ActivityTaskFailedEventAttributes struct { // back the chain of events leading up to this event. StartedEventId *int64 `locationName:"startedEventId" type:"long" required:"true"` - metadataActivityTaskFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataActivityTaskFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1766,11 +1750,7 @@ type ActivityTaskScheduledEventAttributes struct { // in the Amazon Simple Workflow Developer Guide. TaskPriority *string `locationName:"taskPriority" type:"string"` - metadataActivityTaskScheduledEventAttributes `json:"-" xml:"-"` -} - -type metadataActivityTaskScheduledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1794,11 +1774,7 @@ type ActivityTaskStartedEventAttributes struct { // by tracing back the chain of events leading up to this event. ScheduledEventId *int64 `locationName:"scheduledEventId" type:"long" required:"true"` - metadataActivityTaskStartedEventAttributes `json:"-" xml:"-"` -} - -type metadataActivityTaskStartedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1830,11 +1806,7 @@ type ActivityTaskTimedOutEventAttributes struct { // The type of the timeout that caused this event. TimeoutType *string `locationName:"timeoutType" type:"string" required:"true" enum:"ActivityTaskTimeoutType"` - metadataActivityTaskTimedOutEventAttributes `json:"-" xml:"-"` -} - -type metadataActivityTaskTimedOutEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1861,11 +1833,7 @@ type ActivityType struct { // a domain. Version *string `locationName:"version" min:"1" type:"string" required:"true"` - metadataActivityType `json:"-" xml:"-"` -} - -type metadataActivityType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1937,11 +1905,7 @@ type ActivityTypeConfiguration struct { // 0. The value "NONE" can be used to specify unlimited duration. DefaultTaskStartToCloseTimeout *string `locationName:"defaultTaskStartToCloseTimeout" type:"string"` - metadataActivityTypeConfiguration `json:"-" xml:"-"` -} - -type metadataActivityTypeConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1971,11 +1935,7 @@ type ActivityTypeInfo struct { // The current status of the activity type. Status *string `locationName:"status" type:"string" required:"true" enum:"RegistrationStatus"` - metadataActivityTypeInfo `json:"-" xml:"-"` -} - -type metadataActivityTypeInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2007,11 +1967,7 @@ type CancelTimerDecisionAttributes struct { // Required. The unique ID of the timer to cancel. TimerId *string `locationName:"timerId" min:"1" type:"string" required:"true"` - metadataCancelTimerDecisionAttributes `json:"-" xml:"-"` -} - -type metadataCancelTimerDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2043,11 +1999,7 @@ type CancelTimerFailedEventAttributes struct { // The timerId provided in the CancelTimer decision that failed. TimerId *string `locationName:"timerId" min:"1" type:"string" required:"true"` - metadataCancelTimerFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataCancelTimerFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2079,11 +2031,7 @@ type CancelWorkflowExecutionDecisionAttributes struct { // Optional. details of the cancellation. Details *string `locationName:"details" type:"string"` - metadataCancelWorkflowExecutionDecisionAttributes `json:"-" xml:"-"` -} - -type metadataCancelWorkflowExecutionDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2112,11 +2060,7 @@ type CancelWorkflowExecutionFailedEventAttributes struct { // back the chain of events leading up to this event. DecisionTaskCompletedEventId *int64 `locationName:"decisionTaskCompletedEventId" type:"long" required:"true"` - metadataCancelWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataCancelWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2151,11 +2095,7 @@ type ChildWorkflowExecutionCanceledEventAttributes struct { // The type of the child workflow execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataChildWorkflowExecutionCanceledEventAttributes `json:"-" xml:"-"` -} - -type metadataChildWorkflowExecutionCanceledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2190,11 +2130,7 @@ type ChildWorkflowExecutionCompletedEventAttributes struct { // The type of the child workflow execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataChildWorkflowExecutionCompletedEventAttributes `json:"-" xml:"-"` -} - -type metadataChildWorkflowExecutionCompletedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2232,11 +2168,7 @@ type ChildWorkflowExecutionFailedEventAttributes struct { // The type of the child workflow execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataChildWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataChildWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2263,11 +2195,7 @@ type ChildWorkflowExecutionStartedEventAttributes struct { // The type of the child workflow execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataChildWorkflowExecutionStartedEventAttributes `json:"-" xml:"-"` -} - -type metadataChildWorkflowExecutionStartedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2299,11 +2227,7 @@ type ChildWorkflowExecutionTerminatedEventAttributes struct { // The type of the child workflow execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataChildWorkflowExecutionTerminatedEventAttributes `json:"-" xml:"-"` -} - -type metadataChildWorkflowExecutionTerminatedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2339,11 +2263,7 @@ type ChildWorkflowExecutionTimedOutEventAttributes struct { // The type of the child workflow execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataChildWorkflowExecutionTimedOutEventAttributes `json:"-" xml:"-"` -} - -type metadataChildWorkflowExecutionTimedOutEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2363,11 +2283,7 @@ type CloseStatusFilter struct { // for it to meet the criteria of this filter. Status *string `locationName:"status" type:"string" required:"true" enum:"CloseStatus"` - metadataCloseStatusFilter `json:"-" xml:"-"` -} - -type metadataCloseStatusFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2400,11 +2316,7 @@ type CompleteWorkflowExecutionDecisionAttributes struct { // defined. Result *string `locationName:"result" type:"string"` - metadataCompleteWorkflowExecutionDecisionAttributes `json:"-" xml:"-"` -} - -type metadataCompleteWorkflowExecutionDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2433,11 +2345,7 @@ type CompleteWorkflowExecutionFailedEventAttributes struct { // back the chain of events leading up to this event. DecisionTaskCompletedEventId *int64 `locationName:"decisionTaskCompletedEventId" type:"long" required:"true"` - metadataCompleteWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataCompleteWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2545,11 +2453,7 @@ type ContinueAsNewWorkflowExecutionDecisionAttributes struct { WorkflowTypeVersion *string `locationName:"workflowTypeVersion" min:"1" type:"string"` - metadataContinueAsNewWorkflowExecutionDecisionAttributes `json:"-" xml:"-"` -} - -type metadataContinueAsNewWorkflowExecutionDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2578,11 +2482,7 @@ type ContinueAsNewWorkflowExecutionFailedEventAttributes struct { // tracing back the chain of events leading up to this event. DecisionTaskCompletedEventId *int64 `locationName:"decisionTaskCompletedEventId" type:"long" required:"true"` - metadataContinueAsNewWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataContinueAsNewWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2640,11 +2540,7 @@ type CountClosedWorkflowExecutionsInput struct { // exclusive. You can specify at most one of these in a request. TypeFilter *WorkflowTypeFilter `locationName:"typeFilter" type:"structure"` - metadataCountClosedWorkflowExecutionsInput `json:"-" xml:"-"` -} - -type metadataCountClosedWorkflowExecutionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2685,11 +2581,7 @@ type CountOpenWorkflowExecutionsInput struct { // specify at most one of these in a request. TypeFilter *WorkflowTypeFilter `locationName:"typeFilter" type:"structure"` - metadataCountOpenWorkflowExecutionsInput `json:"-" xml:"-"` -} - -type metadataCountOpenWorkflowExecutionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2709,11 +2601,7 @@ type CountPendingActivityTasksInput struct { // The name of the task list. TaskList *TaskList `locationName:"taskList" type:"structure" required:"true"` - metadataCountPendingActivityTasksInput `json:"-" xml:"-"` -} - -type metadataCountPendingActivityTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2733,11 +2621,7 @@ type CountPendingDecisionTasksInput struct { // The name of the task list. TaskList *TaskList `locationName:"taskList" type:"structure" required:"true"` - metadataCountPendingDecisionTasksInput `json:"-" xml:"-"` -} - -type metadataCountPendingDecisionTasksInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2929,11 +2813,7 @@ type Decision struct { // types. StartTimerDecisionAttributes *StartTimerDecisionAttributes `locationName:"startTimerDecisionAttributes" type:"structure"` - metadataDecision `json:"-" xml:"-"` -} - -type metadataDecision struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2961,11 +2841,7 @@ type DecisionTaskCompletedEventAttributes struct { // back the chain of events leading up to this event. StartedEventId *int64 `locationName:"startedEventId" type:"long" required:"true"` - metadataDecisionTaskCompletedEventAttributes `json:"-" xml:"-"` -} - -type metadataDecisionTaskCompletedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3000,11 +2876,7 @@ type DecisionTaskScheduledEventAttributes struct { // in the Amazon Simple Workflow Developer Guide. TaskPriority *string `locationName:"taskPriority" type:"string"` - metadataDecisionTaskScheduledEventAttributes `json:"-" xml:"-"` -} - -type metadataDecisionTaskScheduledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3028,11 +2900,7 @@ type DecisionTaskStartedEventAttributes struct { // by tracing back the chain of events leading up to this event. ScheduledEventId *int64 `locationName:"scheduledEventId" type:"long" required:"true"` - metadataDecisionTaskStartedEventAttributes `json:"-" xml:"-"` -} - -type metadataDecisionTaskStartedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3060,11 +2928,7 @@ type DecisionTaskTimedOutEventAttributes struct { // The type of timeout that expired before the decision task could be completed. TimeoutType *string `locationName:"timeoutType" type:"string" required:"true" enum:"DecisionTaskTimeoutType"` - metadataDecisionTaskTimedOutEventAttributes `json:"-" xml:"-"` -} - -type metadataDecisionTaskTimedOutEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3084,11 +2948,7 @@ type DeprecateActivityTypeInput struct { // The name of the domain in which the activity type is registered. Domain *string `locationName:"domain" min:"1" type:"string" required:"true"` - metadataDeprecateActivityTypeInput `json:"-" xml:"-"` -} - -type metadataDeprecateActivityTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3102,11 +2962,7 @@ func (s DeprecateActivityTypeInput) GoString() string { } type DeprecateActivityTypeOutput struct { - metadataDeprecateActivityTypeOutput `json:"-" xml:"-"` -} - -type metadataDeprecateActivityTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3123,11 +2979,7 @@ type DeprecateDomainInput struct { // The name of the domain to deprecate. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataDeprecateDomainInput `json:"-" xml:"-"` -} - -type metadataDeprecateDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3141,11 +2993,7 @@ func (s DeprecateDomainInput) GoString() string { } type DeprecateDomainOutput struct { - metadataDeprecateDomainOutput `json:"-" xml:"-"` -} - -type metadataDeprecateDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3165,11 +3013,7 @@ type DeprecateWorkflowTypeInput struct { // The workflow type to deprecate. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataDeprecateWorkflowTypeInput `json:"-" xml:"-"` -} - -type metadataDeprecateWorkflowTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3183,11 +3027,7 @@ func (s DeprecateWorkflowTypeInput) GoString() string { } type DeprecateWorkflowTypeOutput struct { - metadataDeprecateWorkflowTypeOutput `json:"-" xml:"-"` -} - -type metadataDeprecateWorkflowTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3208,11 +3048,7 @@ type DescribeActivityTypeInput struct { // The name of the domain in which the activity type is registered. Domain *string `locationName:"domain" min:"1" type:"string" required:"true"` - metadataDescribeActivityTypeInput `json:"-" xml:"-"` -} - -type metadataDescribeActivityTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3241,11 +3077,7 @@ type DescribeActivityTypeOutput struct { // You cannot create new tasks of this type. TypeInfo *ActivityTypeInfo `locationName:"typeInfo" type:"structure" required:"true"` - metadataDescribeActivityTypeOutput `json:"-" xml:"-"` -} - -type metadataDescribeActivityTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3262,11 +3094,7 @@ type DescribeDomainInput struct { // The name of the domain to describe. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataDescribeDomainInput `json:"-" xml:"-"` -} - -type metadataDescribeDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3287,11 +3115,7 @@ type DescribeDomainOutput struct { // Contains general information about a domain. DomainInfo *DomainInfo `locationName:"domainInfo" type:"structure" required:"true"` - metadataDescribeDomainOutput `json:"-" xml:"-"` -} - -type metadataDescribeDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3311,11 +3135,7 @@ type DescribeWorkflowExecutionInput struct { // The workflow execution to describe. Execution *WorkflowExecution `locationName:"execution" type:"structure" required:"true"` - metadataDescribeWorkflowExecutionInput `json:"-" xml:"-"` -} - -type metadataDescribeWorkflowExecutionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3351,11 +3171,7 @@ type DescribeWorkflowExecutionOutput struct { // tasks of all types. OpenCounts *WorkflowExecutionOpenCounts `locationName:"openCounts" type:"structure" required:"true"` - metadataDescribeWorkflowExecutionOutput `json:"-" xml:"-"` -} - -type metadataDescribeWorkflowExecutionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3375,11 +3191,7 @@ type DescribeWorkflowTypeInput struct { // The workflow type to describe. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataDescribeWorkflowTypeInput `json:"-" xml:"-"` -} - -type metadataDescribeWorkflowTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3408,11 +3220,7 @@ type DescribeWorkflowTypeOutput struct { // You cannot create new workflow executions of this type. TypeInfo *WorkflowTypeInfo `locationName:"typeInfo" type:"structure" required:"true"` - metadataDescribeWorkflowTypeOutput `json:"-" xml:"-"` -} - -type metadataDescribeWorkflowTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3430,11 +3238,7 @@ type DomainConfiguration struct { // The retention period for workflow executions in this domain. WorkflowExecutionRetentionPeriodInDays *string `locationName:"workflowExecutionRetentionPeriodInDays" min:"1" type:"string" required:"true"` - metadataDomainConfiguration `json:"-" xml:"-"` -} - -type metadataDomainConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3463,11 +3267,7 @@ type DomainInfo struct { // in use. You should not create new workflow executions in this domain. Status *string `locationName:"status" type:"string" required:"true" enum:"RegistrationStatus"` - metadataDomainInfo `json:"-" xml:"-"` -} - -type metadataDomainInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3492,11 +3292,7 @@ type ExecutionTimeFilter struct { // Specifies the oldest start or close date and time to return. OldestDate *time.Time `locationName:"oldestDate" type:"timestamp" timestampFormat:"unix" required:"true"` - metadataExecutionTimeFilter `json:"-" xml:"-"` -} - -type metadataExecutionTimeFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3520,11 +3316,7 @@ type ExternalWorkflowExecutionCancelRequestedEventAttributes struct { // The external workflow execution to which the cancellation request was delivered. WorkflowExecution *WorkflowExecution `locationName:"workflowExecution" type:"structure" required:"true"` - metadataExternalWorkflowExecutionCancelRequestedEventAttributes `json:"-" xml:"-"` -} - -type metadataExternalWorkflowExecutionCancelRequestedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3548,11 +3340,7 @@ type ExternalWorkflowExecutionSignaledEventAttributes struct { // The external workflow execution that the signal was delivered to. WorkflowExecution *WorkflowExecution `locationName:"workflowExecution" type:"structure" required:"true"` - metadataExternalWorkflowExecutionSignaledEventAttributes `json:"-" xml:"-"` -} - -type metadataExternalWorkflowExecutionSignaledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3587,11 +3375,7 @@ type FailWorkflowExecutionDecisionAttributes struct { // A descriptive reason for the failure that may help in diagnostics. Reason *string `locationName:"reason" type:"string"` - metadataFailWorkflowExecutionDecisionAttributes `json:"-" xml:"-"` -} - -type metadataFailWorkflowExecutionDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3620,11 +3404,7 @@ type FailWorkflowExecutionFailedEventAttributes struct { // chain of events leading up to this event. DecisionTaskCompletedEventId *int64 `locationName:"decisionTaskCompletedEventId" type:"long" required:"true"` - metadataFailWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataFailWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3665,11 +3445,7 @@ type GetWorkflowExecutionHistoryInput struct { // are returned in ascending order of the eventTimeStamp of the events. ReverseOrder *bool `locationName:"reverseOrder" type:"boolean"` - metadataGetWorkflowExecutionHistoryInput `json:"-" xml:"-"` -} - -type metadataGetWorkflowExecutionHistoryInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3697,11 +3473,7 @@ type GetWorkflowExecutionHistoryOutput struct { // in a single call. NextPageToken *string `locationName:"nextPageToken" type:"string"` - metadataGetWorkflowExecutionHistoryOutput `json:"-" xml:"-"` -} - -type metadataGetWorkflowExecutionHistoryOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4040,11 +3812,7 @@ type HistoryEvent struct { // event types. WorkflowExecutionTimedOutEventAttributes *WorkflowExecutionTimedOutEventAttributes `locationName:"workflowExecutionTimedOutEventAttributes" type:"structure"` - metadataHistoryEvent `json:"-" xml:"-"` -} - -type metadataHistoryEvent struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4070,11 +3838,7 @@ type LambdaFunctionCompletedEventAttributes struct { // The ID of the LambdaFunctionStarted event recorded in the history. StartedEventId *int64 `locationName:"startedEventId" type:"long" required:"true"` - metadataLambdaFunctionCompletedEventAttributes `json:"-" xml:"-"` -} - -type metadataLambdaFunctionCompletedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4103,11 +3867,7 @@ type LambdaFunctionFailedEventAttributes struct { // The ID of the LambdaFunctionStarted event recorded in the history. StartedEventId *int64 `locationName:"startedEventId" type:"long" required:"true"` - metadataLambdaFunctionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataLambdaFunctionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4141,11 +3901,7 @@ type LambdaFunctionScheduledEventAttributes struct { // from start to close before it is marked as failed. StartToCloseTimeout *string `locationName:"startToCloseTimeout" type:"string"` - metadataLambdaFunctionScheduledEventAttributes `json:"-" xml:"-"` -} - -type metadataLambdaFunctionScheduledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4165,11 +3921,7 @@ type LambdaFunctionStartedEventAttributes struct { // problems by tracing back the chain of events leading up to this event. ScheduledEventId *int64 `locationName:"scheduledEventId" type:"long" required:"true"` - metadataLambdaFunctionStartedEventAttributes `json:"-" xml:"-"` -} - -type metadataLambdaFunctionStartedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4195,11 +3947,7 @@ type LambdaFunctionTimedOutEventAttributes struct { // The type of the timeout that caused this event. TimeoutType *string `locationName:"timeoutType" type:"string" enum:"LambdaFunctionTimeoutType"` - metadataLambdaFunctionTimedOutEventAttributes `json:"-" xml:"-"` -} - -type metadataLambdaFunctionTimedOutEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4243,11 +3991,7 @@ type ListActivityTypesInput struct { // are returned in ascending alphabetical order by name of the activity types. ReverseOrder *bool `locationName:"reverseOrder" type:"boolean"` - metadataListActivityTypesInput `json:"-" xml:"-"` -} - -type metadataListActivityTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4273,11 +4017,7 @@ type ListActivityTypesOutput struct { // List of activity type information. TypeInfos []*ActivityTypeInfo `locationName:"typeInfos" type:"list" required:"true"` - metadataListActivityTypesOutput `json:"-" xml:"-"` -} - -type metadataListActivityTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4360,11 +4100,7 @@ type ListClosedWorkflowExecutionsInput struct { // exclusive. You can specify at most one of these in a request. TypeFilter *WorkflowTypeFilter `locationName:"typeFilter" type:"structure"` - metadataListClosedWorkflowExecutionsInput `json:"-" xml:"-"` -} - -type metadataListClosedWorkflowExecutionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4402,11 +4138,7 @@ type ListDomainsInput struct { // are returned in ascending alphabetical order by name of the domains. ReverseOrder *bool `locationName:"reverseOrder" type:"boolean"` - metadataListDomainsInput `json:"-" xml:"-"` -} - -type metadataListDomainsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4432,11 +4164,7 @@ type ListDomainsOutput struct { // in a single call. NextPageToken *string `locationName:"nextPageToken" type:"string"` - metadataListDomainsOutput `json:"-" xml:"-"` -} - -type metadataListDomainsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4497,11 +4225,7 @@ type ListOpenWorkflowExecutionsInput struct { // specify at most one of these in a request. TypeFilter *WorkflowTypeFilter `locationName:"typeFilter" type:"structure"` - metadataListOpenWorkflowExecutionsInput `json:"-" xml:"-"` -} - -type metadataListOpenWorkflowExecutionsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4546,11 +4270,7 @@ type ListWorkflowTypesInput struct { // types. ReverseOrder *bool `locationName:"reverseOrder" type:"boolean"` - metadataListWorkflowTypesInput `json:"-" xml:"-"` -} - -type metadataListWorkflowTypesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4576,11 +4296,7 @@ type ListWorkflowTypesOutput struct { // The list of workflow type information. TypeInfos []*WorkflowTypeInfo `locationName:"typeInfos" type:"list" required:"true"` - metadataListWorkflowTypesOutput `json:"-" xml:"-"` -} - -type metadataListWorkflowTypesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4607,11 +4323,7 @@ type MarkerRecordedEventAttributes struct { // The name of the marker. MarkerName *string `locationName:"markerName" min:"1" type:"string" required:"true"` - metadataMarkerRecordedEventAttributes `json:"-" xml:"-"` -} - -type metadataMarkerRecordedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4633,11 +4345,7 @@ type PendingTaskCount struct { // supported by this API and the count returned is the truncated value. Truncated *bool `locationName:"truncated" type:"boolean"` - metadataPendingTaskCount `json:"-" xml:"-"` -} - -type metadataPendingTaskCount struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4667,11 +4375,7 @@ type PollForActivityTaskInput struct { // string quotarnquot. TaskList *TaskList `locationName:"taskList" type:"structure" required:"true"` - metadataPollForActivityTaskInput `json:"-" xml:"-"` -} - -type metadataPollForActivityTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4707,11 +4411,7 @@ type PollForActivityTaskOutput struct { // The workflow execution that started this activity task. WorkflowExecution *WorkflowExecution `locationName:"workflowExecution" type:"structure" required:"true"` - metadataPollForActivityTaskOutput `json:"-" xml:"-"` -} - -type metadataPollForActivityTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4767,11 +4467,7 @@ type PollForDecisionTaskInput struct { // string quotarnquot. TaskList *TaskList `locationName:"taskList" type:"structure" required:"true"` - metadataPollForDecisionTaskInput `json:"-" xml:"-"` -} - -type metadataPollForDecisionTaskInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4819,11 +4515,7 @@ type PollForDecisionTaskOutput struct { // The type of the workflow execution for which this decision task was created. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataPollForDecisionTaskOutput `json:"-" xml:"-"` -} - -type metadataPollForDecisionTaskOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4847,11 +4539,7 @@ type RecordActivityTaskHeartbeatInput struct { // be passed. This enables it to provide its progress and respond with results. TaskToken *string `locationName:"taskToken" min:"1" type:"string" required:"true"` - metadataRecordActivityTaskHeartbeatInput `json:"-" xml:"-"` -} - -type metadataRecordActivityTaskHeartbeatInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4869,11 +4557,7 @@ type RecordActivityTaskHeartbeatOutput struct { // Set to true if cancellation of the task is requested. CancelRequested *bool `locationName:"cancelRequested" type:"boolean" required:"true"` - metadataRecordActivityTaskHeartbeatOutput `json:"-" xml:"-"` -} - -type metadataRecordActivityTaskHeartbeatOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4908,11 +4592,7 @@ type RecordMarkerDecisionAttributes struct { // Required. The name of the marker. MarkerName *string `locationName:"markerName" min:"1" type:"string" required:"true"` - metadataRecordMarkerDecisionAttributes `json:"-" xml:"-"` -} - -type metadataRecordMarkerDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -4944,11 +4624,7 @@ type RecordMarkerFailedEventAttributes struct { // The marker's name. MarkerName *string `locationName:"markerName" min:"1" type:"string" required:"true"` - metadataRecordMarkerFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataRecordMarkerFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5037,11 +4713,7 @@ type RegisterActivityTypeInput struct { // it must not contain the literal string quotarnquot. Version *string `locationName:"version" min:"1" type:"string" required:"true"` - metadataRegisterActivityTypeInput `json:"-" xml:"-"` -} - -type metadataRegisterActivityTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5055,11 +4727,7 @@ func (s RegisterActivityTypeInput) GoString() string { } type RegisterActivityTypeOutput struct { - metadataRegisterActivityTypeOutput `json:"-" xml:"-"` -} - -type metadataRegisterActivityTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5098,11 +4766,7 @@ type RegisterDomainInput struct { // in the Amazon SWF Developer Guide. WorkflowExecutionRetentionPeriodInDays *string `locationName:"workflowExecutionRetentionPeriodInDays" min:"1" type:"string" required:"true"` - metadataRegisterDomainInput `json:"-" xml:"-"` -} - -type metadataRegisterDomainInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5116,11 +4780,7 @@ func (s RegisterDomainInput) GoString() string { } type RegisterDomainOutput struct { - metadataRegisterDomainOutput `json:"-" xml:"-"` -} - -type metadataRegisterDomainOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5217,11 +4877,7 @@ type RegisterWorkflowTypeInput struct { // Also, it must not contain the literal string quotarnquot. Version *string `locationName:"version" min:"1" type:"string" required:"true"` - metadataRegisterWorkflowTypeInput `json:"-" xml:"-"` -} - -type metadataRegisterWorkflowTypeInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5235,11 +4891,7 @@ func (s RegisterWorkflowTypeInput) GoString() string { } type RegisterWorkflowTypeOutput struct { - metadataRegisterWorkflowTypeOutput `json:"-" xml:"-"` -} - -type metadataRegisterWorkflowTypeOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5271,11 +4923,7 @@ type RequestCancelActivityTaskDecisionAttributes struct { // The activityId of the activity task to be canceled. ActivityId *string `locationName:"activityId" min:"1" type:"string" required:"true"` - metadataRequestCancelActivityTaskDecisionAttributes `json:"-" xml:"-"` -} - -type metadataRequestCancelActivityTaskDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5307,11 +4955,7 @@ type RequestCancelActivityTaskFailedEventAttributes struct { // back the chain of events leading up to this event. DecisionTaskCompletedEventId *int64 `locationName:"decisionTaskCompletedEventId" type:"long" required:"true"` - metadataRequestCancelActivityTaskFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataRequestCancelActivityTaskFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5350,11 +4994,7 @@ type RequestCancelExternalWorkflowExecutionDecisionAttributes struct { // Required. The workflowId of the external workflow execution to cancel. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataRequestCancelExternalWorkflowExecutionDecisionAttributes `json:"-" xml:"-"` -} - -type metadataRequestCancelExternalWorkflowExecutionDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5398,11 +5038,7 @@ type RequestCancelExternalWorkflowExecutionFailedEventAttributes struct { // be delivered. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataRequestCancelExternalWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataRequestCancelExternalWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5433,11 +5069,7 @@ type RequestCancelExternalWorkflowExecutionInitiatedEventAttributes struct { // The workflowId of the external workflow execution to be canceled. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataRequestCancelExternalWorkflowExecutionInitiatedEventAttributes `json:"-" xml:"-"` -} - -type metadataRequestCancelExternalWorkflowExecutionInitiatedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5460,11 +5092,7 @@ type RequestCancelWorkflowExecutionInput struct { // The workflowId of the workflow execution to cancel. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataRequestCancelWorkflowExecutionInput `json:"-" xml:"-"` -} - -type metadataRequestCancelWorkflowExecutionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5478,11 +5106,7 @@ func (s RequestCancelWorkflowExecutionInput) GoString() string { } type RequestCancelWorkflowExecutionOutput struct { - metadataRequestCancelWorkflowExecutionOutput `json:"-" xml:"-"` -} - -type metadataRequestCancelWorkflowExecutionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5506,11 +5130,7 @@ type RespondActivityTaskCanceledInput struct { // be passed. This enables it to provide its progress and respond with results. TaskToken *string `locationName:"taskToken" min:"1" type:"string" required:"true"` - metadataRespondActivityTaskCanceledInput `json:"-" xml:"-"` -} - -type metadataRespondActivityTaskCanceledInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5524,11 +5144,7 @@ func (s RespondActivityTaskCanceledInput) GoString() string { } type RespondActivityTaskCanceledOutput struct { - metadataRespondActivityTaskCanceledOutput `json:"-" xml:"-"` -} - -type metadataRespondActivityTaskCanceledOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5553,11 +5169,7 @@ type RespondActivityTaskCompletedInput struct { // be passed. This enables it to provide its progress and respond with results. TaskToken *string `locationName:"taskToken" min:"1" type:"string" required:"true"` - metadataRespondActivityTaskCompletedInput `json:"-" xml:"-"` -} - -type metadataRespondActivityTaskCompletedInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5571,11 +5183,7 @@ func (s RespondActivityTaskCompletedInput) GoString() string { } type RespondActivityTaskCompletedOutput struct { - metadataRespondActivityTaskCompletedOutput `json:"-" xml:"-"` -} - -type metadataRespondActivityTaskCompletedOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5602,11 +5210,7 @@ type RespondActivityTaskFailedInput struct { // be passed. This enables it to provide its progress and respond with results. TaskToken *string `locationName:"taskToken" min:"1" type:"string" required:"true"` - metadataRespondActivityTaskFailedInput `json:"-" xml:"-"` -} - -type metadataRespondActivityTaskFailedInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5620,11 +5224,7 @@ func (s RespondActivityTaskFailedInput) GoString() string { } type RespondActivityTaskFailedOutput struct { - metadataRespondActivityTaskFailedOutput `json:"-" xml:"-"` -} - -type metadataRespondActivityTaskFailedOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5652,11 +5252,7 @@ type RespondDecisionTaskCompletedInput struct { // be passed. This enables it to provide its progress and respond with results. TaskToken *string `locationName:"taskToken" min:"1" type:"string" required:"true"` - metadataRespondDecisionTaskCompletedInput `json:"-" xml:"-"` -} - -type metadataRespondDecisionTaskCompletedInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5670,11 +5266,7 @@ func (s RespondDecisionTaskCompletedInput) GoString() string { } type RespondDecisionTaskCompletedOutput struct { - metadataRespondDecisionTaskCompletedOutput `json:"-" xml:"-"` -} - -type metadataRespondDecisionTaskCompletedOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5796,11 +5388,7 @@ type ScheduleActivityTaskDecisionAttributes struct { // in the Amazon Simple Workflow Developer Guide. TaskPriority *string `locationName:"taskPriority" type:"string"` - metadataScheduleActivityTaskDecisionAttributes `json:"-" xml:"-"` -} - -type metadataScheduleActivityTaskDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5835,11 +5423,7 @@ type ScheduleActivityTaskFailedEventAttributes struct { // up to this event. DecisionTaskCompletedEventId *int64 `locationName:"decisionTaskCompletedEventId" type:"long" required:"true"` - metadataScheduleActivityTaskFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataScheduleActivityTaskFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5888,11 +5472,7 @@ type ScheduleLambdaFunctionDecisionAttributes struct { // If set, specifies the maximum duration the function may take to execute. StartToCloseTimeout *string `locationName:"startToCloseTimeout" type:"string"` - metadataScheduleLambdaFunctionDecisionAttributes `json:"-" xml:"-"` -} - -type metadataScheduleLambdaFunctionDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5927,11 +5507,7 @@ type ScheduleLambdaFunctionFailedEventAttributes struct { // The name of the scheduled AWS Lambda function. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataScheduleLambdaFunctionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataScheduleLambdaFunctionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -5978,11 +5554,7 @@ type SignalExternalWorkflowExecutionDecisionAttributes struct { // Required. The workflowId of the workflow execution to be signaled. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataSignalExternalWorkflowExecutionDecisionAttributes `json:"-" xml:"-"` -} - -type metadataSignalExternalWorkflowExecutionDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6027,11 +5599,7 @@ type SignalExternalWorkflowExecutionFailedEventAttributes struct { // delivered to. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataSignalExternalWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataSignalExternalWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6068,11 +5636,7 @@ type SignalExternalWorkflowExecutionInitiatedEventAttributes struct { // The workflowId of the external workflow execution. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataSignalExternalWorkflowExecutionInitiatedEventAttributes `json:"-" xml:"-"` -} - -type metadataSignalExternalWorkflowExecutionInitiatedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6102,11 +5666,7 @@ type SignalWorkflowExecutionInput struct { // The workflowId of the workflow execution to signal. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataSignalWorkflowExecutionInput `json:"-" xml:"-"` -} - -type metadataSignalWorkflowExecutionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6120,11 +5680,7 @@ func (s SignalWorkflowExecutionInput) GoString() string { } type SignalWorkflowExecutionOutput struct { - metadataSignalWorkflowExecutionOutput `json:"-" xml:"-"` -} - -type metadataSignalWorkflowExecutionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6254,11 +5810,7 @@ type StartChildWorkflowExecutionDecisionAttributes struct { // Required. The type of the workflow execution to be started. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataStartChildWorkflowExecutionDecisionAttributes `json:"-" xml:"-"` -} - -type metadataStartChildWorkflowExecutionDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6302,11 +5854,7 @@ type StartChildWorkflowExecutionFailedEventAttributes struct { // failed. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataStartChildWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataStartChildWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6387,11 +5935,7 @@ type StartChildWorkflowExecutionInitiatedEventAttributes struct { // The type of the child workflow execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataStartChildWorkflowExecutionInitiatedEventAttributes `json:"-" xml:"-"` -} - -type metadataStartChildWorkflowExecutionInitiatedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6422,11 +5966,7 @@ type StartLambdaFunctionFailedEventAttributes struct { // problems by tracing back the chain of events leading up to this event. ScheduledEventId *int64 `locationName:"scheduledEventId" type:"long"` - metadataStartLambdaFunctionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataStartLambdaFunctionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6473,11 +6013,7 @@ type StartTimerDecisionAttributes struct { // string quotarnquot. TimerId *string `locationName:"timerId" min:"1" type:"string" required:"true"` - metadataStartTimerDecisionAttributes `json:"-" xml:"-"` -} - -type metadataStartTimerDecisionAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6509,11 +6045,7 @@ type StartTimerFailedEventAttributes struct { // The timerId provided in the StartTimer decision that failed. TimerId *string `locationName:"timerId" min:"1" type:"string" required:"true"` - metadataStartTimerFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataStartTimerFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6634,11 +6166,7 @@ type StartWorkflowExecutionInput struct { // The type of the workflow to start. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataStartWorkflowExecutionInput `json:"-" xml:"-"` -} - -type metadataStartWorkflowExecutionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6657,11 +6185,7 @@ type StartWorkflowExecutionOutput struct { // can be used to uniquely identify the workflow execution within a domain. RunId *string `locationName:"runId" min:"1" type:"string"` - metadataStartWorkflowExecutionOutput `json:"-" xml:"-"` -} - -type metadataStartWorkflowExecutionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6680,11 +6204,7 @@ type TagFilter struct { // it to meet the filter criteria. Tag *string `locationName:"tag" min:"1" type:"string" required:"true"` - metadataTagFilter `json:"-" xml:"-"` -} - -type metadataTagFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6702,11 +6222,7 @@ type TaskList struct { // The name of the task list. Name *string `locationName:"name" min:"1" type:"string" required:"true"` - metadataTaskList `json:"-" xml:"-"` -} - -type metadataTaskList struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6753,11 +6269,7 @@ type TerminateWorkflowExecutionInput struct { // The workflowId of the workflow execution to terminate. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataTerminateWorkflowExecutionInput `json:"-" xml:"-"` -} - -type metadataTerminateWorkflowExecutionInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6771,11 +6283,7 @@ func (s TerminateWorkflowExecutionInput) GoString() string { } type TerminateWorkflowExecutionOutput struct { - metadataTerminateWorkflowExecutionOutput `json:"-" xml:"-"` -} - -type metadataTerminateWorkflowExecutionOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6804,11 +6312,7 @@ type TimerCanceledEventAttributes struct { // The unique ID of the timer that was canceled. TimerId *string `locationName:"timerId" min:"1" type:"string" required:"true"` - metadataTimerCanceledEventAttributes `json:"-" xml:"-"` -} - -type metadataTimerCanceledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6831,11 +6335,7 @@ type TimerFiredEventAttributes struct { // The unique ID of the timer that fired. TimerId *string `locationName:"timerId" min:"1" type:"string" required:"true"` - metadataTimerFiredEventAttributes `json:"-" xml:"-"` -} - -type metadataTimerFiredEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6869,11 +6369,7 @@ type TimerStartedEventAttributes struct { // The unique ID of the timer that was started. TimerId *string `locationName:"timerId" min:"1" type:"string" required:"true"` - metadataTimerStartedEventAttributes `json:"-" xml:"-"` -} - -type metadataTimerStartedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6894,11 +6390,7 @@ type WorkflowExecution struct { // The user defined identifier associated with the workflow execution. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataWorkflowExecution `json:"-" xml:"-"` -} - -type metadataWorkflowExecution struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6928,11 +6420,7 @@ type WorkflowExecutionCancelRequestedEventAttributes struct { // The external workflow execution for which the cancellation was requested. ExternalWorkflowExecution *WorkflowExecution `locationName:"externalWorkflowExecution" type:"structure"` - metadataWorkflowExecutionCancelRequestedEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionCancelRequestedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6956,11 +6444,7 @@ type WorkflowExecutionCanceledEventAttributes struct { // Details for the cancellation (if any). Details *string `locationName:"details" type:"string"` - metadataWorkflowExecutionCanceledEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionCanceledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -6984,11 +6468,7 @@ type WorkflowExecutionCompletedEventAttributes struct { // The result produced by the workflow execution upon successful completion. Result *string `locationName:"result" type:"string"` - metadataWorkflowExecutionCompletedEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionCompletedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7046,11 +6526,7 @@ type WorkflowExecutionConfiguration struct { // 0. The value "NONE" can be used to specify unlimited duration. TaskStartToCloseTimeout *string `locationName:"taskStartToCloseTimeout" min:"1" type:"string" required:"true"` - metadataWorkflowExecutionConfiguration `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7117,11 +6593,7 @@ type WorkflowExecutionContinuedAsNewEventAttributes struct { // Represents a workflow type. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataWorkflowExecutionContinuedAsNewEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionContinuedAsNewEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7144,11 +6616,7 @@ type WorkflowExecutionCount struct { // supported by this API and the count returned is the truncated value. Truncated *bool `locationName:"truncated" type:"boolean"` - metadataWorkflowExecutionCount `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionCount struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7175,11 +6643,7 @@ type WorkflowExecutionFailedEventAttributes struct { // The descriptive reason provided for the failure (if any). Reason *string `locationName:"reason" type:"string"` - metadataWorkflowExecutionFailedEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionFailedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7197,11 +6661,7 @@ type WorkflowExecutionFilter struct { // The workflowId to pass of match the criteria of this filter. WorkflowId *string `locationName:"workflowId" min:"1" type:"string" required:"true"` - metadataWorkflowExecutionFilter `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7256,11 +6716,7 @@ type WorkflowExecutionInfo struct { // The type of the workflow execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataWorkflowExecutionInfo `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7286,11 +6742,7 @@ type WorkflowExecutionInfos struct { // in a single call. NextPageToken *string `locationName:"nextPageToken" type:"string"` - metadataWorkflowExecutionInfos `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionInfos struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7323,11 +6775,7 @@ type WorkflowExecutionOpenCounts struct { // yet. OpenTimers *int64 `locationName:"openTimers" type:"integer" required:"true"` - metadataWorkflowExecutionOpenCounts `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionOpenCounts struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7362,11 +6810,7 @@ type WorkflowExecutionSignaledEventAttributes struct { // inputs to determine how to the process the signal. SignalName *string `locationName:"signalName" min:"1" type:"string" required:"true"` - metadataWorkflowExecutionSignaledEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionSignaledEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7442,11 +6886,7 @@ type WorkflowExecutionStartedEventAttributes struct { // The workflow type of this execution. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataWorkflowExecutionStartedEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionStartedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7483,11 +6923,7 @@ type WorkflowExecutionTerminatedEventAttributes struct { // The reason provided for the termination (if any). Reason *string `locationName:"reason" type:"string"` - metadataWorkflowExecutionTerminatedEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionTerminatedEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7516,11 +6952,7 @@ type WorkflowExecutionTimedOutEventAttributes struct { // The type of timeout that caused this event. TimeoutType *string `locationName:"timeoutType" type:"string" required:"true" enum:"WorkflowExecutionTimeoutType"` - metadataWorkflowExecutionTimedOutEventAttributes `json:"-" xml:"-"` -} - -type metadataWorkflowExecutionTimedOutEventAttributes struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7547,11 +6979,7 @@ type WorkflowType struct { // a domain. Version *string `locationName:"version" min:"1" type:"string" required:"true"` - metadataWorkflowType `json:"-" xml:"-"` -} - -type metadataWorkflowType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7625,11 +7053,7 @@ type WorkflowTypeConfiguration struct { // 0. The value "NONE" can be used to specify unlimited duration. DefaultTaskStartToCloseTimeout *string `locationName:"defaultTaskStartToCloseTimeout" type:"string"` - metadataWorkflowTypeConfiguration `json:"-" xml:"-"` -} - -type metadataWorkflowTypeConfiguration struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7651,11 +7075,7 @@ type WorkflowTypeFilter struct { // Version of the workflow type. Version *string `locationName:"version" type:"string"` - metadataWorkflowTypeFilter `json:"-" xml:"-"` -} - -type metadataWorkflowTypeFilter struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -7686,11 +7106,7 @@ type WorkflowTypeInfo struct { // The workflow type this information is about. WorkflowType *WorkflowType `locationName:"workflowType" type:"structure" required:"true"` - metadataWorkflowTypeInfo `json:"-" xml:"-"` -} - -type metadataWorkflowTypeInfo struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/waf/api.go b/service/waf/api.go index 733b754066b..daa9df6795d 100644 --- a/service/waf/api.go +++ b/service/waf/api.go @@ -1093,11 +1093,7 @@ type ActivatedRule struct { // RuleId is returned by CreateRule and by ListRules. RuleId *string `min:"1" type:"string" required:"true"` - metadataActivatedRule `json:"-" xml:"-"` -} - -type metadataActivatedRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1137,11 +1133,7 @@ type ByteMatchSet struct { // after you create a ByteMatchSet. Name *string `min:"1" type:"string"` - metadataByteMatchSet `json:"-" xml:"-"` -} - -type metadataByteMatchSet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1168,11 +1160,7 @@ type ByteMatchSetSummary struct { // after you create a ByteMatchSet. Name *string `min:"1" type:"string" required:"true"` - metadataByteMatchSetSummary `json:"-" xml:"-"` -} - -type metadataByteMatchSetSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1197,11 +1185,7 @@ type ByteMatchSetUpdate struct { // values in the ByteMatchTuple that you want to delete from the ByteMatchSet. ByteMatchTuple *ByteMatchTuple `type:"structure" required:"true"` - metadataByteMatchSetUpdate `json:"-" xml:"-"` -} - -type metadataByteMatchSetUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1342,11 +1326,7 @@ type ByteMatchTuple struct { // Specify NONE if you don't want to perform any text transformations. TextTransformation *string `type:"string" required:"true" enum:"TextTransformation"` - metadataByteMatchTuple `json:"-" xml:"-"` -} - -type metadataByteMatchTuple struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1367,11 +1347,7 @@ type CreateByteMatchSetInput struct { // after you create a ByteMatchSet. Name *string `min:"1" type:"string" required:"true"` - metadataCreateByteMatchSetInput `json:"-" xml:"-"` -} - -type metadataCreateByteMatchSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1393,11 +1369,7 @@ type CreateByteMatchSetOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataCreateByteMatchSetOutput `json:"-" xml:"-"` -} - -type metadataCreateByteMatchSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1418,11 +1390,7 @@ type CreateIPSetInput struct { // you create the IPSet. Name *string `min:"1" type:"string" required:"true"` - metadataCreateIPSetInput `json:"-" xml:"-"` -} - -type metadataCreateIPSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1444,11 +1412,7 @@ type CreateIPSetOutput struct { // The IPSet returned in the CreateIPSet response. IPSet *IPSet `type:"structure"` - metadataCreateIPSetOutput `json:"-" xml:"-"` -} - -type metadataCreateIPSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1475,11 +1439,7 @@ type CreateRuleInput struct { // a Rule after you create it. Name *string `min:"1" type:"string" required:"true"` - metadataCreateRuleInput `json:"-" xml:"-"` -} - -type metadataCreateRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1501,11 +1461,7 @@ type CreateRuleOutput struct { // The Rule returned in the CreateRule response. Rule *Rule `type:"structure"` - metadataCreateRuleOutput `json:"-" xml:"-"` -} - -type metadataCreateRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1527,11 +1483,7 @@ type CreateSqlInjectionMatchSetInput struct { // You can't change Name after you create the SqlInjectionMatchSet. Name *string `min:"1" type:"string" required:"true"` - metadataCreateSqlInjectionMatchSetInput `json:"-" xml:"-"` -} - -type metadataCreateSqlInjectionMatchSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1554,11 +1506,7 @@ type CreateSqlInjectionMatchSetOutput struct { // A SqlInjectionMatchSet. SqlInjectionMatchSet *SqlInjectionMatchSet `type:"structure"` - metadataCreateSqlInjectionMatchSetOutput `json:"-" xml:"-"` -} - -type metadataCreateSqlInjectionMatchSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1589,11 +1537,7 @@ type CreateWebACLInput struct { // you create the WebACL. Name *string `min:"1" type:"string" required:"true"` - metadataCreateWebACLInput `json:"-" xml:"-"` -} - -type metadataCreateWebACLInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1615,11 +1559,7 @@ type CreateWebACLOutput struct { // The WebACL returned in the CreateWebACL response. WebACL *WebACL `type:"structure"` - metadataCreateWebACLOutput `json:"-" xml:"-"` -} - -type metadataCreateWebACLOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1640,11 +1580,7 @@ type DeleteByteMatchSetInput struct { // The value returned by the most recent call to GetChangeToken. ChangeToken *string `type:"string" required:"true"` - metadataDeleteByteMatchSetInput `json:"-" xml:"-"` -} - -type metadataDeleteByteMatchSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1663,11 +1599,7 @@ type DeleteByteMatchSetOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataDeleteByteMatchSetOutput `json:"-" xml:"-"` -} - -type metadataDeleteByteMatchSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1688,11 +1620,7 @@ type DeleteIPSetInput struct { // CreateIPSet and by ListIPSets. IPSetId *string `min:"1" type:"string" required:"true"` - metadataDeleteIPSetInput `json:"-" xml:"-"` -} - -type metadataDeleteIPSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1711,11 +1639,7 @@ type DeleteIPSetOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataDeleteIPSetOutput `json:"-" xml:"-"` -} - -type metadataDeleteIPSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1736,11 +1660,7 @@ type DeleteRuleInput struct { // and by ListRules. RuleId *string `min:"1" type:"string" required:"true"` - metadataDeleteRuleInput `json:"-" xml:"-"` -} - -type metadataDeleteRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1759,11 +1679,7 @@ type DeleteRuleOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataDeleteRuleOutput `json:"-" xml:"-"` -} - -type metadataDeleteRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1785,11 +1701,7 @@ type DeleteSqlInjectionMatchSetInput struct { // SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets. SqlInjectionMatchSetId *string `min:"1" type:"string" required:"true"` - metadataDeleteSqlInjectionMatchSetInput `json:"-" xml:"-"` -} - -type metadataDeleteSqlInjectionMatchSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1809,11 +1721,7 @@ type DeleteSqlInjectionMatchSetOutput struct { // information, see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataDeleteSqlInjectionMatchSetOutput `json:"-" xml:"-"` -} - -type metadataDeleteSqlInjectionMatchSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1834,11 +1742,7 @@ type DeleteWebACLInput struct { // by CreateWebACL and by ListWebACLs. WebACLId *string `min:"1" type:"string" required:"true"` - metadataDeleteWebACLInput `json:"-" xml:"-"` -} - -type metadataDeleteWebACLInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1857,11 +1761,7 @@ type DeleteWebACLOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataDeleteWebACLOutput `json:"-" xml:"-"` -} - -type metadataDeleteWebACLOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1896,11 +1796,7 @@ type FieldToMatch struct { // a resource, for example, /images/daily-ad.jpg. Type *string `type:"string" required:"true" enum:"MatchFieldType"` - metadataFieldToMatch `json:"-" xml:"-"` -} - -type metadataFieldToMatch struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1918,11 +1814,7 @@ type GetByteMatchSetInput struct { // is returned by CreateByteMatchSet and by ListByteMatchSets. ByteMatchSetId *string `min:"1" type:"string" required:"true"` - metadataGetByteMatchSetInput `json:"-" xml:"-"` -} - -type metadataGetByteMatchSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1945,11 +1837,7 @@ type GetByteMatchSetOutput struct { // FieldToMatch: Contains Data and Type ByteMatchSet *ByteMatchSet `type:"structure"` - metadataGetByteMatchSetOutput `json:"-" xml:"-"` -} - -type metadataGetByteMatchSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1963,11 +1851,7 @@ func (s GetByteMatchSetOutput) GoString() string { } type GetChangeTokenInput struct { - metadataGetChangeTokenInput `json:"-" xml:"-"` -} - -type metadataGetChangeTokenInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1985,11 +1869,7 @@ type GetChangeTokenOutput struct { // request to get the current status of the request. ChangeToken *string `type:"string"` - metadataGetChangeTokenOutput `json:"-" xml:"-"` -} - -type metadataGetChangeTokenOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2007,11 +1887,7 @@ type GetChangeTokenStatusInput struct { // was previously returned in the GetChangeToken response. ChangeToken *string `type:"string" required:"true"` - metadataGetChangeTokenStatusInput `json:"-" xml:"-"` -} - -type metadataGetChangeTokenStatusInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2028,11 +1904,7 @@ type GetChangeTokenStatusOutput struct { // The status of the change token. ChangeTokenStatus *string `type:"string" enum:"ChangeTokenStatus"` - metadataGetChangeTokenStatusOutput `json:"-" xml:"-"` -} - -type metadataGetChangeTokenStatusOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2050,11 +1922,7 @@ type GetIPSetInput struct { // and by ListIPSets. IPSetId *string `min:"1" type:"string" required:"true"` - metadataGetIPSetInput `json:"-" xml:"-"` -} - -type metadataGetIPSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2076,11 +1944,7 @@ type GetIPSetOutput struct { // contains Type and Value IPSet *IPSet `type:"structure"` - metadataGetIPSetOutput `json:"-" xml:"-"` -} - -type metadataGetIPSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2098,11 +1962,7 @@ type GetRuleInput struct { // and by ListRules. RuleId *string `min:"1" type:"string" required:"true"` - metadataGetRuleInput `json:"-" xml:"-"` -} - -type metadataGetRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2123,11 +1983,7 @@ type GetRuleOutput struct { // Predicate: Each Predicate object contains DataId, Negated, and Type Rule *Rule `type:"structure"` - metadataGetRuleOutput `json:"-" xml:"-"` -} - -type metadataGetRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2165,11 +2021,7 @@ type GetSampledRequestsInput struct { // a sample of requests. WebAclId *string `min:"1" type:"string" required:"true"` - metadataGetSampledRequestsInput `json:"-" xml:"-"` -} - -type metadataGetSampledRequestsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2198,11 +2050,7 @@ type GetSampledRequestsOutput struct { // returns the time range for the first 5,000 requests. TimeWindow *TimeWindow `type:"structure"` - metadataGetSampledRequestsOutput `json:"-" xml:"-"` -} - -type metadataGetSampledRequestsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2221,11 +2069,7 @@ type GetSqlInjectionMatchSetInput struct { // SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets. SqlInjectionMatchSetId *string `min:"1" type:"string" required:"true"` - metadataGetSqlInjectionMatchSetInput `json:"-" xml:"-"` -} - -type metadataGetSqlInjectionMatchSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2249,11 +2093,7 @@ type GetSqlInjectionMatchSetOutput struct { // Data and Type SqlInjectionMatchSet *SqlInjectionMatchSet `type:"structure"` - metadataGetSqlInjectionMatchSetOutput `json:"-" xml:"-"` -} - -type metadataGetSqlInjectionMatchSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2271,11 +2111,7 @@ type GetWebACLInput struct { // CreateWebACL and by ListWebACLs. WebACLId *string `min:"1" type:"string" required:"true"` - metadataGetWebACLInput `json:"-" xml:"-"` -} - -type metadataGetWebACLInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2298,11 +2134,7 @@ type GetWebACLOutput struct { // and RuleId Action: Contains Type WebACL *WebACL `type:"structure"` - metadataGetWebACLOutput `json:"-" xml:"-"` -} - -type metadataGetWebACLOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2326,11 +2158,7 @@ type HTTPHeader struct { // The value of one of the headers in the sampled web request. Value *string `type:"string"` - metadataHTTPHeader `json:"-" xml:"-"` -} - -type metadataHTTPHeader struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2375,11 +2203,7 @@ type HTTPRequest struct { // The part of a web request that identifies the resource, for example, /images/daily-ad.jpg. URI *string `type:"string"` - metadataHTTPRequest `json:"-" xml:"-"` -} - -type metadataHTTPRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2421,11 +2245,7 @@ type IPSet struct { // an IPSet after you create it. Name *string `min:"1" type:"string"` - metadataIPSet `json:"-" xml:"-"` -} - -type metadataIPSet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2456,11 +2276,7 @@ type IPSetDescriptor struct { // Inter-Domain Routing (https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing). Value *string `type:"string" required:"true"` - metadataIPSetDescriptor `json:"-" xml:"-"` -} - -type metadataIPSetDescriptor struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2483,11 +2299,7 @@ type IPSetSummary struct { // an IPSet after you create it. Name *string `min:"1" type:"string" required:"true"` - metadataIPSetSummary `json:"-" xml:"-"` -} - -type metadataIPSetSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2509,11 +2321,7 @@ type IPSetUpdate struct { // web requests originate from. IPSetDescriptor *IPSetDescriptor `type:"structure" required:"true"` - metadataIPSetUpdate `json:"-" xml:"-"` -} - -type metadataIPSetUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2540,11 +2348,7 @@ type ListByteMatchSetsInput struct { // response to get information about another batch of ByteMatchSets. NextMarker *string `min:"1" type:"string"` - metadataListByteMatchSetsInput `json:"-" xml:"-"` -} - -type metadataListByteMatchSetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2568,11 +2372,7 @@ type ListByteMatchSetsOutput struct { // the next request. NextMarker *string `min:"1" type:"string"` - metadataListByteMatchSetsOutput `json:"-" xml:"-"` -} - -type metadataListByteMatchSetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2599,11 +2399,7 @@ type ListIPSetsInput struct { // information about another batch of ByteMatchSets. NextMarker *string `min:"1" type:"string"` - metadataListIPSetsInput `json:"-" xml:"-"` -} - -type metadataListIPSetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2626,11 +2422,7 @@ type ListIPSetsOutput struct { // from the response in the NextMarker value in the next request. NextMarker *string `min:"1" type:"string"` - metadataListIPSetsOutput `json:"-" xml:"-"` -} - -type metadataListIPSetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2656,11 +2448,7 @@ type ListRulesInput struct { // about another batch of Rules. NextMarker *string `min:"1" type:"string"` - metadataListRulesInput `json:"-" xml:"-"` -} - -type metadataListRulesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2683,11 +2471,7 @@ type ListRulesOutput struct { // An array of RuleSummary objects. Rules []*RuleSummary `type:"list"` - metadataListRulesOutput `json:"-" xml:"-"` -} - -type metadataListRulesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2716,11 +2500,7 @@ type ListSqlInjectionMatchSetsInput struct { // from the previous response to get information about another batch of SqlInjectionMatchSets. NextMarker *string `min:"1" type:"string"` - metadataListSqlInjectionMatchSetsInput `json:"-" xml:"-"` -} - -type metadataListSqlInjectionMatchSetsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2745,11 +2525,7 @@ type ListSqlInjectionMatchSetsOutput struct { // An array of SqlInjectionMatchSetSummary objects. SqlInjectionMatchSets []*SqlInjectionMatchSetSummary `type:"list"` - metadataListSqlInjectionMatchSetsOutput `json:"-" xml:"-"` -} - -type metadataListSqlInjectionMatchSetsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2777,11 +2553,7 @@ type ListWebACLsInput struct { // objects. NextMarker *string `min:"1" type:"string"` - metadataListWebACLsInput `json:"-" xml:"-"` -} - -type metadataListWebACLsInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2804,11 +2576,7 @@ type ListWebACLsOutput struct { // An array of WebACLSummary objects. WebACLs []*WebACLSummary `type:"list"` - metadataListWebACLsOutput `json:"-" xml:"-"` -} - -type metadataListWebACLsOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2844,11 +2612,7 @@ type Predicate struct { // The type of predicate in a Rule, such as ByteMatchSet or IPSet. Type *string `type:"string" required:"true" enum:"PredicateType"` - metadataPredicate `json:"-" xml:"-"` -} - -type metadataPredicate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2889,11 +2653,7 @@ type Rule struct { // RuleId is returned by CreateRule and by ListRules. RuleId *string `min:"1" type:"string" required:"true"` - metadataRule `json:"-" xml:"-"` -} - -type metadataRule struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2920,11 +2680,7 @@ type RuleSummary struct { // RuleId is returned by CreateRule and by ListRules. RuleId *string `min:"1" type:"string" required:"true"` - metadataRuleSummary `json:"-" xml:"-"` -} - -type metadataRuleSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2947,11 +2703,7 @@ type RuleUpdate struct { // The ID of the Predicate (such as an IPSet) that you want to add to a Rule. Predicate *Predicate `type:"structure" required:"true"` - metadataRuleUpdate `json:"-" xml:"-"` -} - -type metadataRuleUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -2985,11 +2737,7 @@ type SampledHTTPRequest struct { // of 1. Weight *int64 `type:"long" required:"true"` - metadataSampledHTTPRequest `json:"-" xml:"-"` -} - -type metadataSampledHTTPRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3026,11 +2774,7 @@ type SqlInjectionMatchSet struct { // of malicious SQL code. SqlInjectionMatchTuples []*SqlInjectionMatchTuple `type:"list" required:"true"` - metadataSqlInjectionMatchSet `json:"-" xml:"-"` -} - -type metadataSqlInjectionMatchSet struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3058,11 +2802,7 @@ type SqlInjectionMatchSetSummary struct { // ListSqlInjectionMatchSets. SqlInjectionMatchSetId *string `min:"1" type:"string" required:"true"` - metadataSqlInjectionMatchSetSummary `json:"-" xml:"-"` -} - -type metadataSqlInjectionMatchSetSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3088,11 +2828,7 @@ type SqlInjectionMatchSetUpdate struct { // the name of the header. SqlInjectionMatchTuple *SqlInjectionMatchTuple `type:"structure" required:"true"` - metadataSqlInjectionMatchSetUpdate `json:"-" xml:"-"` -} - -type metadataSqlInjectionMatchSetUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3159,11 +2895,7 @@ type SqlInjectionMatchTuple struct { // Specify NONE if you don't want to perform any text transformations. TextTransformation *string `type:"string" required:"true" enum:"TextTransformation"` - metadataSqlInjectionMatchTuple `json:"-" xml:"-"` -} - -type metadataSqlInjectionMatchTuple struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3197,11 +2929,7 @@ type TimeWindow struct { // specify any time range in the previous three hours. StartTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"` - metadataTimeWindow `json:"-" xml:"-"` -} - -type metadataTimeWindow struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3230,11 +2958,7 @@ type UpdateByteMatchSetInput struct { // FieldToMatch: Contains Data and Type Updates []*ByteMatchSetUpdate `type:"list" required:"true"` - metadataUpdateByteMatchSetInput `json:"-" xml:"-"` -} - -type metadataUpdateByteMatchSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3253,11 +2977,7 @@ type UpdateByteMatchSetOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataUpdateByteMatchSetOutput `json:"-" xml:"-"` -} - -type metadataUpdateByteMatchSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3285,11 +3005,7 @@ type UpdateIPSetInput struct { // Type and Value Updates []*IPSetUpdate `type:"list" required:"true"` - metadataUpdateIPSetInput `json:"-" xml:"-"` -} - -type metadataUpdateIPSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3308,11 +3024,7 @@ type UpdateIPSetOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataUpdateIPSetOutput `json:"-" xml:"-"` -} - -type metadataUpdateIPSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3340,11 +3052,7 @@ type UpdateRuleInput struct { // Negated, and Type FieldToMatch: Contains Data and Type Updates []*RuleUpdate `type:"list" required:"true"` - metadataUpdateRuleInput `json:"-" xml:"-"` -} - -type metadataUpdateRuleInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3363,11 +3071,7 @@ type UpdateRuleOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataUpdateRuleOutput `json:"-" xml:"-"` -} - -type metadataUpdateRuleOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3398,11 +3102,7 @@ type UpdateSqlInjectionMatchSetInput struct { // FieldToMatch: Contains Data and Type Updates []*SqlInjectionMatchSetUpdate `type:"list" required:"true"` - metadataUpdateSqlInjectionMatchSetInput `json:"-" xml:"-"` -} - -type metadataUpdateSqlInjectionMatchSetInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3422,11 +3122,7 @@ type UpdateSqlInjectionMatchSetOutput struct { // information, see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataUpdateSqlInjectionMatchSetOutput `json:"-" xml:"-"` -} - -type metadataUpdateSqlInjectionMatchSetOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3463,11 +3159,7 @@ type UpdateWebACLInput struct { // by CreateWebACL and by ListWebACLs. WebACLId *string `min:"1" type:"string" required:"true"` - metadataUpdateWebACLInput `json:"-" xml:"-"` -} - -type metadataUpdateWebACLInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3486,11 +3178,7 @@ type UpdateWebACLOutput struct { // see GetChangeTokenStatus. ChangeToken *string `type:"string"` - metadataUpdateWebACLOutput `json:"-" xml:"-"` -} - -type metadataUpdateWebACLOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3519,11 +3207,7 @@ type WafAction struct { // for a WebACL. Type *string `type:"string" required:"true" enum:"WafActionType"` - metadataWafAction `json:"-" xml:"-"` -} - -type metadataWafAction struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3566,11 +3250,7 @@ type WebACL struct { // WebACLId is returned by CreateWebACL and by ListWebACLs. WebACLId *string `min:"1" type:"string" required:"true"` - metadataWebACL `json:"-" xml:"-"` -} - -type metadataWebACL struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3596,11 +3276,7 @@ type WebACLSummary struct { // WebACLId is returned by CreateWebACL and by ListWebACLs. WebACLId *string `min:"1" type:"string" required:"true"` - metadataWebACLSummary `json:"-" xml:"-"` -} - -type metadataWebACLSummary struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -3627,11 +3303,7 @@ type WebACLUpdate struct { // in the WebACLUpdate data type. ActivatedRule *ActivatedRule `type:"structure" required:"true"` - metadataWebACLUpdate `json:"-" xml:"-"` -} - -type metadataWebACLUpdate struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation diff --git a/service/workspaces/api.go b/service/workspaces/api.go index 851bf520fbe..6cd06b10829 100644 --- a/service/workspaces/api.go +++ b/service/workspaces/api.go @@ -300,11 +300,7 @@ type ComputeType struct { // The name of the compute type for the bundle. Name *string `type:"string" enum:"Compute"` - metadataComputeType `json:"-" xml:"-"` -} - -type metadataComputeType struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -322,11 +318,7 @@ type CreateWorkspacesInput struct { // An array of structures that specify the WorkSpaces to create. Workspaces []*WorkspaceRequest `min:"1" type:"list" required:"true"` - metadataCreateWorkspacesInput `json:"-" xml:"-"` -} - -type metadataCreateWorkspacesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -351,11 +343,7 @@ type CreateWorkspacesOutput struct { // this identifier, no information will be returned. PendingRequests []*Workspace `type:"list"` - metadataCreateWorkspacesOutput `json:"-" xml:"-"` -} - -type metadataCreateWorkspacesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -388,11 +376,7 @@ type DefaultWorkspaceCreationProperties struct { // The WorkSpace user is an administrator on the WorkSpace. UserEnabledAsLocalAdministrator *bool `type:"boolean"` - metadataDefaultWorkspaceCreationProperties `json:"-" xml:"-"` -} - -type metadataDefaultWorkspaceCreationProperties struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -424,11 +408,7 @@ type DescribeWorkspaceBundlesInput struct { // AMAZON - Retrieves the bundles that are provided by AWS. Owner *string `type:"string"` - metadataDescribeWorkspaceBundlesInput `json:"-" xml:"-"` -} - -type metadataDescribeWorkspaceBundlesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -451,11 +431,7 @@ type DescribeWorkspaceBundlesOutput struct { // of items. This token is valid for one day and must be used within that timeframe. NextToken *string `min:"1" type:"string"` - metadataDescribeWorkspaceBundlesOutput `json:"-" xml:"-"` -} - -type metadataDescribeWorkspaceBundlesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -478,11 +454,7 @@ type DescribeWorkspaceDirectoriesInput struct { // this is the first call. NextToken *string `min:"1" type:"string"` - metadataDescribeWorkspaceDirectoriesInput `json:"-" xml:"-"` -} - -type metadataDescribeWorkspaceDirectoriesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -505,11 +477,7 @@ type DescribeWorkspaceDirectoriesOutput struct { // of items. This token is valid for one day and must be used within that timeframe. NextToken *string `min:"1" type:"string"` - metadataDescribeWorkspaceDirectoriesOutput `json:"-" xml:"-"` -} - -type metadataDescribeWorkspaceDirectoriesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -554,11 +522,7 @@ type DescribeWorkspacesInput struct { // DescribeWorkspaces with this identifier, no information will be returned. WorkspaceIds []*string `min:"1" type:"list"` - metadataDescribeWorkspacesInput `json:"-" xml:"-"` -} - -type metadataDescribeWorkspacesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -584,11 +548,7 @@ type DescribeWorkspacesOutput struct { // may be incomplete for a newly-created WorkSpace. Workspaces []*Workspace `type:"list"` - metadataDescribeWorkspacesOutput `json:"-" xml:"-"` -} - -type metadataDescribeWorkspacesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -613,11 +573,7 @@ type FailedCreateWorkspaceRequest struct { // that could not be created. WorkspaceRequest *WorkspaceRequest `type:"structure"` - metadataFailedCreateWorkspaceRequest `json:"-" xml:"-"` -} - -type metadataFailedCreateWorkspaceRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -642,11 +598,7 @@ type FailedWorkspaceChangeRequest struct { // The identifier of the WorkSpace. WorkspaceId *string `type:"string"` - metadataFailedWorkspaceChangeRequest `json:"-" xml:"-"` -} - -type metadataFailedWorkspaceChangeRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -665,11 +617,7 @@ type RebootRequest struct { // The identifier of the WorkSpace to reboot. WorkspaceId *string `type:"string" required:"true"` - metadataRebootRequest `json:"-" xml:"-"` -} - -type metadataRebootRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -687,11 +635,7 @@ type RebootWorkspacesInput struct { // An array of structures that specify the WorkSpaces to reboot. RebootWorkspaceRequests []*RebootRequest `min:"1" type:"list" required:"true"` - metadataRebootWorkspacesInput `json:"-" xml:"-"` -} - -type metadataRebootWorkspacesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -709,11 +653,7 @@ type RebootWorkspacesOutput struct { // An array of structures that represent any WorkSpaces that could not be rebooted. FailedRequests []*FailedWorkspaceChangeRequest `type:"list"` - metadataRebootWorkspacesOutput `json:"-" xml:"-"` -} - -type metadataRebootWorkspacesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -732,11 +672,7 @@ type RebuildRequest struct { // The identifier of the WorkSpace to rebuild. WorkspaceId *string `type:"string" required:"true"` - metadataRebuildRequest `json:"-" xml:"-"` -} - -type metadataRebuildRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -754,11 +690,7 @@ type RebuildWorkspacesInput struct { // An array of structures that specify the WorkSpaces to rebuild. RebuildWorkspaceRequests []*RebuildRequest `min:"1" type:"list" required:"true"` - metadataRebuildWorkspacesInput `json:"-" xml:"-"` -} - -type metadataRebuildWorkspacesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -776,11 +708,7 @@ type RebuildWorkspacesOutput struct { // An array of structures that represent any WorkSpaces that could not be rebuilt. FailedRequests []*FailedWorkspaceChangeRequest `type:"list"` - metadataRebuildWorkspacesOutput `json:"-" xml:"-"` -} - -type metadataRebuildWorkspacesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -799,11 +727,7 @@ type TerminateRequest struct { // The identifier of the WorkSpace to terminate. WorkspaceId *string `type:"string" required:"true"` - metadataTerminateRequest `json:"-" xml:"-"` -} - -type metadataTerminateRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -821,11 +745,7 @@ type TerminateWorkspacesInput struct { // An array of structures that specify the WorkSpaces to terminate. TerminateWorkspaceRequests []*TerminateRequest `min:"1" type:"list" required:"true"` - metadataTerminateWorkspacesInput `json:"-" xml:"-"` -} - -type metadataTerminateWorkspacesInput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -843,11 +763,7 @@ type TerminateWorkspacesOutput struct { // An array of structures that represent any WorkSpaces that could not be terminated. FailedRequests []*FailedWorkspaceChangeRequest `type:"list"` - metadataTerminateWorkspacesOutput `json:"-" xml:"-"` -} - -type metadataTerminateWorkspacesOutput struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -865,11 +781,7 @@ type UserStorage struct { // The amount of user storage for the bundle. Capacity *string `min:"1" type:"string"` - metadataUserStorage `json:"-" xml:"-"` -} - -type metadataUserStorage struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -925,11 +837,7 @@ type Workspace struct { // The identifier of the WorkSpace. WorkspaceId *string `type:"string"` - metadataWorkspace `json:"-" xml:"-"` -} - -type metadataWorkspace struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -964,11 +872,7 @@ type WorkspaceBundle struct { // contains. UserStorage *UserStorage `type:"structure"` - metadataWorkspaceBundle `json:"-" xml:"-"` -} - -type metadataWorkspaceBundle struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1025,11 +929,7 @@ type WorkspaceDirectory struct { // The identifier of the security group that is assigned to new WorkSpaces. WorkspaceSecurityGroupId *string `type:"string"` - metadataWorkspaceDirectory `json:"-" xml:"-"` -} - -type metadataWorkspaceDirectory struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation @@ -1067,11 +967,7 @@ type WorkspaceRequest struct { // The KMS key used to encrypt data stored on your WorkSpace. VolumeEncryptionKey *string `type:"string"` - metadataWorkspaceRequest `json:"-" xml:"-"` -} - -type metadataWorkspaceRequest struct { - SDKShapeTraits bool `type:"structure"` + _ struct{} `type:"structure"` } // String returns the string representation