Skip to content

Commit

Permalink
Release v1.35.17 (2020-10-28) (#3615)
Browse files Browse the repository at this point in the history
Release v1.35.17 (2020-10-28)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
  * AWS Nitro Enclaves general availability. Added support to RunInstances for creating enclave-enabled EC2 instances. New APIs to associate an ACM certificate with an IAM role, for enclave consumption.
* `service/iot`: Updates service API and documentation
  * This release adds support for GG-Managed Job Namespace
* `service/workmail`: Updates service documentation
  * Documentation update for Amazon WorkMail
  • Loading branch information
aws-sdk-go-automation committed Oct 28, 2020
1 parent 0de8e48 commit afb7008
Show file tree
Hide file tree
Showing 13 changed files with 1,229 additions and 18 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.35.17 (2020-10-28)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
* AWS Nitro Enclaves general availability. Added support to RunInstances for creating enclave-enabled EC2 instances. New APIs to associate an ACM certificate with an IAM role, for enclave consumption.
* `service/iot`: Updates service API and documentation
* This release adds support for GG-Managed Job Namespace
* `service/workmail`: Updates service documentation
* Documentation update for Amazon WorkMail

Release v1.35.16 (2020-10-27)
===

Expand Down
14 changes: 10 additions & 4 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.35.16"
const SDKVersion = "1.35.17"
164 changes: 161 additions & 3 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,15 @@
},
"input":{"shape":"AssociateDhcpOptionsRequest"}
},
"AssociateEnclaveCertificateIamRole":{
"name":"AssociateEnclaveCertificateIamRole",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"AssociateEnclaveCertificateIamRoleRequest"},
"output":{"shape":"AssociateEnclaveCertificateIamRoleResult"}
},
"AssociateIamInstanceProfile":{
"name":"AssociateIamInstanceProfile",
"http":{
Expand Down Expand Up @@ -2497,6 +2506,15 @@
"input":{"shape":"DisassociateClientVpnTargetNetworkRequest"},
"output":{"shape":"DisassociateClientVpnTargetNetworkResult"}
},
"DisassociateEnclaveCertificateIamRole":{
"name":"DisassociateEnclaveCertificateIamRole",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DisassociateEnclaveCertificateIamRoleRequest"},
"output":{"shape":"DisassociateEnclaveCertificateIamRoleResult"}
},
"DisassociateIamInstanceProfile":{
"name":"DisassociateIamInstanceProfile",
"http":{
Expand Down Expand Up @@ -2647,6 +2665,15 @@
"input":{"shape":"ExportTransitGatewayRoutesRequest"},
"output":{"shape":"ExportTransitGatewayRoutesResult"}
},
"GetAssociatedEnclaveCertificateIamRoles":{
"name":"GetAssociatedEnclaveCertificateIamRoles",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetAssociatedEnclaveCertificateIamRolesRequest"},
"output":{"shape":"GetAssociatedEnclaveCertificateIamRolesResult"}
},
"GetAssociatedIpv6PoolCidrs":{
"name":"GetAssociatedIpv6PoolCidrs",
"http":{
Expand Down Expand Up @@ -4390,6 +4417,31 @@
}
}
},
"AssociateEnclaveCertificateIamRoleRequest":{
"type":"structure",
"members":{
"CertificateArn":{"shape":"ResourceArn"},
"RoleArn":{"shape":"ResourceArn"},
"DryRun":{"shape":"Boolean"}
}
},
"AssociateEnclaveCertificateIamRoleResult":{
"type":"structure",
"members":{
"CertificateS3BucketName":{
"shape":"String",
"locationName":"certificateS3BucketName"
},
"CertificateS3ObjectKey":{
"shape":"String",
"locationName":"certificateS3ObjectKey"
},
"EncryptionKmsKeyId":{
"shape":"String",
"locationName":"encryptionKmsKeyId"
}
}
},
"AssociateIamInstanceProfileRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4550,6 +4602,34 @@
"type":"string",
"enum":["vpc"]
},
"AssociatedRole":{
"type":"structure",
"members":{
"AssociatedRoleArn":{
"shape":"ResourceArn",
"locationName":"associatedRoleArn"
},
"CertificateS3BucketName":{
"shape":"String",
"locationName":"certificateS3BucketName"
},
"CertificateS3ObjectKey":{
"shape":"String",
"locationName":"certificateS3ObjectKey"
},
"EncryptionKmsKeyId":{
"shape":"String",
"locationName":"encryptionKmsKeyId"
}
}
},
"AssociatedRolesList":{
"type":"list",
"member":{
"shape":"AssociatedRole",
"locationName":"item"
}
},
"AssociatedTargetNetwork":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -13720,6 +13800,23 @@
}
}
},
"DisassociateEnclaveCertificateIamRoleRequest":{
"type":"structure",
"members":{
"CertificateArn":{"shape":"ResourceArn"},
"RoleArn":{"shape":"ResourceArn"},
"DryRun":{"shape":"Boolean"}
}
},
"DisassociateEnclaveCertificateIamRoleResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
}
}
},
"DisassociateIamInstanceProfileRequest":{
"type":"structure",
"required":["AssociationId"],
Expand Down Expand Up @@ -14597,6 +14694,21 @@
}
}
},
"EnclaveOptions":{
"type":"structure",
"members":{
"Enabled":{
"shape":"Boolean",
"locationName":"enabled"
}
}
},
"EnclaveOptionsRequest":{
"type":"structure",
"members":{
"Enabled":{"shape":"Boolean"}
}
},
"EndDateType":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -15610,6 +15722,22 @@
"type":"string",
"enum":["ipsec.1"]
},
"GetAssociatedEnclaveCertificateIamRolesRequest":{
"type":"structure",
"members":{
"CertificateArn":{"shape":"ResourceArn"},
"DryRun":{"shape":"Boolean"}
}
},
"GetAssociatedEnclaveCertificateIamRolesResult":{
"type":"structure",
"members":{
"AssociatedRoles":{
"shape":"AssociatedRolesList",
"locationName":"associatedRoleSet"
}
}
},
"GetAssociatedIpv6PoolCidrsRequest":{
"type":"structure",
"required":["PoolId"],
Expand Down Expand Up @@ -17715,6 +17843,10 @@
"MetadataOptions":{
"shape":"InstanceMetadataOptionsResponse",
"locationName":"metadataOptions"
},
"EnclaveOptions":{
"shape":"EnclaveOptions",
"locationName":"enclaveOptions"
}
}
},
Expand All @@ -17737,6 +17869,10 @@
"shape":"AttributeBooleanValue",
"locationName":"enaSupport"
},
"EnclaveOptions":{
"shape":"EnclaveOptions",
"locationName":"enclaveOptions"
},
"EbsOptimized":{
"shape":"AttributeBooleanValue",
"locationName":"ebsOptimized"
Expand Down Expand Up @@ -17799,7 +17935,8 @@
"groupSet",
"ebsOptimized",
"sriovNetSupport",
"enaSupport"
"enaSupport",
"enclaveOptions"
]
},
"InstanceBlockDeviceMapping":{
Expand Down Expand Up @@ -19707,6 +19844,21 @@
"locationName":"item"
}
},
"LaunchTemplateEnclaveOptions":{
"type":"structure",
"members":{
"Enabled":{
"shape":"Boolean",
"locationName":"enabled"
}
}
},
"LaunchTemplateEnclaveOptionsRequest":{
"type":"structure",
"members":{
"Enabled":{"shape":"Boolean"}
}
},
"LaunchTemplateErrorCode":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -24420,7 +24572,8 @@
"locationName":"LicenseSpecification"
},
"HibernationOptions":{"shape":"LaunchTemplateHibernationOptionsRequest"},
"MetadataOptions":{"shape":"LaunchTemplateInstanceMetadataOptionsRequest"}
"MetadataOptions":{"shape":"LaunchTemplateInstanceMetadataOptionsRequest"},
"EnclaveOptions":{"shape":"LaunchTemplateEnclaveOptionsRequest"}
}
},
"RequestSpotFleetRequest":{
Expand Down Expand Up @@ -25352,6 +25505,10 @@
"MetadataOptions":{
"shape":"LaunchTemplateInstanceMetadataOptions",
"locationName":"metadataOptions"
},
"EnclaveOptions":{
"shape":"LaunchTemplateEnclaveOptions",
"locationName":"enclaveOptions"
}
}
},
Expand Down Expand Up @@ -25836,7 +25993,8 @@
"shape":"LicenseSpecificationListRequest",
"locationName":"LicenseSpecification"
},
"MetadataOptions":{"shape":"InstanceMetadataOptionsRequest"}
"MetadataOptions":{"shape":"InstanceMetadataOptionsRequest"},
"EnclaveOptions":{"shape":"EnclaveOptionsRequest"}
}
},
"RunScheduledInstancesRequest":{
Expand Down

0 comments on commit afb7008

Please sign in to comment.