rebase: bump github.com/aws/aws-sdk-go from 1.40.46 to 1.40.50

Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.40.46 to 1.40.50.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Changelog](https://github.com/aws/aws-sdk-go/blob/main/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.40.46...v1.40.50)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2021-09-27 20:32:53 +00:00
committed by mergify[bot]
parent 1cf14cd83c
commit f0e2f84a40
6 changed files with 122 additions and 8 deletions

View File

@ -36385,8 +36385,7 @@ func (c *EC2) ModifyInstancePlacementRequest(input *ModifyInstancePlacementInput
//
// * Change the Dedicated Host with which an instance is associated.
//
// * Change the instance tenancy of an instance from host to dedicated, or
// from dedicated to host.
// * Change the instance tenancy of an instance.
//
// * Move an instance to or from a placement group (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html).
//
@ -101462,7 +101461,7 @@ type Instance struct {
// The time the instance was launched.
LaunchTime *time.Time `locationName:"launchTime" type:"timestamp"`
// The license configurations.
// The license configurations for the instance.
Licenses []*LicenseConfiguration `locationName:"licenseSet" locationNameList:"item" type:"list"`
// The metadata options for the instance.
@ -101483,6 +101482,11 @@ type Instance struct {
// The value is Windows for Windows instances; otherwise blank.
Platform *string `locationName:"platform" type:"string" enum:"PlatformValues"`
// The platform details value for the instance. For more information, see AMI
// billing information fields (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html)
// in the Amazon EC2 User Guide.
PlatformDetails *string `locationName:"platformDetails" type:"string"`
// (IPv4 only) The private DNS hostname name assigned to the instance. This
// DNS hostname can only be used inside the Amazon EC2 network. This name is
// not available until the instance enters the running state.
@ -101549,6 +101553,14 @@ type Instance struct {
// Any tags assigned to the instance.
Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`
// The usage operation value for the instance. For more information, see AMI
// billing information fields (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html)
// in the Amazon EC2 User Guide.
UsageOperation *string `locationName:"usageOperation" type:"string"`
// The time that the usage operation was last updated.
UsageOperationUpdateTime *time.Time `locationName:"usageOperationUpdateTime" type:"timestamp"`
// The virtualization type of the instance.
VirtualizationType *string `locationName:"virtualizationType" type:"string" enum:"VirtualizationType"`
@ -101754,6 +101766,12 @@ func (s *Instance) SetPlatform(v string) *Instance {
return s
}
// SetPlatformDetails sets the PlatformDetails field's value.
func (s *Instance) SetPlatformDetails(v string) *Instance {
s.PlatformDetails = &v
return s
}
// SetPrivateDnsName sets the PrivateDnsName field's value.
func (s *Instance) SetPrivateDnsName(v string) *Instance {
s.PrivateDnsName = &v
@ -101856,6 +101874,18 @@ func (s *Instance) SetTags(v []*Tag) *Instance {
return s
}
// SetUsageOperation sets the UsageOperation field's value.
func (s *Instance) SetUsageOperation(v string) *Instance {
s.UsageOperation = &v
return s
}
// SetUsageOperationUpdateTime sets the UsageOperationUpdateTime field's value.
func (s *Instance) SetUsageOperationUpdateTime(v time.Time) *Instance {
s.UsageOperationUpdateTime = &v
return s
}
// SetVirtualizationType sets the VirtualizationType field's value.
func (s *Instance) SetVirtualizationType(v string) *Instance {
s.VirtualizationType = &v