Skip to content

Commit 01077b0

Browse files
author
AWS SDK for Go v2 automation user
committed
Update API model
1 parent def1175 commit 01077b0

File tree

9 files changed

+1514
-108
lines changed

9 files changed

+1514
-108
lines changed

codegen/sdk-codegen/aws-models/appintegrations.json

+786-24
Large diffs are not rendered by default.

codegen/sdk-codegen/aws-models/apprunner.json

+25-9
Large diffs are not rendered by default.

codegen/sdk-codegen/aws-models/codedeploy.json

+46-46
Large diffs are not rendered by default.

codegen/sdk-codegen/aws-models/connect.json

+189-7
Large diffs are not rendered by default.

codegen/sdk-codegen/aws-models/dynamodb.json

+97-1
Original file line numberDiff line numberDiff line change
@@ -5246,6 +5246,18 @@
52465246
"traits": {
52475247
"smithy.api#documentation": "<p>The number of items exported.</p>"
52485248
}
5249+
},
5250+
"ExportType": {
5251+
"target": "com.amazonaws.dynamodb#ExportType",
5252+
"traits": {
5253+
"smithy.api#documentation": "<p>Choice of whether to execute as a full export or incremental export. Valid values are <code>FULL_EXPORT</code> or <code>INCREMENTAL_EXPORT</code>. If <code>INCREMENTAL_EXPORT</code> is provided, the <code>IncrementalExportSpecification</code> must also be used.</p>"
5254+
}
5255+
},
5256+
"IncrementalExportSpecification": {
5257+
"target": "com.amazonaws.dynamodb#IncrementalExportSpecification",
5258+
"traits": {
5259+
"smithy.api#documentation": "<p>Optional object containing the parameters specific to an incremental export.</p>"
5260+
}
52495261
}
52505262
},
52515263
"traits": {
@@ -5272,6 +5284,9 @@
52725284
}
52735285
}
52745286
},
5287+
"com.amazonaws.dynamodb#ExportFromTime": {
5288+
"type": "timestamp"
5289+
},
52755290
"com.amazonaws.dynamodb#ExportManifest": {
52765291
"type": "string"
52775292
},
@@ -5336,6 +5351,12 @@
53365351
"traits": {
53375352
"smithy.api#documentation": "<p>Export can be in one of the following states: IN_PROGRESS, COMPLETED, or\n FAILED.</p>"
53385353
}
5354+
},
5355+
"ExportType": {
5356+
"target": "com.amazonaws.dynamodb#ExportType",
5357+
"traits": {
5358+
"smithy.api#documentation": "<p>Choice of whether to execute as a full export or incremental export. Valid values are <code>FULL_EXPORT</code> or <code>INCREMENTAL_EXPORT</code>. If <code>INCREMENTAL_EXPORT</code> is provided, the <code>IncrementalExportSpecification</code> must also be used.</p>"
5359+
}
53395360
}
53405361
},
53415362
"traits": {
@@ -5433,6 +5454,18 @@
54335454
"traits": {
54345455
"smithy.api#documentation": "<p>The format for the exported data. Valid values for <code>ExportFormat</code> are\n <code>DYNAMODB_JSON</code> or <code>ION</code>.</p>"
54355456
}
5457+
},
5458+
"ExportType": {
5459+
"target": "com.amazonaws.dynamodb#ExportType",
5460+
"traits": {
5461+
"smithy.api#documentation": "<p>Choice of whether to execute as a full export or incremental export. Valid values are <code>FULL_EXPORT</code> or <code>INCREMENTAL_EXPORT</code>. If <code>INCREMENTAL_EXPORT</code> is provided, the <code>IncrementalExportSpecification</code> must also be used.</p>"
5462+
}
5463+
},
5464+
"IncrementalExportSpecification": {
5465+
"target": "com.amazonaws.dynamodb#IncrementalExportSpecification",
5466+
"traits": {
5467+
"smithy.api#documentation": "<p>Optional object containing the parameters specific to an incremental export.</p>"
5468+
}
54365469
}
54375470
},
54385471
"traits": {
@@ -5456,6 +5489,43 @@
54565489
"com.amazonaws.dynamodb#ExportTime": {
54575490
"type": "timestamp"
54585491
},
5492+
"com.amazonaws.dynamodb#ExportToTime": {
5493+
"type": "timestamp"
5494+
},
5495+
"com.amazonaws.dynamodb#ExportType": {
5496+
"type": "enum",
5497+
"members": {
5498+
"FULL_EXPORT": {
5499+
"target": "smithy.api#Unit",
5500+
"traits": {
5501+
"smithy.api#enumValue": "FULL_EXPORT"
5502+
}
5503+
},
5504+
"INCREMENTAL_EXPORT": {
5505+
"target": "smithy.api#Unit",
5506+
"traits": {
5507+
"smithy.api#enumValue": "INCREMENTAL_EXPORT"
5508+
}
5509+
}
5510+
}
5511+
},
5512+
"com.amazonaws.dynamodb#ExportViewType": {
5513+
"type": "enum",
5514+
"members": {
5515+
"NEW_IMAGE": {
5516+
"target": "smithy.api#Unit",
5517+
"traits": {
5518+
"smithy.api#enumValue": "NEW_IMAGE"
5519+
}
5520+
},
5521+
"NEW_AND_OLD_IMAGES": {
5522+
"target": "smithy.api#Unit",
5523+
"traits": {
5524+
"smithy.api#enumValue": "NEW_AND_OLD_IMAGES"
5525+
}
5526+
}
5527+
}
5528+
},
54595529
"com.amazonaws.dynamodb#ExpressionAttributeNameMap": {
54605530
"type": "map",
54615531
"key": {
@@ -6426,6 +6496,32 @@
64266496
}
64276497
}
64286498
},
6499+
"com.amazonaws.dynamodb#IncrementalExportSpecification": {
6500+
"type": "structure",
6501+
"members": {
6502+
"ExportFromTime": {
6503+
"target": "com.amazonaws.dynamodb#ExportFromTime",
6504+
"traits": {
6505+
"smithy.api#documentation": "<p>Time in the past which provides the inclusive start range for the export table's data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table's state including and after this point in time.</p>"
6506+
}
6507+
},
6508+
"ExportToTime": {
6509+
"target": "com.amazonaws.dynamodb#ExportToTime",
6510+
"traits": {
6511+
"smithy.api#documentation": "<p>Time in the past which provides the exclusive end range for the export table's data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table's state just prior to this point in time. If this is not provided, the latest time with data available will be used.</p>"
6512+
}
6513+
},
6514+
"ExportViewType": {
6515+
"target": "com.amazonaws.dynamodb#ExportViewType",
6516+
"traits": {
6517+
"smithy.api#documentation": "<p>Choice of whether to output the previous item image prior to the start time of the incremental export. Valid values are <code>NEW_AND_OLD_IMAGES</code> and <code>NEW_IMAGES</code>.</p>"
6518+
}
6519+
}
6520+
},
6521+
"traits": {
6522+
"smithy.api#documentation": "<p>Optional object containing the parameters specific to an incremental export.</p>"
6523+
}
6524+
},
64296525
"com.amazonaws.dynamodb#IndexName": {
64306526
"type": "string",
64316527
"traits": {
@@ -6961,7 +7057,7 @@
69617057
"aws.api#clientDiscoveredEndpoint": {
69627058
"required": false
69637059
},
6964-
"smithy.api#documentation": "<p>List backups associated with an Amazon Web Services account. To list backups for a\n given table, specify <code>TableName</code>. <code>ListBackups</code> returns a\n paginated list of results with at most 1 MB worth of items in a page. You can also\n specify a maximum number of entries to be returned in a page.</p>\n <p>In the request, start time is inclusive, but end time is exclusive. Note that these\n boundaries are for the time at which the original backup was requested.</p>\n <p>You can call <code>ListBackups</code> a maximum of five times per second.</p>"
7060+
"smithy.api#documentation": "<p>List DynamoDB backups that are associated with an Amazon Web Services account and weren't made with Amazon Web Services Backup. \n To list these backups for a given table, specify <code>TableName</code>. <code>ListBackups</code> returns a\n paginated list of results with at most 1 MB worth of items in a page. You can also\n specify a maximum number of entries to be returned in a page.</p>\n <p>In the request, start time is inclusive, but end time is exclusive. Note that these\n boundaries are for the time at which the original backup was requested.</p>\n <p>You can call <code>ListBackups</code> a maximum of five times per second.</p>\n <p>If you want to retrieve the complete list of backups made with Amazon Web Services Backup, use the \n <a href=\"https://docs.aws.amazon.com/aws-backup/latest/devguide/API_ListBackupJobs.html\">Amazon Web Services Backup list API.</a>\n </p>"
69657061
}
69667062
},
69677063
"com.amazonaws.dynamodb#ListBackupsInput": {

codegen/sdk-codegen/aws-models/ec2.json

+20-2
Original file line numberDiff line numberDiff line change
@@ -14233,7 +14233,7 @@
1423314233
"type": "structure",
1423414234
"members": {
1423514235
"AvailabilityZone": {
14236-
"target": "com.amazonaws.ec2#String",
14236+
"target": "com.amazonaws.ec2#AvailabilityZoneName",
1423714237
"traits": {
1423814238
"smithy.api#clientOptional": {},
1423914239
"smithy.api#documentation": "<p>The Availability Zone in which to create the default subnet.</p>",
@@ -20187,6 +20187,14 @@
2018720187
"smithy.api#default": false,
2018820188
"smithy.api#documentation": "<p>Checks whether you have the required permissions for the action, without actually making the request, \n and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. \n Otherwise, it is <code>UnauthorizedOperation</code>.</p>"
2018920189
}
20190+
},
20191+
"FIPSEnabled": {
20192+
"target": "com.amazonaws.ec2#Boolean",
20193+
"traits": {
20194+
"smithy.api#clientOptional": {},
20195+
"smithy.api#default": false,
20196+
"smithy.api#documentation": "<p>\n\t\t Choose to enable or disable support for Federal Information Processing Standards (FIPS) on the instance.\n\t </p>"
20197+
}
2019020198
}
2019120199
},
2019220200
"traits": {
@@ -88962,7 +88970,7 @@
8896288970
"target": "com.amazonaws.ec2#RevokeSecurityGroupIngressResult"
8896388971
},
8896488972
"traits": {
88965-
"smithy.api#documentation": "<p>Removes the specified inbound (ingress) rules from a security group.</p>\n <p>You can specify rules using either rule IDs or security group rule properties. If you use\n rule properties, the values that you specify (for example, ports) must match the existing rule's \n values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, \n security group, or prefix list). For the TCP and UDP protocols, you must also specify the \n destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type \n and code. If the security group rule has a description, you do not need to specify the description \n to revoke the rule.</p>\n <p>For a default VPC, if the values you specify do not match the existing rule's values, no error is\n returned, and the output describes the security group rules that were not revoked.</p>\n <p>Amazon Web Services recommends that you describe the security group to verify that the rules were removed.</p>\n <p>Rule changes are propagated to instances within the security group as quickly as possible. \n However, a small delay might occur.</p>"
88973+
"smithy.api#documentation": "<p>Removes the specified inbound (ingress) rules from a security group.</p>\n <p>You can specify rules using either rule IDs or security group rule properties. If you use\n rule properties, the values that you specify (for example, ports) must match the existing rule's \n values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, \n security group, or prefix list). For the TCP and UDP protocols, you must also specify the \n destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type \n and code. If the security group rule has a description, you do not need to specify the description \n to revoke the rule.</p>\n <p>For a default VPC, if the values you specify do not match the existing rule's values,\n no error is returned, and the output describes the security group rules that were not\n revoked.</p>\n <p>For a non-default VPC, if the values you specify do not match the existing rule's\n values, an <code>InvalidPermission.NotFound</code> client error is returned, and no\n rules are revoked.</p>\n <p>Amazon Web Services recommends that you describe the security group to verify that the rules were removed.</p>\n <p>Rule changes are propagated to instances within the security group as quickly as possible. \n However, a small delay might occur.</p>"
8896688974
}
8896788975
},
8896888976
"com.amazonaws.ec2#RevokeSecurityGroupIngressRequest": {
@@ -102007,6 +102015,16 @@
102007102015
"smithy.api#documentation": "<p>The tags.</p>",
102008102016
"smithy.api#xmlName": "tagSet"
102009102017
}
102018+
},
102019+
"FipsEnabled": {
102020+
"target": "com.amazonaws.ec2#Boolean",
102021+
"traits": {
102022+
"aws.protocols#ec2QueryName": "FipsEnabled",
102023+
"smithy.api#clientOptional": {},
102024+
"smithy.api#default": false,
102025+
"smithy.api#documentation": "<p>\n\t\t Describes if support for Federal Information Processing Standards (FIPS) is enabled on the instance.\n\t </p>",
102026+
"smithy.api#xmlName": "fipsEnabled"
102027+
}
102010102028
}
102011102029
},
102012102030
"traits": {

0 commit comments

Comments
 (0)