Bump github.com/aws/aws-sdk-go-v2/config from 1.18.12 to 1.18.25 (#6881)

Bumps
[github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2)
from 1.18.12 to 1.18.25.

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-05-10 15:32:25 -04:00 committed by GitHub
parent f295626e4c
commit 8d3dc74645
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
62 changed files with 1527 additions and 767 deletions

22
go.mod
View File

@ -3,8 +3,8 @@ module github.com/letsencrypt/boulder
go 1.20 go 1.20
require ( require (
github.com/aws/aws-sdk-go-v2 v1.17.7 github.com/aws/aws-sdk-go-v2 v1.18.0
github.com/aws/aws-sdk-go-v2/config v1.18.12 github.com/aws/aws-sdk-go-v2/config v1.18.25
github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0
github.com/aws/smithy-go v1.13.5 github.com/aws/smithy-go v1.13.5
github.com/beeker1121/goque v1.0.3-0.20191103205551-d618510128af github.com/beeker1121/goque v1.0.3-0.20191103205551-d618510128af
@ -49,19 +49,19 @@ require (
require ( require (
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10 // indirect github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.13.12 // indirect github.com/aws/aws-sdk-go-v2/credentials v1.13.24 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.22 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31 // indirect github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.33 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25 // indirect github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.27 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.29 // indirect github.com/aws/aws-sdk-go-v2/internal/ini v1.3.34 // indirect
github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.23 // indirect github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.23 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.26 // indirect github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.26 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.27 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.12.1 // indirect github.com/aws/aws-sdk-go-v2/service/sso v1.12.10 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.1 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.18.3 // indirect github.com/aws/aws-sdk-go-v2/service/sts v1.19.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect github.com/beorn7/perks v1.0.1 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect

44
go.sum
View File

@ -43,44 +43,44 @@ github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRF
github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho=
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
github.com/aws/aws-sdk-go-v2 v1.17.4/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw=
github.com/aws/aws-sdk-go-v2 v1.17.7 h1:CLSjnhJSTSogvqUGhIC6LqFKATMRexcxLZ0i/Nzk9Eg=
github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw=
github.com/aws/aws-sdk-go-v2 v1.18.0 h1:882kkTpSFhdgYRKVZ/VCgf7sd0ru57p2JCxz4/oN5RY=
github.com/aws/aws-sdk-go-v2 v1.18.0/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw=
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10 h1:dK82zF6kkPeCo8J1e+tGx4JdvDIQzj7ygIoLg8WMuGs= github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10 h1:dK82zF6kkPeCo8J1e+tGx4JdvDIQzj7ygIoLg8WMuGs=
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10/go.mod h1:VeTZetY5KRJLuD/7fkQXMU6Mw7H5m/KP2J5Iy9osMno= github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10/go.mod h1:VeTZetY5KRJLuD/7fkQXMU6Mw7H5m/KP2J5Iy9osMno=
github.com/aws/aws-sdk-go-v2/config v1.18.12 h1:fKs/I4wccmfrNRO9rdrbMO1NgLxct6H9rNMiPdBxHWw= github.com/aws/aws-sdk-go-v2/config v1.18.25 h1:JuYyZcnMPBiFqn87L2cRppo+rNwgah6YwD3VuyvaW6Q=
github.com/aws/aws-sdk-go-v2/config v1.18.12/go.mod h1:J36fOhj1LQBr+O4hJCiT8FwVvieeoSGOtPuvhKlsNu8= github.com/aws/aws-sdk-go-v2/config v1.18.25/go.mod h1:dZnYpD5wTW/dQF0rRNLVypB396zWCcPiBIvdvSWHEg4=
github.com/aws/aws-sdk-go-v2/credentials v1.13.12 h1:Cb+HhuEnV19zHRaYYVglwvdHGMJWbdsyP4oHhw04xws= github.com/aws/aws-sdk-go-v2/credentials v1.13.24 h1:PjiYyls3QdCrzqUN35jMWtUK1vqVZ+zLfdOa/UPFDp0=
github.com/aws/aws-sdk-go-v2/credentials v1.13.12/go.mod h1:37HG2MBroXK3jXfxVGtbM2J48ra2+Ltu+tmwr/jO0KA= github.com/aws/aws-sdk-go-v2/credentials v1.13.24/go.mod h1:jYPYi99wUOPIFi0rhiOvXeSEReVOzBqFNOX5bXYoG2o=
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.22 h1:3aMfcTmoXtTZnaT86QlVaYh+BRMbvrrmZwIQ5jWqCZQ= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3 h1:jJPgroehGvjrde3XufFIJUZVK5A2L9a3KwSFgKy9n8w=
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.22/go.mod h1:YGSIJyQ6D6FjKMQh16hVFSIUD54L4F7zTGePqYMYYJU= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3/go.mod h1:4Q0UFP0YJf0NrsEuEYHpM9fTSEVnD16Z3uyEF7J9JGM=
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.28/go.mod h1:3lwChorpIM/BhImY/hy+Z6jekmN92cXGPI1QJasVPYY=
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31 h1:sJLYcS+eZn5EeNINGHSCRAwUJMFVqklwkH36Vbyai7M=
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31/go.mod h1:QT0BqUvX1Bh2ABdTGnjqEjvjzrCfIniM9Sc8zn9Yndo= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31/go.mod h1:QT0BqUvX1Bh2ABdTGnjqEjvjzrCfIniM9Sc8zn9Yndo=
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.22/go.mod h1:EqK7gVrIGAHyZItrD1D8B0ilgwMD1GiWAmbU4u/JHNk= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.33 h1:kG5eQilShqmJbv11XL1VpyDbaEJzWxd4zRiCG30GSn4=
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25 h1:1mnRASEKnkqsntcxHaysxwgVoUUp5dkiB+l3llKnqyg= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.33/go.mod h1:7i0PF1ME/2eUPFcjkVIwq+DOygHEoK92t5cDqNgYbIw=
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25/go.mod h1:zBHOPwhBc3FlQjQJE/D3IfPWiWaQmT06Vq9aNukDo0k= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25/go.mod h1:zBHOPwhBc3FlQjQJE/D3IfPWiWaQmT06Vq9aNukDo0k=
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.29 h1:J4xhFd6zHhdF9jPP0FQJ6WknzBboGMBNjKOv4iTuw4A= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.27 h1:vFQlirhuM8lLlpI7imKOMsjdQLuN9CPi+k44F/OFVsk=
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.29/go.mod h1:TwuqRBGzxjQJIwH16/fOZodwXt2Zxa9/cwJC5ke4j7s= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.27/go.mod h1:UrHnn3QV/d0pBZ6QBAEQcqFLf8FAzLmoUfPVIueOvoM=
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.34 h1:gGLG7yKaXG02/jBlg210R7VgQIotiQntNhsCFejawx8=
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.34/go.mod h1:Etz2dj6UHYuw+Xw830KfzCfWGMzqvUTCjUj5b76GVDc=
github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.23 h1:DWYZIsyqagnWL00f8M/SOr9fN063OEQWn9LLTbdYXsk= github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.23 h1:DWYZIsyqagnWL00f8M/SOr9fN063OEQWn9LLTbdYXsk=
github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.23/go.mod h1:uIiFgURZbACBEQJfqTZPb/jxO7R+9LeoHUFudtIdeQI= github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.23/go.mod h1:uIiFgURZbACBEQJfqTZPb/jxO7R+9LeoHUFudtIdeQI=
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11 h1:y2+VQzC6Zh2ojtV2LoC0MNwHWc6qXv/j2vrQtlftkdA= github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11 h1:y2+VQzC6Zh2ojtV2LoC0MNwHWc6qXv/j2vrQtlftkdA=
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11/go.mod h1:iV4q2hsqtNECrfmlXyord9u4zyuFEJX9eLgLpSPzWA8= github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11/go.mod h1:iV4q2hsqtNECrfmlXyord9u4zyuFEJX9eLgLpSPzWA8=
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.26 h1:CeuSeq/8FnYpPtnuIeLQEEvDv9zUjneuYi8EghMBdwQ= github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.26 h1:CeuSeq/8FnYpPtnuIeLQEEvDv9zUjneuYi8EghMBdwQ=
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.26/go.mod h1:2UqAAwMUXKeRkAHIlDJqvMVgOWkUi/AUXPk/YIe+Dg4= github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.26/go.mod h1:2UqAAwMUXKeRkAHIlDJqvMVgOWkUi/AUXPk/YIe+Dg4=
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.22/go.mod h1:xt0Au8yPIwYXf/GYPy/vl4K3CgwhfQMYbrH7DlUUIws=
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25 h1:5LHn8JQ0qvjD9L9JhMtylnkcw7j05GDZqM9Oin6hpr0=
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25/go.mod h1:/95IA+0lMnzW6XzqYJRpjjsAbKEORVeO0anQqjd2CNU= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25/go.mod h1:/95IA+0lMnzW6XzqYJRpjjsAbKEORVeO0anQqjd2CNU=
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.27 h1:0iKliEXAcCa2qVtRs7Ot5hItA2MsufrphbRFlz1Owxo=
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.27/go.mod h1:EOwBD4J4S5qYszS5/3DpkejfuK+Z5/1uzICfPaZLtqw=
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0 h1:e2ooMhpYGhDnBfSvIyusvAwX7KexuZaHbQY2Dyei7VU= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0 h1:e2ooMhpYGhDnBfSvIyusvAwX7KexuZaHbQY2Dyei7VU=
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0/go.mod h1:bh2E0CXKZsQN+faiKVqC40vfNMAWheoULBCnEgO9K+8= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0/go.mod h1:bh2E0CXKZsQN+faiKVqC40vfNMAWheoULBCnEgO9K+8=
github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 h1:B1G2pSPvbAtQjilPq+Y7jLIzCOwKzuVEl+aBBaNG0AQ= github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 h1:B1G2pSPvbAtQjilPq+Y7jLIzCOwKzuVEl+aBBaNG0AQ=
github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0/go.mod h1:ncltU6n4Nof5uJttDtcNQ537uNuwYqsZZQcpkd2/GUQ= github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0/go.mod h1:ncltU6n4Nof5uJttDtcNQ537uNuwYqsZZQcpkd2/GUQ=
github.com/aws/aws-sdk-go-v2/service/sso v1.12.1 h1:lQKN/LNa3qqu2cDOQZybP7oL4nMGGiFqob0jZJaR8/4= github.com/aws/aws-sdk-go-v2/service/sso v1.12.10 h1:UBQjaMTCKwyUYwiVnUt6toEJwGXsLBI6al083tpjJzY=
github.com/aws/aws-sdk-go-v2/service/sso v1.12.1/go.mod h1:IgV8l3sj22nQDd5qcAGY0WenwCzCphqdbFOpfktZPrI= github.com/aws/aws-sdk-go-v2/service/sso v1.12.10/go.mod h1:ouy2P4z6sJN70fR3ka3wD3Ro3KezSxU6eKGQI2+2fjI=
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.1 h1:0bLhH6DRAqox+g0LatcjGKjjhU6Eudyys6HB6DJVPj8= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10 h1:PkHIIJs8qvq0e5QybnZoG1K/9QTrLr9OsqCIo59jOBA=
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.1/go.mod h1:O1YSOg3aekZibh2SngvCRRG+cRHKKlYgxf/JBF/Kr/k= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10/go.mod h1:AFvkxc8xfBe8XA+5St5XIHHrQQtkxqrRincx4hmMHOk=
github.com/aws/aws-sdk-go-v2/service/sts v1.18.3 h1:s49mSnsBZEXjfGBkRfmK+nPqzT7Lt3+t2SmAKNyHblw= github.com/aws/aws-sdk-go-v2/service/sts v1.19.0 h1:2DQLAKDteoEDI8zpCzqBMaZlJuoE9iTYD0gFmXVax9E=
github.com/aws/aws-sdk-go-v2/service/sts v1.18.3/go.mod h1:b+psTJn33Q4qGoDaM7ZiOVVG8uVjGI6HaZ8WBHdgDgU= github.com/aws/aws-sdk-go-v2/service/sts v1.19.0/go.mod h1:BgQOMsg8av8jset59jelyPW7NoZcZXLVpDsXunGDrk8=
github.com/aws/smithy-go v1.13.5 h1:hgz0X/DX0dGqTYpGALqXJoRKRj5oQ7150i5FdTePzO8= github.com/aws/smithy-go v1.13.5 h1:hgz0X/DX0dGqTYpGALqXJoRKRj5oQ7150i5FdTePzO8=
github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA=
github.com/beeker1121/goque v1.0.3-0.20191103205551-d618510128af h1:XbgLdZvVbWsK9HAhAYOp6rksTAdOVYDBQtGSVOLlJrw= github.com/beeker1121/goque v1.0.3-0.20191103205551-d618510128af h1:XbgLdZvVbWsK9HAhAYOp6rksTAdOVYDBQtGSVOLlJrw=

View File

@ -1,3 +1,393 @@
# Release (2023-04-24)
## General Highlights
* **Dependency Update**: Updated to the latest SDK module versions
## Module Highlights
* `github.com/aws/aws-sdk-go-v2`: v1.18.0
* **Feature**: add recursion detection middleware to all SDK requests to avoid recursion invocation in Lambda
* `github.com/aws/aws-sdk-go-v2/service/appflow`: [v1.27.0](service/appflow/CHANGELOG.md#v1270-2023-04-24)
* **Feature**: Increased the max length for RefreshToken and AuthCode from 2048 to 4096.
* `github.com/aws/aws-sdk-go-v2/service/codecatalyst`: [v1.2.5](service/codecatalyst/CHANGELOG.md#v125-2023-04-24)
* **Documentation**: Documentation updates for Amazon CodeCatalyst.
* `github.com/aws/aws-sdk-go-v2/service/ec2`: [v1.94.0](service/ec2/CHANGELOG.md#v1940-2023-04-24)
* **Feature**: API changes to AWS Verified Access related to identity providers' information.
* `github.com/aws/aws-sdk-go-v2/service/mediaconvert`: [v1.36.0](service/mediaconvert/CHANGELOG.md#v1360-2023-04-24)
* **Feature**: This release introduces a noise reduction pre-filter, linear interpolation deinterlace mode, video pass-through, updated default job settings, and expanded LC-AAC Stereo audio bitrate ranges.
* `github.com/aws/aws-sdk-go-v2/service/rekognition`: [v1.25.0](service/rekognition/CHANGELOG.md#v1250-2023-04-24)
* **Feature**: Added new status result to Liveness session status.
* `github.com/aws/aws-sdk-go-v2/service/route53`: [v1.28.0](service/route53/CHANGELOG.md#v1280-2023-04-24)
* **Feature**: added paginator for listResourceRecordSets
* `github.com/aws/aws-sdk-go-v2/service/s3`: [v1.33.0](service/s3/CHANGELOG.md#v1330-2023-04-24)
* **Feature**: added custom paginators for listMultipartUploads and ListObjectVersions
# Release (2023-04-21)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/connect`: [v1.52.0](service/connect/CHANGELOG.md#v1520-2023-04-21)
* **Feature**: This release adds a new API CreateParticipant. For Amazon Connect Chat, you can use this new API to customize chat flow experiences.
* `github.com/aws/aws-sdk-go-v2/service/ecs`: [v1.26.1](service/ecs/CHANGELOG.md#v1261-2023-04-21)
* **Documentation**: Documentation update to address various Amazon ECS tickets.
* `github.com/aws/aws-sdk-go-v2/service/fms`: [v1.23.0](service/fms/CHANGELOG.md#v1230-2023-04-21)
* **Feature**: AWS Firewall Manager adds support for multiple administrators. You can now delegate more than one administrator per organization.
# Release (2023-04-20)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/chime`: [v1.23.0](service/chime/CHANGELOG.md#v1230-2023-04-20)
* **Feature**: Adds support for Hindi and Thai languages and additional Amazon Transcribe parameters to the StartMeetingTranscription API.
* `github.com/aws/aws-sdk-go-v2/service/chimesdkmediapipelines`: [v1.4.0](service/chimesdkmediapipelines/CHANGELOG.md#v140-2023-04-20)
* **Feature**: This release adds support for specifying the recording file format in an S3 recording sink configuration.
* `github.com/aws/aws-sdk-go-v2/service/chimesdkmeetings`: [v1.15.0](service/chimesdkmeetings/CHANGELOG.md#v1150-2023-04-20)
* **Feature**: Adds support for Hindi and Thai languages and additional Amazon Transcribe parameters to the StartMeetingTranscription API.
* `github.com/aws/aws-sdk-go-v2/service/gamelift`: [v1.18.0](service/gamelift/CHANGELOG.md#v1180-2023-04-20)
* **Feature**: Amazon GameLift supports creating Builds for Windows 2016 operating system.
* `github.com/aws/aws-sdk-go-v2/service/guardduty`: [v1.21.0](service/guardduty/CHANGELOG.md#v1210-2023-04-20)
* **Feature**: This release adds support for the new Lambda Protection feature.
* `github.com/aws/aws-sdk-go-v2/service/iot`: [v1.36.0](service/iot/CHANGELOG.md#v1360-2023-04-20)
* **Feature**: Support additional OTA states in GetOTAUpdate API
* `github.com/aws/aws-sdk-go-v2/service/sagemaker`: [v1.74.0](service/sagemaker/CHANGELOG.md#v1740-2023-04-20)
* **Feature**: Amazon SageMaker Canvas adds ModelRegisterSettings support for CanvasAppSettings.
* `github.com/aws/aws-sdk-go-v2/service/snowball`: [v1.19.0](service/snowball/CHANGELOG.md#v1190-2023-04-20)
* **Feature**: Adds support for Amazon S3 compatible storage. AWS Snow Family customers can now use Amazon S3 compatible storage on Snowball Edge devices. Also adds support for V3_5S. This is a refreshed AWS Snowball Edge Storage Optimized device type with 210TB SSD (customer usable).
* `github.com/aws/aws-sdk-go-v2/service/wafv2`: [v1.30.0](service/wafv2/CHANGELOG.md#v1300-2023-04-20)
* **Feature**: You can now create encrypted API keys to use in a client application integration of the JavaScript CAPTCHA API . You can also retrieve a list of your API keys and the JavaScript application integration URL.
# Release (2023-04-19)
## General Highlights
* **Dependency Update**: Updated to the latest SDK module versions
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/comprehend`: [v1.24.0](service/comprehend/CHANGELOG.md#v1240-2023-04-19)
* **Feature**: This release supports native document models for custom classification, in addition to plain-text models. You train native document models using documents (PDF, Word, images) in their native format.
* `github.com/aws/aws-sdk-go-v2/service/ecs`: [v1.26.0](service/ecs/CHANGELOG.md#v1260-2023-04-19)
* **Feature**: This release supports the Account Setting "TagResourceAuthorization" that allows for enhanced Tagging security controls.
* `github.com/aws/aws-sdk-go-v2/service/ram`: [v1.18.0](service/ram/CHANGELOG.md#v1180-2023-04-19)
* **Feature**: This release adds support for customer managed permissions. Customer managed permissions enable customers to author and manage tailored permissions for resources shared using RAM.
* `github.com/aws/aws-sdk-go-v2/service/rds`: [v1.43.1](service/rds/CHANGELOG.md#v1431-2023-04-19)
* **Documentation**: Adds support for the ImageId parameter of CreateCustomDBEngineVersion to RDS Custom for Oracle
* `github.com/aws/aws-sdk-go-v2/service/s3`: [v1.32.0](service/s3/CHANGELOG.md#v1320-2023-04-19)
* **Feature**: Provides support for "Snow" Storage class.
* `github.com/aws/aws-sdk-go-v2/service/secretsmanager`: [v1.19.4](service/secretsmanager/CHANGELOG.md#v1194-2023-04-19)
* **Documentation**: Documentation updates for Secrets Manager
# Release (2023-04-17)
## General Highlights
* **Dependency Update**: Updated to the latest SDK module versions
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/appflow`: [v1.26.0](service/appflow/CHANGELOG.md#v1260-2023-04-17)
* **Feature**: This release adds a Client Token parameter to the following AppFlow APIs: Create/Update Connector Profile, Create/Update Flow, Start Flow, Register Connector, Update Connector Registration. The Client Token parameter allows idempotent operations for these APIs.
* `github.com/aws/aws-sdk-go-v2/service/drs`: [v1.13.0](service/drs/CHANGELOG.md#v1130-2023-04-17)
* **Feature**: Changed existing APIs and added new APIs to support using an account-level launch configuration template with AWS Elastic Disaster Recovery.
* `github.com/aws/aws-sdk-go-v2/service/dynamodb`: [v1.19.5](service/dynamodb/CHANGELOG.md#v1195-2023-04-17)
* **Documentation**: Documentation updates for DynamoDB API
* `github.com/aws/aws-sdk-go-v2/service/emrserverless`: [v1.7.0](service/emrserverless/CHANGELOG.md#v170-2023-04-17)
* **Feature**: The GetJobRun API has been updated to include the job's billed resource utilization. This utilization shows the aggregate vCPU, memory and storage that AWS has billed for the job run. The billed resources include a 1-minute minimum usage for workers, plus additional storage over 20 GB per worker.
* `github.com/aws/aws-sdk-go-v2/service/internetmonitor`: [v1.2.0](service/internetmonitor/CHANGELOG.md#v120-2023-04-17)
* **Feature**: This release includes a new configurable value, TrafficPercentageToMonitor, which allows users to adjust the amount of traffic monitored by percentage
* `github.com/aws/aws-sdk-go-v2/service/iotwireless`: [v1.27.0](service/iotwireless/CHANGELOG.md#v1270-2023-04-17)
* **Feature**: Supports the new feature of LoRaWAN roaming, allows to configure MaxEirp for LoRaWAN gateway, and allows to configure PingSlotPeriod for LoRaWAN multicast group
* `github.com/aws/aws-sdk-go-v2/service/lambda`: [v1.33.0](service/lambda/CHANGELOG.md#v1330-2023-04-17)
* **Feature**: Add Python 3.10 (python3.10) support to AWS Lambda
# Release (2023-04-14)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/ecs`: [v1.25.1](service/ecs/CHANGELOG.md#v1251-2023-04-14)
* **Documentation**: This release supports ephemeral storage for AWS Fargate Windows containers.
* `github.com/aws/aws-sdk-go-v2/service/lambda`: [v1.32.0](service/lambda/CHANGELOG.md#v1320-2023-04-14)
* **Feature**: This release adds SnapStart related exceptions to InvokeWithResponseStream API. IAM access related documentation is also added for this API.
* `github.com/aws/aws-sdk-go-v2/service/migrationhubrefactorspaces`: [v1.9.8](service/migrationhubrefactorspaces/CHANGELOG.md#v198-2023-04-14)
* **Documentation**: Doc only update for Refactor Spaces environments without network bridge feature.
* `github.com/aws/aws-sdk-go-v2/service/rds`: [v1.43.0](service/rds/CHANGELOG.md#v1430-2023-04-14)
* **Feature**: This release adds support of modifying the engine mode of database clusters.
# Release (2023-04-13)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/chimesdkvoice`: [v1.5.0](service/chimesdkvoice/CHANGELOG.md#v150-2023-04-13)
* **Feature**: This release adds tagging support for Voice Connectors and SIP Media Applications
* `github.com/aws/aws-sdk-go-v2/service/mediaconnect`: [v1.19.0](service/mediaconnect/CHANGELOG.md#v1190-2023-04-13)
* **Feature**: Gateway is a new feature of AWS Elemental MediaConnect. Gateway allows the deployment of on-premises resources for the purpose of transporting live video to and from the AWS Cloud.
# Release (2023-04-12)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/groundstation`: [v1.18.0](service/groundstation/CHANGELOG.md#v1180-2023-04-12)
* **Feature**: AWS Ground Station Wideband DigIF GA Release
* `github.com/aws/aws-sdk-go-v2/service/managedblockchain`: [v1.15.5](service/managedblockchain/CHANGELOG.md#v1155-2023-04-12)
* **Documentation**: Removal of the Ropsten network. The Ethereum foundation ceased support of Ropsten on December 31st, 2022..
# Release (2023-04-11)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/ecrpublic`: [v1.16.0](service/ecrpublic/CHANGELOG.md#v1160-2023-04-11)
* **Feature**: This release will allow using registry alias as registryId in BatchDeleteImage request.
* `github.com/aws/aws-sdk-go-v2/service/emrserverless`: [v1.6.0](service/emrserverless/CHANGELOG.md#v160-2023-04-11)
* **Feature**: This release extends GetJobRun API to return job run timeout (executionTimeoutMinutes) specified during StartJobRun call (or default timeout of 720 minutes if none was specified).
* `github.com/aws/aws-sdk-go-v2/service/eventbridge`: [v1.19.0](service/eventbridge/CHANGELOG.md#v1190-2023-04-11)
* **Feature**: EventBridge PutTarget support for multiple SQL arguments on RedshiftDataParameters
* `github.com/aws/aws-sdk-go-v2/service/iotdataplane`: [v1.15.0](service/iotdataplane/CHANGELOG.md#v1150-2023-04-11)
* **Feature**: This release adds support for MQTT5 user properties when calling the AWS IoT GetRetainedMessage API
* `github.com/aws/aws-sdk-go-v2/service/wafv2`: [v1.29.0](service/wafv2/CHANGELOG.md#v1290-2023-04-11)
* **Feature**: For web ACLs that protect CloudFront protections, the default request body inspection size is now 16 KB, and you can use the new association configuration to increase the inspection size further, up to 64 KB. Sizes over 16 KB can incur additional costs.
# Release (2023-04-10)
## General Highlights
* **Dependency Update**: Updated to the latest SDK module versions
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/connect`: [v1.51.0](service/connect/CHANGELOG.md#v1510-2023-04-10)
* **Feature**: This release adds the ability to configure an agent's routing profile to receive contacts from multiple channels at the same time via extending the UpdateRoutingProfileConcurrency, CreateRoutingProfile and DescribeRoutingProfile APIs.
* `github.com/aws/aws-sdk-go-v2/service/ecs`: [v1.25.0](service/ecs/CHANGELOG.md#v1250-2023-04-10)
* **Feature**: This release adds support for enabling FIPS compliance on Amazon ECS Fargate tasks
* `github.com/aws/aws-sdk-go-v2/service/marketplacecatalog`: [v1.16.0](service/marketplacecatalog/CHANGELOG.md#v1160-2023-04-10)
* **Feature**: Added three new APIs to support resource sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added new OwnershipType field to ListEntities request to let users filter on entities that are shared with them. Increased max page size of ListEntities response from 20 to 50 results.
* `github.com/aws/aws-sdk-go-v2/service/mediaconvert`: [v1.35.0](service/mediaconvert/CHANGELOG.md#v1350-2023-04-10)
* **Feature**: AWS Elemental MediaConvert SDK now supports conversion of 608 paint-on captions to pop-on captions for SCC sources.
* `github.com/aws/aws-sdk-go-v2/service/omics`: [v1.3.0](service/omics/CHANGELOG.md#v130-2023-04-10)
* **Feature**: Remove unexpected API changes.
* `github.com/aws/aws-sdk-go-v2/service/rekognition`: [v1.24.0](service/rekognition/CHANGELOG.md#v1240-2023-04-10)
* **Feature**: This release adds support for Face Liveness APIs in Amazon Rekognition. Updates UpdateStreamProcessor to return ResourceInUseException Exception. Minor updates to API documentation.
# Release (2023-04-07)
## General Highlights
* **Dependency Update**: Updated to the latest SDK module versions
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/dlm`: [v1.15.0](service/dlm/CHANGELOG.md#v1150-2023-04-07)
* **Announcement**: This release includes breaking changes for the timestamp trait on the data lifecycle management client.
* **Feature**: Updated timestamp format for GetLifecyclePolicy API
* **Bug Fix**: Correct timestamp type for data lifecycle manager.
* `github.com/aws/aws-sdk-go-v2/service/docdb`: [v1.21.0](service/docdb/CHANGELOG.md#v1210-2023-04-07)
* **Feature**: This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore.
* `github.com/aws/aws-sdk-go-v2/service/fsx`: [v1.28.8](service/fsx/CHANGELOG.md#v1288-2023-04-07)
* **Documentation**: Amazon FSx for Lustre now supports creating data repository associations on Persistent_1 and Scratch_2 file systems.
* `github.com/aws/aws-sdk-go-v2/service/lambda`: [v1.31.0](service/lambda/CHANGELOG.md#v1310-2023-04-07)
* **Feature**: This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered.
* `github.com/aws/aws-sdk-go-v2/service/quicksight`: [v1.34.0](service/quicksight/CHANGELOG.md#v1340-2023-04-07)
* **Feature**: This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.
* `github.com/aws/aws-sdk-go-v2/service/redshiftdata`: [v1.19.3](service/redshiftdata/CHANGELOG.md#v1193-2023-04-07)
* **Documentation**: Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.
* `github.com/aws/aws-sdk-go-v2/service/servicecatalog`: [v1.18.1](service/servicecatalog/CHANGELOG.md#v1181-2023-04-07)
* **Documentation**: Updates description for property
# Release (2023-04-06)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/cloudformation`: [v1.27.0](service/cloudformation/CHANGELOG.md#v1270-2023-04-06)
* **Feature**: Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.
* `github.com/aws/aws-sdk-go-v2/service/greengrassv2`: [v1.22.0](service/greengrassv2/CHANGELOG.md#v1220-2023-04-06)
* **Feature**: Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2.
* `github.com/aws/aws-sdk-go-v2/service/proton`: [v1.21.0](service/proton/CHANGELOG.md#v1210-2023-04-06)
* **Feature**: This release adds support for the AWS Proton service sync feature. Service sync enables managing an AWS Proton service (creating and updating instances) and all of it's corresponding service instances from a Git repository.
* `github.com/aws/aws-sdk-go-v2/service/rds`: [v1.42.1](service/rds/CHANGELOG.md#v1421-2023-04-06)
* **Documentation**: Adds and updates the SDK examples
# Release (2023-04-05)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/configservice`: [v1.31.0](service/configservice/CHANGELOG.md#v1310-2023-04-05)
* **Feature**: This release adds resourceType enums for types released in March 2023.
* `github.com/aws/aws-sdk-go-v2/service/ecs`: [v1.24.3](service/ecs/CHANGELOG.md#v1243-2023-04-05)
* **Documentation**: This is a document only updated to add information about Amazon Elastic Inference (EI).
* `github.com/aws/aws-sdk-go-v2/service/identitystore`: [v1.16.7](service/identitystore/CHANGELOG.md#v1167-2023-04-05)
* **Documentation**: Documentation updates for Identity Store CLI command reference.
* `github.com/aws/aws-sdk-go-v2/service/ivsrealtime`: [v1.1.0](service/ivsrealtime/CHANGELOG.md#v110-2023-04-05)
* **Feature**: Fix ParticipantToken ExpirationTime format
* `github.com/aws/aws-sdk-go-v2/service/networkfirewall`: [v1.26.0](service/networkfirewall/CHANGELOG.md#v1260-2023-04-05)
* **Feature**: AWS Network Firewall now supports IPv6-only subnets.
* `github.com/aws/aws-sdk-go-v2/service/servicecatalog`: [v1.18.0](service/servicecatalog/CHANGELOG.md#v1180-2023-04-05)
* **Feature**: removed incorrect product type value
* `github.com/aws/aws-sdk-go-v2/service/vpclattice`: [v1.0.1](service/vpclattice/CHANGELOG.md#v101-2023-04-05)
* **Documentation**: This release removes the entities in the API doc model package for auth policies.
# Release (2023-04-04)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/amplifyuibuilder`: [v1.10.0](service/amplifyuibuilder/CHANGELOG.md#v1100-2023-04-04)
* **Feature**: Support StorageField and custom displays for data-bound options in form builder. Support non-string operands for predicates in collections. Support choosing client to get token from.
* `github.com/aws/aws-sdk-go-v2/service/autoscaling`: [v1.28.1](service/autoscaling/CHANGELOG.md#v1281-2023-04-04)
* **Documentation**: Documentation updates for Amazon EC2 Auto Scaling
* `github.com/aws/aws-sdk-go-v2/service/ec2`: [v1.93.0](service/ec2/CHANGELOG.md#v1930-2023-04-04)
* **Feature**: C6in, M6in, M6idn, R6in and R6idn bare metal instances are powered by 3rd Generation Intel Xeon Scalable processors and offer up to 200 Gbps of network bandwidth.
* `github.com/aws/aws-sdk-go-v2/service/elasticinference`: [v1.13.0](service/elasticinference/CHANGELOG.md#v1130-2023-04-04)
* **Feature**: Updated public documentation for the Describe and Tagging APIs.
* `github.com/aws/aws-sdk-go-v2/service/sagemaker`: [v1.73.0](service/sagemaker/CHANGELOG.md#v1730-2023-04-04)
* **Feature**: Amazon SageMaker Asynchronous Inference now allows customer's to receive failure model responses in S3 and receive success/failure model responses in SNS notifications.
* `github.com/aws/aws-sdk-go-v2/service/sagemakerruntime`: [v1.19.0](service/sagemakerruntime/CHANGELOG.md#v1190-2023-04-04)
* **Feature**: Amazon SageMaker Asynchronous Inference now provides customers a FailureLocation as a response parameter in InvokeEndpointAsync API to capture the model failure responses.
* `github.com/aws/aws-sdk-go-v2/service/wafv2`: [v1.28.0](service/wafv2/CHANGELOG.md#v1280-2023-04-04)
* **Feature**: This release rolls back association config feature for webACLs that protect CloudFront protections.
# Release (2023-04-03)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/glue`: [v1.45.0](service/glue/CHANGELOG.md#v1450-2023-04-03)
* **Feature**: Add support for database-level federation
* `github.com/aws/aws-sdk-go-v2/service/lakeformation`: [v1.21.0](service/lakeformation/CHANGELOG.md#v1210-2023-04-03)
* **Feature**: Add support for database-level federation
* `github.com/aws/aws-sdk-go-v2/service/licensemanager`: [v1.18.0](service/licensemanager/CHANGELOG.md#v1180-2023-04-03)
* **Feature**: This release adds grant override options to the CreateGrantVersion API. These options can be used to specify grant replacement behavior during grant activation.
* `github.com/aws/aws-sdk-go-v2/service/mwaa`: [v1.15.0](service/mwaa/CHANGELOG.md#v1150-2023-04-03)
* **Feature**: This Amazon MWAA release adds the ability to customize the Apache Airflow environment by launching a shell script at startup. This shell script is hosted in your environment's Amazon S3 bucket. Amazon MWAA runs the script before installing requirements and initializing the Apache Airflow process.
* `github.com/aws/aws-sdk-go-v2/service/servicecatalog`: [v1.17.0](service/servicecatalog/CHANGELOG.md#v1170-2023-04-03)
* **Feature**: This release introduces Service Catalog support for Terraform open source. It enables 1. The notify* APIs to Service Catalog. These APIs are used by the terraform engine to notify the result of the provisioning engine execution. 2. Adds a new TERRAFORM_OPEN_SOURCE product type in CreateProduct API.
* `github.com/aws/aws-sdk-go-v2/service/wafv2`: [v1.27.0](service/wafv2/CHANGELOG.md#v1270-2023-04-03)
* **Feature**: For web ACLs that protect CloudFront protections, the default request body inspection size is now 16 KB, and you can use the new association configuration to increase the inspection size further, up to 64 KB. Sizes over 16 KB can incur additional costs.
# Release (2023-03-31)
## General Highlights
* **Dependency Update**: Updated to the latest SDK module versions
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/ec2`: [v1.92.1](service/ec2/CHANGELOG.md#v1921-2023-03-31)
* **Documentation**: Documentation updates for EC2 On Demand Capacity Reservations
* `github.com/aws/aws-sdk-go-v2/service/internetmonitor`: [v1.1.0](service/internetmonitor/CHANGELOG.md#v110-2023-03-31)
* **Feature**: This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to deliver internet measurements to Amazon S3 buckets as well as CloudWatch Logs.
* `github.com/aws/aws-sdk-go-v2/service/resiliencehub`: [v1.10.1](service/resiliencehub/CHANGELOG.md#v1101-2023-03-31)
* **Documentation**: Adding EKS related documentation for appTemplateBody
* `github.com/aws/aws-sdk-go-v2/service/s3`: [v1.31.1](service/s3/CHANGELOG.md#v1311-2023-03-31)
* **Documentation**: Documentation updates for Amazon S3
* `github.com/aws/aws-sdk-go-v2/service/sagemakerfeaturestoreruntime`: [v1.14.0](service/sagemakerfeaturestoreruntime/CHANGELOG.md#v1140-2023-03-31)
* **Feature**: In this release, you can now chose between soft delete and hard delete when calling the DeleteRecord API, so you have more flexibility when it comes to managing online store data.
# Release (2023-03-30)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/athena`: [v1.25.0](service/athena/CHANGELOG.md#v1250-2023-03-30)
* **Feature**: Make DefaultExecutorDpuSize and CoordinatorDpuSize fields optional in StartSession
* `github.com/aws/aws-sdk-go-v2/service/autoscaling`: [v1.28.0](service/autoscaling/CHANGELOG.md#v1280-2023-03-30)
* **Feature**: Amazon EC2 Auto Scaling now supports Elastic Load Balancing traffic sources with the AttachTrafficSources, DetachTrafficSources, and DescribeTrafficSources APIs. This release also introduces a new activity status, "WaitingForConnectionDraining", for VPC Lattice to the DescribeScalingActivities API.
* `github.com/aws/aws-sdk-go-v2/service/batch`: [v1.23.0](service/batch/CHANGELOG.md#v1230-2023-03-30)
* **Feature**: This feature allows Batch on EKS to support configuration of Pod Labels through Metadata for Batch on EKS Jobs.
* `github.com/aws/aws-sdk-go-v2/service/computeoptimizer`: [v1.22.0](service/computeoptimizer/CHANGELOG.md#v1220-2023-03-30)
* **Feature**: This release adds support for HDD EBS volume types and io2 Block Express. We are also adding support for 61 new instance types and instances that have non consecutive runtime.
* `github.com/aws/aws-sdk-go-v2/service/drs`: [v1.12.0](service/drs/CHANGELOG.md#v1120-2023-03-30)
* **Feature**: Adding a field to the replication configuration APIs to support the auto replicate new disks feature. We also deprecated RetryDataReplication.
* `github.com/aws/aws-sdk-go-v2/service/ec2`: [v1.92.0](service/ec2/CHANGELOG.md#v1920-2023-03-30)
* **Feature**: This release adds support for Tunnel Endpoint Lifecycle control, a new feature that provides Site-to-Site VPN customers with better visibility and control of their VPN tunnel maintenance updates.
* `github.com/aws/aws-sdk-go-v2/service/emr`: [v1.24.0](service/emr/CHANGELOG.md#v1240-2023-03-30)
* **Feature**: Updated DescribeCluster and ListClusters API responses to include ErrorDetail that specifies error code, programmatically accessible error data,and an error message. ErrorDetail provides the underlying reason for cluster failure and recommends actions to simplify troubleshooting of EMR clusters.
* `github.com/aws/aws-sdk-go-v2/service/glue`: [v1.44.0](service/glue/CHANGELOG.md#v1440-2023-03-30)
* **Feature**: This release adds support for AWS Glue Data Quality, which helps you evaluate and monitor the quality of your data and includes the API for creating, deleting, or updating data quality rulesets, runs and evaluations.
* `github.com/aws/aws-sdk-go-v2/service/guardduty`: [v1.20.0](service/guardduty/CHANGELOG.md#v1200-2023-03-30)
* **Feature**: Added EKS Runtime Monitoring feature support to existing detector, finding APIs and introducing new Coverage APIs
* `github.com/aws/aws-sdk-go-v2/service/imagebuilder`: [v1.23.0](service/imagebuilder/CHANGELOG.md#v1230-2023-03-30)
* **Feature**: Adds support for new image workflow details and image vulnerability detection.
* `github.com/aws/aws-sdk-go-v2/service/ivs`: [v1.21.0](service/ivs/CHANGELOG.md#v1210-2023-03-30)
* **Feature**: Amazon Interactive Video Service (IVS) now offers customers the ability to configure IVS channels to allow insecure RTMP ingest.
* `github.com/aws/aws-sdk-go-v2/service/kendra`: [v1.39.0](service/kendra/CHANGELOG.md#v1390-2023-03-30)
* **Feature**: AWS Kendra now supports featured results for a query.
* `github.com/aws/aws-sdk-go-v2/service/networkfirewall`: [v1.25.0](service/networkfirewall/CHANGELOG.md#v1250-2023-03-30)
* **Feature**: AWS Network Firewall added TLS inspection configurations to allow TLS traffic inspection.
* `github.com/aws/aws-sdk-go-v2/service/sagemakergeospatial`: [v1.2.0](service/sagemakergeospatial/CHANGELOG.md#v120-2023-03-30)
* **Feature**: Amazon SageMaker geospatial capabilities now supports server-side encryption with customer managed KMS key and SageMaker notebooks with a SageMaker geospatial image in a Amazon SageMaker Domain with VPC only mode.
* `github.com/aws/aws-sdk-go-v2/service/vpclattice`: [v1.0.0](service/vpclattice/CHANGELOG.md#v100-2023-03-30)
* **Release**: New AWS service client module
* **Feature**: General Availability (GA) release of Amazon VPC Lattice
* `github.com/aws/aws-sdk-go-v2/service/wellarchitected`: [v1.19.0](service/wellarchitected/CHANGELOG.md#v1190-2023-03-30)
* **Feature**: AWS Well-Architected SDK now supports getting consolidated report metrics and generating a consolidated report PDF.
# Release (2023-03-29)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/opensearchserverless`: [v1.2.0](service/opensearchserverless/CHANGELOG.md#v120-2023-03-29)
* **Feature**: This release includes two new exception types "ServiceQuotaExceededException" and "OcuLimitExceededException".
* `github.com/aws/aws-sdk-go-v2/service/rds`: [v1.42.0](service/rds/CHANGELOG.md#v1420-2023-03-29)
* **Feature**: Add support for creating a read replica DB instance from a Multi-AZ DB cluster.
# Release (2023-03-28)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/ssmcontacts`: [v1.15.0](service/ssmcontacts/CHANGELOG.md#v1150-2023-03-28)
* **Feature**: This release adds 12 new APIs as part of Oncall Schedule feature release, adds support for a new contact type: ONCALL_SCHEDULE. Check public documentation for AWS ssm-contacts for more information
* `github.com/aws/aws-sdk-go-v2/service/ssmincidents`: [v1.21.0](service/ssmincidents/CHANGELOG.md#v1210-2023-03-28)
* **Feature**: Increased maximum length of "TriggerDetails.rawData" to 10K characters and "IncidentSummary" to 8K characters.
# Release (2023-03-27)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/athena`: [v1.24.0](service/athena/CHANGELOG.md#v1240-2023-03-27)
* **Feature**: Enforces a minimal level of encryption for the workgroup for query and calculation results that are written to Amazon S3. When enabled, workgroup users can set encryption only to the minimum level set by the administrator or higher when they submit queries.
* `github.com/aws/aws-sdk-go-v2/service/chimesdkvoice`: [v1.4.0](service/chimesdkvoice/CHANGELOG.md#v140-2023-03-27)
* **Feature**: Documentation updates for Amazon Chime SDK Voice.
* `github.com/aws/aws-sdk-go-v2/service/connect`: [v1.50.0](service/connect/CHANGELOG.md#v1500-2023-03-27)
* **Feature**: This release introduces support for RelatedContactId in the StartChatContact API. Interactive message and interactive message response have been added to the list of supported message content types for this API as well.
* `github.com/aws/aws-sdk-go-v2/service/connectparticipant`: [v1.15.7](service/connectparticipant/CHANGELOG.md#v1157-2023-03-27)
* **Documentation**: This release provides an update to the SendMessage API to handle interactive message response content-types.
* `github.com/aws/aws-sdk-go-v2/service/iotwireless`: [v1.26.0](service/iotwireless/CHANGELOG.md#v1260-2023-03-27)
* **Feature**: Introducing new APIs that enable Sidewalk devices to communicate with AWS IoT Core through Sidewalk gateways. This will empower AWS customers to connect Sidewalk devices with other AWS IoT Services, creating possibilities for seamless integration and advanced device management.
* `github.com/aws/aws-sdk-go-v2/service/medialive`: [v1.31.0](service/medialive/CHANGELOG.md#v1310-2023-03-27)
* **Feature**: AWS Elemental MediaLive now supports ID3 tag insertion for audio only HLS output groups. AWS Elemental Link devices now support tagging.
* `github.com/aws/aws-sdk-go-v2/service/sagemaker`: [v1.72.1](service/sagemaker/CHANGELOG.md#v1721-2023-03-27)
* **Documentation**: Fixed some improperly rendered links in SDK documentation.
* `github.com/aws/aws-sdk-go-v2/service/securityhub`: [v1.30.0](service/securityhub/CHANGELOG.md#v1300-2023-03-27)
* **Feature**: Added new resource detail objects to ASFF, including resources for AwsEksCluster, AWSS3Bucket, AwsEc2RouteTable and AwsEC2Instance.
* `github.com/aws/aws-sdk-go-v2/service/servicecatalogappregistry`: [v1.17.0](service/servicecatalogappregistry/CHANGELOG.md#v1170-2023-03-27)
* **Feature**: In this release, we started supporting ARN in applicationSpecifier and attributeGroupSpecifier. GetAttributeGroup, ListAttributeGroups and ListAttributeGroupsForApplication APIs will now have CreatedBy field in the response.
* `github.com/aws/aws-sdk-go-v2/service/voiceid`: [v1.13.0](service/voiceid/CHANGELOG.md#v1130-2023-03-27)
* **Feature**: Amazon Connect Voice ID now supports multiple fraudster watchlists. Every domain has a default watchlist where all existing fraudsters are placed by default. Custom watchlists may now be created, managed, and evaluated against for known fraudster detection.
# Release (2023-03-24)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/cloudwatch`: [v1.25.7](service/cloudwatch/CHANGELOG.md#v1257-2023-03-24)
* **Documentation**: Doc-only update to correct alarm actions list
* `github.com/aws/aws-sdk-go-v2/service/comprehend`: [v1.23.0](service/comprehend/CHANGELOG.md#v1230-2023-03-24)
* **Feature**: This release adds a new field (FlywheelArn) to the EntitiesDetectionJobProperties object. The FlywheelArn field is returned in the DescribeEntitiesDetectionJob and ListEntitiesDetectionJobs responses when the EntitiesDetection job is started with a FlywheelArn instead of an EntityRecognizerArn .
* `github.com/aws/aws-sdk-go-v2/service/rds`: [v1.41.0](service/rds/CHANGELOG.md#v1410-2023-03-24)
* **Feature**: Added error code CreateCustomDBEngineVersionFault for when the create custom engine version for Custom engines fails.
# Release (2023-03-23)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/batch`: [v1.22.0](service/batch/CHANGELOG.md#v1220-2023-03-23)
* **Feature**: This feature allows Batch to support configuration of ephemeral storage size for jobs running on FARGATE
* `github.com/aws/aws-sdk-go-v2/service/chimesdkidentity`: [v1.11.0](service/chimesdkidentity/CHANGELOG.md#v1110-2023-03-23)
* **Feature**: AppInstanceBots can be used to add a bot powered by Amazon Lex to chat channels. ExpirationSettings provides automatic resource deletion for AppInstanceUsers.
* `github.com/aws/aws-sdk-go-v2/service/chimesdkmediapipelines`: [v1.3.0](service/chimesdkmediapipelines/CHANGELOG.md#v130-2023-03-23)
* **Feature**: This release adds Amazon Chime SDK call analytics. Call analytics include voice analytics, which provides speaker search and voice tone analysis. These capabilities can be used with Amazon Transcribe and Transcribe Call Analytics to generate machine-learning-powered insights from real-time audio.
* `github.com/aws/aws-sdk-go-v2/service/chimesdkmessaging`: [v1.14.0](service/chimesdkmessaging/CHANGELOG.md#v1140-2023-03-23)
* **Feature**: ExpirationSettings provides automatic resource deletion for Channels.
* `github.com/aws/aws-sdk-go-v2/service/chimesdkvoice`: [v1.3.0](service/chimesdkvoice/CHANGELOG.md#v130-2023-03-23)
* **Feature**: This release adds Amazon Chime SDK call analytics. Call analytics include voice analytics, which provides speaker search and voice tone analysis. These capabilities can be used with Amazon Transcribe and Transcribe Call Analytics to generate machine-learning-powered insights from real-time audio.
* `github.com/aws/aws-sdk-go-v2/service/codeartifact`: [v1.18.0](service/codeartifact/CHANGELOG.md#v1180-2023-03-23)
* **Feature**: Repository CreationTime is added to the CreateRepository and ListRepositories API responses.
* `github.com/aws/aws-sdk-go-v2/service/guardduty`: [v1.19.0](service/guardduty/CHANGELOG.md#v1190-2023-03-23)
* **Feature**: Adds AutoEnableOrganizationMembers attribute to DescribeOrganizationConfiguration and UpdateOrganizationConfiguration APIs.
* `github.com/aws/aws-sdk-go-v2/service/ivsrealtime`: [v1.0.0](service/ivsrealtime/CHANGELOG.md#v100-2023-03-23)
* **Release**: New AWS service client module
* **Feature**: Initial release of the Amazon Interactive Video Service RealTime API.
* `github.com/aws/aws-sdk-go-v2/service/mediaconvert`: [v1.34.0](service/mediaconvert/CHANGELOG.md#v1340-2023-03-23)
* **Feature**: AWS Elemental MediaConvert SDK now supports passthrough of ID3v2 tags for audio inputs to audio-only HLS outputs.
* `github.com/aws/aws-sdk-go-v2/service/sagemaker`: [v1.72.0](service/sagemaker/CHANGELOG.md#v1720-2023-03-23)
* **Feature**: Amazon SageMaker Autopilot adds two new APIs - CreateAutoMLJobV2 and DescribeAutoMLJobV2. Amazon SageMaker Notebook Instances now supports the ml.geospatial.interactive instance type.
* `github.com/aws/aws-sdk-go-v2/service/servicediscovery`: [v1.21.0](service/servicediscovery/CHANGELOG.md#v1210-2023-03-23)
* **Feature**: Reverted the throttling exception RequestLimitExceeded for AWS Cloud Map APIs introduced in SDK version 1.12.424 2023-03-09 to previous exception specified in the ErrorCode.
* `github.com/aws/aws-sdk-go-v2/service/textract`: [v1.21.0](service/textract/CHANGELOG.md#v1210-2023-03-23)
* **Feature**: The AnalyzeDocument - Tables feature adds support for new elements in the API: table titles, footers, section titles, summary cells/tables, and table type.
# Release (2023-03-22)
## Module Highlights
* `github.com/aws/aws-sdk-go-v2/service/iam`: [v1.19.8](service/iam/CHANGELOG.md#v1198-2023-03-22)
* **Documentation**: Documentation updates for AWS Identity and Access Management (IAM).
* `github.com/aws/aws-sdk-go-v2/service/iottwinmaker`: [v1.11.0](service/iottwinmaker/CHANGELOG.md#v1110-2023-03-22)
* **Feature**: This release adds support of adding metadata when creating a new scene or updating an existing scene.
* `github.com/aws/aws-sdk-go-v2/service/networkmanager`: [v1.17.8](service/networkmanager/CHANGELOG.md#v1178-2023-03-22)
* **Documentation**: This release includes an update to create-transit-gateway-route-table-attachment, showing example usage for TransitGatewayRouteTableArn.
* `github.com/aws/aws-sdk-go-v2/service/resiliencehub`: [v1.10.0](service/resiliencehub/CHANGELOG.md#v1100-2023-03-22)
* **Feature**: This release provides customers with the ability to import resources from within an EKS cluster and assess the resiliency of EKS cluster workloads.
* `github.com/aws/aws-sdk-go-v2/service/ssm`: [v1.36.0](service/ssm/CHANGELOG.md#v1360-2023-03-22)
* **Feature**: This Patch Manager release supports creating, updating, and deleting Patch Baselines for AmazonLinux2023, AlmaLinux.
# Release (2023-03-21) # Release (2023-03-21)
## General Highlights ## General Highlights

View File

@ -3,4 +3,4 @@
package aws package aws
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.17.7" const goModuleVersion = "1.18.0"

View File

@ -0,0 +1,94 @@
package middleware
import (
"context"
"fmt"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
"os"
)
const envAwsLambdaFunctionName = "AWS_LAMBDA_FUNCTION_NAME"
const envAmznTraceID = "_X_AMZN_TRACE_ID"
const amznTraceIDHeader = "X-Amzn-Trace-Id"
// AddRecursionDetection adds recursionDetection to the middleware stack
func AddRecursionDetection(stack *middleware.Stack) error {
return stack.Build.Add(&RecursionDetection{}, middleware.After)
}
// RecursionDetection detects Lambda environment and sets its X-Ray trace ID to request header if absent
// to avoid recursion invocation in Lambda
type RecursionDetection struct{}
// ID returns the middleware identifier
func (m *RecursionDetection) ID() string {
return "RecursionDetection"
}
// HandleBuild detects Lambda environment and adds its trace ID to request header if absent
func (m *RecursionDetection) HandleBuild(
ctx context.Context, in middleware.BuildInput, next middleware.BuildHandler,
) (
out middleware.BuildOutput, metadata middleware.Metadata, err error,
) {
req, ok := in.Request.(*smithyhttp.Request)
if !ok {
return out, metadata, fmt.Errorf("unknown request type %T", req)
}
_, hasLambdaEnv := os.LookupEnv(envAwsLambdaFunctionName)
xAmznTraceID, hasTraceID := os.LookupEnv(envAmznTraceID)
value := req.Header.Get(amznTraceIDHeader)
// only set the X-Amzn-Trace-Id header when it is not set initially, the
// current environment is Lambda and the _X_AMZN_TRACE_ID env variable exists
if value != "" || !hasLambdaEnv || !hasTraceID {
return next.HandleBuild(ctx, in)
}
req.Header.Set(amznTraceIDHeader, percentEncode(xAmznTraceID))
return next.HandleBuild(ctx, in)
}
func percentEncode(s string) string {
upperhex := "0123456789ABCDEF"
hexCount := 0
for i := 0; i < len(s); i++ {
c := s[i]
if shouldEncode(c) {
hexCount++
}
}
if hexCount == 0 {
return s
}
required := len(s) + 2*hexCount
t := make([]byte, required)
j := 0
for i := 0; i < len(s); i++ {
if c := s[i]; shouldEncode(c) {
t[j] = '%'
t[j+1] = upperhex[c>>4]
t[j+2] = upperhex[c&15]
j += 3
} else {
t[j] = c
j++
}
}
return string(t)
}
func shouldEncode(c byte) bool {
if 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' || '0' <= c && c <= '9' {
return false
}
switch c {
case '-', '=', ';', ':', '+', '&', '[', ']', '{', '}', '"', '\'', ',':
return false
default:
return true
}
}

View File

@ -95,8 +95,13 @@ func (r RetryableConnectionError) IsErrorRetryable(err error) aws.Ternary {
var timeoutErr interface{ Timeout() bool } var timeoutErr interface{ Timeout() bool }
var urlErr *url.Error var urlErr *url.Error
var netOpErr *net.OpError var netOpErr *net.OpError
var dnsError *net.DNSError
switch { switch {
case errors.As(err, &dnsError):
// NXDOMAIN errors should not be retried
retryable = !dnsError.IsNotFound && dnsError.IsTemporary
case errors.As(err, &conErr) && conErr.ConnectionError(): case errors.As(err, &conErr) && conErr.ConnectionError():
retryable = true retryable = true

View File

@ -1,3 +1,55 @@
# v1.18.25 (2023-05-09)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.24 (2023-05-08)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.23 (2023-05-04)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.22 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.21 (2023-04-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.20 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.19 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.18 (2023-03-16)
* **Bug Fix**: Allow RoleARN to be set as functional option on STS WebIdentityRoleOptions. Fixes aws/aws-sdk-go-v2#2015.
# v1.18.17 (2023-03-14)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.16 (2023-03-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.15 (2023-02-22)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.14 (2023-02-20)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.13 (2023-02-15)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.12 (2023-02-03) # v1.18.12 (2023-02-03)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -3,4 +3,4 @@
package config package config
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.18.12" const goModuleVersion = "1.18.25"

View File

@ -384,10 +384,6 @@ func assumeWebIdentity(ctx context.Context, cfg *aws.Config, filepath string, ro
return fmt.Errorf("token file path is not set") return fmt.Errorf("token file path is not set")
} }
if len(roleARN) == 0 {
return fmt.Errorf("role ARN is not set")
}
optFns := []func(*stscreds.WebIdentityRoleOptions){ optFns := []func(*stscreds.WebIdentityRoleOptions){
func(options *stscreds.WebIdentityRoleOptions) { func(options *stscreds.WebIdentityRoleOptions) {
options.RoleSessionName = sessionName options.RoleSessionName = sessionName
@ -398,11 +394,29 @@ func assumeWebIdentity(ctx context.Context, cfg *aws.Config, filepath string, ro
if err != nil { if err != nil {
return err return err
} }
if found { if found {
optFns = append(optFns, optFn) optFns = append(optFns, optFn)
} }
provider := stscreds.NewWebIdentityRoleProvider(sts.NewFromConfig(*cfg), roleARN, stscreds.IdentityTokenFile(filepath), optFns...) opts := stscreds.WebIdentityRoleOptions{
RoleARN: roleARN,
}
for _, fn := range optFns {
fn(&opts)
}
if len(opts.RoleARN) == 0 {
return fmt.Errorf("role ARN is not set")
}
client := opts.Client
if client == nil {
client = sts.NewFromConfig(*cfg)
}
provider := stscreds.NewWebIdentityRoleProvider(client, roleARN, stscreds.IdentityTokenFile(filepath), optFns...)
cfg.Credentials = provider cfg.Credentials = provider

View File

@ -1,3 +1,51 @@
# v1.13.24 (2023-05-09)
* No change notes available for this release.
# v1.13.23 (2023-05-08)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.22 (2023-05-04)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.21 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.20 (2023-04-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.19 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.18 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.17 (2023-03-14)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.16 (2023-03-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.15 (2023-02-22)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.14 (2023-02-20)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.13 (2023-02-15)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.12 (2023-02-03) # v1.13.12 (2023-02-03)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -3,4 +3,4 @@
package credentials package credentials
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.13.12" const goModuleVersion = "1.13.24"

View File

@ -11,12 +11,11 @@
// # Loading AWS SSO credentials with the AWS shared configuration file // # Loading AWS SSO credentials with the AWS shared configuration file
// //
// You can use configure AWS SSO credentials from the AWS shared configuration file by // You can use configure AWS SSO credentials from the AWS shared configuration file by
// providing the specifying the required keys in the profile: // specifying the required keys in the profile and referencing an sso-session:
// //
// sso_session
// sso_account_id // sso_account_id
// sso_region
// sso_role_name // sso_role_name
// sso_start_url
// //
// For example, the following defines a profile "devsso" and specifies the AWS // For example, the following defines a profile "devsso" and specifies the AWS
// SSO parameters that defines the target account, role, sign-on portal, and // SSO parameters that defines the target account, role, sign-on portal, and
@ -24,11 +23,15 @@
// provided, or an error will be returned. // provided, or an error will be returned.
// //
// [profile devsso] // [profile devsso]
// sso_start_url = https://my-sso-portal.awsapps.com/start // sso_session = dev-session
// sso_role_name = SSOReadOnlyRole // sso_role_name = SSOReadOnlyRole
// sso_region = us-east-1
// sso_account_id = 123456789012 // sso_account_id = 123456789012
// //
// [sso-session dev-session]
// sso_start_url = https://my-sso-portal.awsapps.com/start
// sso_region = us-east-1
// sso_registration_scopes = sso:account:access
//
// Using the config module, you can load the AWS SDK shared configuration, and // Using the config module, you can load the AWS SDK shared configuration, and
// specify that this profile be used to retrieve credentials. For example: // specify that this profile be used to retrieve credentials. For example:
// //
@ -43,10 +46,17 @@
// and provide the necessary information to load and retrieve temporary // and provide the necessary information to load and retrieve temporary
// credentials using an access token from ~/.aws/sso/cache. // credentials using an access token from ~/.aws/sso/cache.
// //
// client := sso.NewFromConfig(cfg) // ssoClient := sso.NewFromConfig(cfg)
// ssoOidcClient := ssooidc.NewFromConfig(cfg)
// tokenPath, err := ssocreds.StandardCachedTokenFilepath("dev-session")
// if err != nil {
// return err
// }
// //
// var provider aws.CredentialsProvider // var provider aws.CredentialsProvider
// provider = ssocreds.New(client, "123456789012", "SSOReadOnlyRole", "us-east-1", "https://my-sso-portal.awsapps.com/start") // provider = ssocreds.New(ssoClient, "123456789012", "SSOReadOnlyRole", "https://my-sso-portal.awsapps.com/start", func(options *ssocreds.Options) {
// options.SSOTokenProvider = ssocreds.NewSSOTokenProvider(ssoOidcClient, tokenPath)
// })
// //
// // Wrap the provider with aws.CredentialsCache to cache the credentials until their expire time // // Wrap the provider with aws.CredentialsCache to cache the credentials until their expire time
// provider = aws.NewCredentialsCache(provider) // provider = aws.NewCredentialsCache(provider)

View File

@ -1,3 +1,27 @@
# v1.13.3 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.2 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.1 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.13.0 (2023-03-14)
* **Feature**: Add flag to disable IMDSv1 fallback
# v1.12.24 (2023-03-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.12.23 (2023-02-20)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.12.22 (2023-02-03) # v1.12.22 (2023-02-03)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -174,6 +174,16 @@ type Options struct {
// The logger writer interface to write logging messages to. // The logger writer interface to write logging messages to.
Logger logging.Logger Logger logging.Logger
// Configure IMDSv1 fallback behavior. By default, the client will attempt
// to fall back to IMDSv1 as needed for backwards compatibility. When set to [aws.FalseTernary]
// the client will return any errors encountered from attempting to fetch a token
// instead of silently using the insecure data flow of IMDSv1.
//
// See [configuring IMDS] for more information.
//
// [configuring IMDS]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-service.html
EnableFallback aws.Ternary
// provides the caching of API tokens used for operation calls. If unset, // provides the caching of API tokens used for operation calls. If unset,
// the API token will not be retrieved for the operation. // the API token will not be retrieved for the operation.
tokenProvider *tokenProvider tokenProvider *tokenProvider

View File

@ -3,4 +3,4 @@
package imds package imds
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.12.22" const goModuleVersion = "1.13.3"

View File

@ -4,12 +4,14 @@ import (
"context" "context"
"errors" "errors"
"fmt" "fmt"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/smithy-go"
"github.com/aws/smithy-go/logging"
"net/http" "net/http"
"sync" "sync"
"sync/atomic" "sync/atomic"
"time" "time"
smithy "github.com/aws/smithy-go"
"github.com/aws/smithy-go/middleware" "github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http" smithyhttp "github.com/aws/smithy-go/transport/http"
) )
@ -68,7 +70,7 @@ func (t *tokenProvider) HandleFinalize(
) ( ) (
out middleware.FinalizeOutput, metadata middleware.Metadata, err error, out middleware.FinalizeOutput, metadata middleware.Metadata, err error,
) { ) {
if !t.enabled() { if t.fallbackEnabled() && !t.enabled() {
// short-circuits to insecure data flow if token provider is disabled. // short-circuits to insecure data flow if token provider is disabled.
return next.HandleFinalize(ctx, input) return next.HandleFinalize(ctx, input)
} }
@ -115,23 +117,15 @@ func (t *tokenProvider) HandleDeserialize(
} }
if resp.StatusCode == http.StatusUnauthorized { // unauthorized if resp.StatusCode == http.StatusUnauthorized { // unauthorized
err = &retryableError{Err: err}
t.enable() t.enable()
err = &retryableError{Err: err, isRetryable: true}
} }
return out, metadata, err return out, metadata, err
} }
type retryableError struct {
Err error
}
func (*retryableError) RetryableError() bool { return true }
func (e *retryableError) Error() string { return e.Err.Error() }
func (t *tokenProvider) getToken(ctx context.Context) (tok *apiToken, err error) { func (t *tokenProvider) getToken(ctx context.Context) (tok *apiToken, err error) {
if !t.enabled() { if t.fallbackEnabled() && !t.enabled() {
return nil, &bypassTokenRetrievalError{ return nil, &bypassTokenRetrievalError{
Err: fmt.Errorf("cannot get API token, provider disabled"), Err: fmt.Errorf("cannot get API token, provider disabled"),
} }
@ -147,7 +141,7 @@ func (t *tokenProvider) getToken(ctx context.Context) (tok *apiToken, err error)
tok, err = t.updateToken(ctx) tok, err = t.updateToken(ctx)
if err != nil { if err != nil {
return nil, fmt.Errorf("cannot get API token, %w", err) return nil, err
} }
return tok, nil return tok, nil
@ -167,17 +161,19 @@ func (t *tokenProvider) updateToken(ctx context.Context) (*apiToken, error) {
TokenTTL: t.tokenTTL, TokenTTL: t.tokenTTL,
}) })
if err != nil { if err != nil {
// change the disabled flag on token provider to true, when error is request timeout error.
var statusErr interface{ HTTPStatusCode() int } var statusErr interface{ HTTPStatusCode() int }
if errors.As(err, &statusErr) { if errors.As(err, &statusErr) {
switch statusErr.HTTPStatusCode() { switch statusErr.HTTPStatusCode() {
// Disable future get token if failed because of 403, 404, or 405
// Disable get token if failed because of 403, 404, or 405
case http.StatusForbidden, case http.StatusForbidden,
http.StatusNotFound, http.StatusNotFound,
http.StatusMethodNotAllowed: http.StatusMethodNotAllowed:
if t.fallbackEnabled() {
logger := middleware.GetLogger(ctx)
logger.Logf(logging.Warn, "falling back to IMDSv1: %v", err)
t.disable() t.disable()
}
// 400 errors are terminal, and need to be upstreamed // 400 errors are terminal, and need to be upstreamed
case http.StatusBadRequest: case http.StatusBadRequest:
@ -192,8 +188,17 @@ func (t *tokenProvider) updateToken(ctx context.Context) (*apiToken, error) {
atomic.StoreUint32(&t.disabled, 1) atomic.StoreUint32(&t.disabled, 1)
} }
// Token couldn't be retrieved, but bypass this, and allow the if !t.fallbackEnabled() {
// request to continue. // NOTE: getToken() is an implementation detail of some outer operation
// (e.g. GetMetadata). It has its own retries that have already been exhausted.
// Mark the underlying error as a terminal error.
err = &retryableError{Err: err, isRetryable: false}
return nil, err
}
// Token couldn't be retrieved, fallback to IMDSv1 insecure flow for this request
// and allow the request to proceed. Future requests _may_ re-attempt fetching a
// token if not disabled.
return nil, &bypassTokenRetrievalError{Err: err} return nil, &bypassTokenRetrievalError{Err: err}
} }
@ -206,21 +211,21 @@ func (t *tokenProvider) updateToken(ctx context.Context) (*apiToken, error) {
return tok, nil return tok, nil
} }
type bypassTokenRetrievalError struct {
Err error
}
func (e *bypassTokenRetrievalError) Error() string {
return fmt.Sprintf("bypass token retrieval, %v", e.Err)
}
func (e *bypassTokenRetrievalError) Unwrap() error { return e.Err }
// enabled returns if the token provider is current enabled or not. // enabled returns if the token provider is current enabled or not.
func (t *tokenProvider) enabled() bool { func (t *tokenProvider) enabled() bool {
return atomic.LoadUint32(&t.disabled) == 0 return atomic.LoadUint32(&t.disabled) == 0
} }
// fallbackEnabled returns false if EnableFallback is [aws.FalseTernary], true otherwise
func (t *tokenProvider) fallbackEnabled() bool {
switch t.client.options.EnableFallback {
case aws.FalseTernary:
return false
default:
return true
}
}
// disable disables the token provider and it will no longer attempt to inject // disable disables the token provider and it will no longer attempt to inject
// the token, nor request updates. // the token, nor request updates.
func (t *tokenProvider) disable() { func (t *tokenProvider) disable() {
@ -235,3 +240,22 @@ func (t *tokenProvider) enable() {
t.tokenMux.Unlock() t.tokenMux.Unlock()
atomic.StoreUint32(&t.disabled, 0) atomic.StoreUint32(&t.disabled, 0)
} }
type bypassTokenRetrievalError struct {
Err error
}
func (e *bypassTokenRetrievalError) Error() string {
return fmt.Sprintf("bypass token retrieval, %v", e.Err)
}
func (e *bypassTokenRetrievalError) Unwrap() error { return e.Err }
type retryableError struct {
Err error
isRetryable bool
}
func (e *retryableError) RetryableError() bool { return e.isRetryable }
func (e *retryableError) Error() string { return e.Err.Error() }

View File

@ -1,3 +1,11 @@
# v1.1.33 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.1.32 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.1.31 (2023-03-21) # v1.1.31 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -3,4 +3,4 @@
package configsources package configsources
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.1.31" const goModuleVersion = "1.1.33"

View File

@ -1,3 +1,11 @@
# v2.4.27 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v2.4.26 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v2.4.25 (2023-03-21) # v2.4.25 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -3,4 +3,4 @@
package endpoints package endpoints
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "2.4.25" const goModuleVersion = "2.4.27"

View File

@ -1,3 +1,23 @@
# v1.3.34 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.3.33 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.3.32 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.3.31 (2023-03-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.3.30 (2023-02-20)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.3.29 (2023-02-03) # v1.3.29 (2023-02-03)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -3,4 +3,4 @@
package ini package ini
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.3.29" const goModuleVersion = "1.3.34"

View File

@ -1,3 +1,11 @@
# v1.9.27 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.9.26 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.9.25 (2023-03-21) # v1.9.25 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -3,4 +3,4 @@
package presignedurl package presignedurl
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.9.25" const goModuleVersion = "1.9.27"

View File

@ -1,3 +1,40 @@
# v1.12.10 (2023-05-04)
* No change notes available for this release.
# v1.12.9 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.12.8 (2023-04-10)
* No change notes available for this release.
# v1.12.7 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.12.6 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.12.5 (2023-03-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.12.4 (2023-02-22)
* **Bug Fix**: Prevent nil pointer dereference when retrieving error codes.
# v1.12.3 (2023-02-20)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.12.2 (2023-02-15)
* **Announcement**: When receiving an error response in restJson-based services, an incorrect error type may have been returned based on the content of the response. This has been fixed via PR #2012 tracked in issue #1910.
* **Bug Fix**: Correct error type parsing for restJson services.
# v1.12.1 (2023-02-03) # v1.12.1 (2023-02-03)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -114,7 +114,7 @@ type Options struct {
Retryer aws.Retryer Retryer aws.Retryer
// The RuntimeEnvironment configuration, only populated if the DefaultsMode is set // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set
// to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig . You
// should not populate this structure programmatically, or rely on the values here // should not populate this structure programmatically, or rely on the values here
// within your applications. // within your applications.
RuntimeEnvironment aws.RuntimeEnvironment RuntimeEnvironment aws.RuntimeEnvironment

View File

@ -10,8 +10,8 @@ import (
smithyhttp "github.com/aws/smithy-go/transport/http" smithyhttp "github.com/aws/smithy-go/transport/http"
) )
// Returns the STS short-term credentials for a given role name that is assigned to // Returns the STS short-term credentials for a given role name that is assigned
// the user. // to the user.
func (c *Client) GetRoleCredentials(ctx context.Context, params *GetRoleCredentialsInput, optFns ...func(*Options)) (*GetRoleCredentialsOutput, error) { func (c *Client) GetRoleCredentials(ctx context.Context, params *GetRoleCredentialsInput, optFns ...func(*Options)) (*GetRoleCredentialsOutput, error) {
if params == nil { if params == nil {
params = &GetRoleCredentialsInput{} params = &GetRoleCredentialsInput{}
@ -30,8 +30,7 @@ func (c *Client) GetRoleCredentials(ctx context.Context, params *GetRoleCredenti
type GetRoleCredentialsInput struct { type GetRoleCredentialsInput struct {
// The token issued by the CreateToken API call. For more information, see // The token issued by the CreateToken API call. For more information, see
// CreateToken // CreateToken (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html)
// (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html)
// in the IAM Identity Center OIDC API Reference Guide. // in the IAM Identity Center OIDC API Reference Guide.
// //
// This member is required. // This member is required.
@ -106,6 +105,9 @@ func (c *Client) addOperationGetRoleCredentialsMiddlewares(stack *middleware.Sta
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetRoleCredentials(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetRoleCredentials(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -30,8 +30,7 @@ func (c *Client) ListAccountRoles(ctx context.Context, params *ListAccountRolesI
type ListAccountRolesInput struct { type ListAccountRolesInput struct {
// The token issued by the CreateToken API call. For more information, see // The token issued by the CreateToken API call. For more information, see
// CreateToken // CreateToken (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html)
// (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html)
// in the IAM Identity Center OIDC API Reference Guide. // in the IAM Identity Center OIDC API Reference Guide.
// //
// This member is required. // This member is required.
@ -112,6 +111,9 @@ func (c *Client) addOperationListAccountRolesMiddlewares(stack *middleware.Stack
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opListAccountRoles(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opListAccountRoles(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -12,8 +12,7 @@ import (
) )
// Lists all AWS accounts assigned to the user. These AWS accounts are assigned by // Lists all AWS accounts assigned to the user. These AWS accounts are assigned by
// the administrator of the account. For more information, see Assign User Access // the administrator of the account. For more information, see Assign User Access (https://docs.aws.amazon.com/singlesignon/latest/userguide/useraccess.html#assignusers)
// (https://docs.aws.amazon.com/singlesignon/latest/userguide/useraccess.html#assignusers)
// in the IAM Identity Center User Guide. This operation returns a paginated // in the IAM Identity Center User Guide. This operation returns a paginated
// response. // response.
func (c *Client) ListAccounts(ctx context.Context, params *ListAccountsInput, optFns ...func(*Options)) (*ListAccountsOutput, error) { func (c *Client) ListAccounts(ctx context.Context, params *ListAccountsInput, optFns ...func(*Options)) (*ListAccountsOutput, error) {
@ -34,8 +33,7 @@ func (c *Client) ListAccounts(ctx context.Context, params *ListAccountsInput, op
type ListAccountsInput struct { type ListAccountsInput struct {
// The token issued by the CreateToken API call. For more information, see // The token issued by the CreateToken API call. For more information, see
// CreateToken // CreateToken (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html)
// (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html)
// in the IAM Identity Center OIDC API Reference Guide. // in the IAM Identity Center OIDC API Reference Guide.
// //
// This member is required. // This member is required.
@ -111,6 +109,9 @@ func (c *Client) addOperationListAccountsMiddlewares(stack *middleware.Stack, op
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opListAccounts(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opListAccounts(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -19,9 +19,8 @@ import (
// temporary AWS credentials are returned to the client. After user logout, any // temporary AWS credentials are returned to the client. After user logout, any
// existing IAM role sessions that were created by using IAM Identity Center // existing IAM role sessions that were created by using IAM Identity Center
// permission sets continue based on the duration configured in the permission set. // permission sets continue based on the duration configured in the permission set.
// For more information, see User authentications // For more information, see User authentications (https://docs.aws.amazon.com/singlesignon/latest/userguide/authconcept.html)
// (https://docs.aws.amazon.com/singlesignon/latest/userguide/authconcept.html) in // in the IAM Identity Center User Guide.
// the IAM Identity Center User Guide.
func (c *Client) Logout(ctx context.Context, params *LogoutInput, optFns ...func(*Options)) (*LogoutOutput, error) { func (c *Client) Logout(ctx context.Context, params *LogoutInput, optFns ...func(*Options)) (*LogoutOutput, error) {
if params == nil { if params == nil {
params = &LogoutInput{} params = &LogoutInput{}
@ -40,8 +39,7 @@ func (c *Client) Logout(ctx context.Context, params *LogoutInput, optFns ...func
type LogoutInput struct { type LogoutInput struct {
// The token issued by the CreateToken API call. For more information, see // The token issued by the CreateToken API call. For more information, see
// CreateToken // CreateToken (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html)
// (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html)
// in the IAM Identity Center OIDC API Reference Guide. // in the IAM Identity Center OIDC API Reference Guide.
// //
// This member is required. // This member is required.
@ -102,6 +100,9 @@ func (c *Client) addOperationLogoutMiddlewares(stack *middleware.Stack, options
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opLogout(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opLogout(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -86,9 +86,9 @@ func awsRestjson1_deserializeOpErrorGetRoleCredentials(response *smithyhttp.Resp
errorCode := "UnknownError" errorCode := "UnknownError"
errorMessage := errorCode errorMessage := errorCode
code := response.Header.Get("X-Amzn-ErrorType") headerCode := response.Header.Get("X-Amzn-ErrorType")
if len(code) != 0 { if len(headerCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(headerCode)
} }
var buff [1024]byte var buff [1024]byte
@ -97,7 +97,7 @@ func awsRestjson1_deserializeOpErrorGetRoleCredentials(response *smithyhttp.Resp
body := io.TeeReader(errorBody, ringBuffer) body := io.TeeReader(errorBody, ringBuffer)
decoder := json.NewDecoder(body) decoder := json.NewDecoder(body)
decoder.UseNumber() decoder.UseNumber()
code, message, err := restjson.GetErrorInfo(decoder) jsonCode, message, err := restjson.GetErrorInfo(decoder)
if err != nil { if err != nil {
var snapshot bytes.Buffer var snapshot bytes.Buffer
io.Copy(&snapshot, ringBuffer) io.Copy(&snapshot, ringBuffer)
@ -109,8 +109,8 @@ func awsRestjson1_deserializeOpErrorGetRoleCredentials(response *smithyhttp.Resp
} }
errorBody.Seek(0, io.SeekStart) errorBody.Seek(0, io.SeekStart)
if len(code) != 0 { if len(headerCode) == 0 && len(jsonCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(jsonCode)
} }
if len(message) != 0 { if len(message) != 0 {
errorMessage = message errorMessage = message
@ -242,9 +242,9 @@ func awsRestjson1_deserializeOpErrorListAccountRoles(response *smithyhttp.Respon
errorCode := "UnknownError" errorCode := "UnknownError"
errorMessage := errorCode errorMessage := errorCode
code := response.Header.Get("X-Amzn-ErrorType") headerCode := response.Header.Get("X-Amzn-ErrorType")
if len(code) != 0 { if len(headerCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(headerCode)
} }
var buff [1024]byte var buff [1024]byte
@ -253,7 +253,7 @@ func awsRestjson1_deserializeOpErrorListAccountRoles(response *smithyhttp.Respon
body := io.TeeReader(errorBody, ringBuffer) body := io.TeeReader(errorBody, ringBuffer)
decoder := json.NewDecoder(body) decoder := json.NewDecoder(body)
decoder.UseNumber() decoder.UseNumber()
code, message, err := restjson.GetErrorInfo(decoder) jsonCode, message, err := restjson.GetErrorInfo(decoder)
if err != nil { if err != nil {
var snapshot bytes.Buffer var snapshot bytes.Buffer
io.Copy(&snapshot, ringBuffer) io.Copy(&snapshot, ringBuffer)
@ -265,8 +265,8 @@ func awsRestjson1_deserializeOpErrorListAccountRoles(response *smithyhttp.Respon
} }
errorBody.Seek(0, io.SeekStart) errorBody.Seek(0, io.SeekStart)
if len(code) != 0 { if len(headerCode) == 0 && len(jsonCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(jsonCode)
} }
if len(message) != 0 { if len(message) != 0 {
errorMessage = message errorMessage = message
@ -407,9 +407,9 @@ func awsRestjson1_deserializeOpErrorListAccounts(response *smithyhttp.Response,
errorCode := "UnknownError" errorCode := "UnknownError"
errorMessage := errorCode errorMessage := errorCode
code := response.Header.Get("X-Amzn-ErrorType") headerCode := response.Header.Get("X-Amzn-ErrorType")
if len(code) != 0 { if len(headerCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(headerCode)
} }
var buff [1024]byte var buff [1024]byte
@ -418,7 +418,7 @@ func awsRestjson1_deserializeOpErrorListAccounts(response *smithyhttp.Response,
body := io.TeeReader(errorBody, ringBuffer) body := io.TeeReader(errorBody, ringBuffer)
decoder := json.NewDecoder(body) decoder := json.NewDecoder(body)
decoder.UseNumber() decoder.UseNumber()
code, message, err := restjson.GetErrorInfo(decoder) jsonCode, message, err := restjson.GetErrorInfo(decoder)
if err != nil { if err != nil {
var snapshot bytes.Buffer var snapshot bytes.Buffer
io.Copy(&snapshot, ringBuffer) io.Copy(&snapshot, ringBuffer)
@ -430,8 +430,8 @@ func awsRestjson1_deserializeOpErrorListAccounts(response *smithyhttp.Response,
} }
errorBody.Seek(0, io.SeekStart) errorBody.Seek(0, io.SeekStart)
if len(code) != 0 { if len(headerCode) == 0 && len(jsonCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(jsonCode)
} }
if len(message) != 0 { if len(message) != 0 {
errorMessage = message errorMessage = message
@ -550,9 +550,9 @@ func awsRestjson1_deserializeOpErrorLogout(response *smithyhttp.Response, metada
errorCode := "UnknownError" errorCode := "UnknownError"
errorMessage := errorCode errorMessage := errorCode
code := response.Header.Get("X-Amzn-ErrorType") headerCode := response.Header.Get("X-Amzn-ErrorType")
if len(code) != 0 { if len(headerCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(headerCode)
} }
var buff [1024]byte var buff [1024]byte
@ -561,7 +561,7 @@ func awsRestjson1_deserializeOpErrorLogout(response *smithyhttp.Response, metada
body := io.TeeReader(errorBody, ringBuffer) body := io.TeeReader(errorBody, ringBuffer)
decoder := json.NewDecoder(body) decoder := json.NewDecoder(body)
decoder.UseNumber() decoder.UseNumber()
code, message, err := restjson.GetErrorInfo(decoder) jsonCode, message, err := restjson.GetErrorInfo(decoder)
if err != nil { if err != nil {
var snapshot bytes.Buffer var snapshot bytes.Buffer
io.Copy(&snapshot, ringBuffer) io.Copy(&snapshot, ringBuffer)
@ -573,8 +573,8 @@ func awsRestjson1_deserializeOpErrorLogout(response *smithyhttp.Response, metada
} }
errorBody.Seek(0, io.SeekStart) errorBody.Seek(0, io.SeekStart)
if len(code) != 0 { if len(headerCode) == 0 && len(jsonCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(jsonCode)
} }
if len(message) != 0 { if len(message) != 0 {
errorMessage = message errorMessage = message

View File

@ -9,14 +9,13 @@
// and roles assigned to them and get federated into the application. Although AWS // and roles assigned to them and get federated into the application. Although AWS
// Single Sign-On was renamed, the sso and identitystore API namespaces will // Single Sign-On was renamed, the sso and identitystore API namespaces will
// continue to retain their original name for backward compatibility purposes. For // continue to retain their original name for backward compatibility purposes. For
// more information, see IAM Identity Center rename // more information, see IAM Identity Center rename (https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed)
// (https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed). // . This reference guide describes the IAM Identity Center Portal operations that
// This reference guide describes the IAM Identity Center Portal operations that
// you can call programatically and includes detailed information on data types and // you can call programatically and includes detailed information on data types and
// errors. AWS provides SDKs that consist of libraries and sample code for various // errors. AWS provides SDKs that consist of libraries and sample code for various
// programming languages and platforms, such as Java, Ruby, .Net, iOS, or Android. // programming languages and platforms, such as Java, Ruby, .Net, iOS, or Android.
// The SDKs provide a convenient way to create programmatic access to IAM Identity // The SDKs provide a convenient way to create programmatic access to IAM Identity
// Center and other AWS services. For more information about the AWS SDKs, // Center and other AWS services. For more information about the AWS SDKs,
// including how to download and install them, see Tools for Amazon Web Services // including how to download and install them, see Tools for Amazon Web Services (http://aws.amazon.com/tools/)
// (http://aws.amazon.com/tools/). // .
package sso package sso

View File

@ -3,4 +3,4 @@
package sso package sso
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.12.1" const goModuleVersion = "1.12.10"

View File

@ -89,6 +89,7 @@ var partitionRegexp = struct {
AwsCn *regexp.Regexp AwsCn *regexp.Regexp
AwsIso *regexp.Regexp AwsIso *regexp.Regexp
AwsIsoB *regexp.Regexp AwsIsoB *regexp.Regexp
AwsIsoE *regexp.Regexp
AwsUsGov *regexp.Regexp AwsUsGov *regexp.Regexp
}{ }{
@ -96,6 +97,7 @@ var partitionRegexp = struct {
AwsCn: regexp.MustCompile("^cn\\-\\w+\\-\\d+$"), AwsCn: regexp.MustCompile("^cn\\-\\w+\\-\\d+$"),
AwsIso: regexp.MustCompile("^us\\-iso\\-\\w+\\-\\d+$"), AwsIso: regexp.MustCompile("^us\\-iso\\-\\w+\\-\\d+$"),
AwsIsoB: regexp.MustCompile("^us\\-isob\\-\\w+\\-\\d+$"), AwsIsoB: regexp.MustCompile("^us\\-isob\\-\\w+\\-\\d+$"),
AwsIsoE: regexp.MustCompile("^eu\\-isoe\\-\\w+\\-\\d+$"),
AwsUsGov: regexp.MustCompile("^us\\-gov\\-\\w+\\-\\d+$"), AwsUsGov: regexp.MustCompile("^us\\-gov\\-\\w+\\-\\d+$"),
} }
@ -390,6 +392,27 @@ var defaultPartitions = endpoints.Partitions{
RegionRegex: partitionRegexp.AwsIsoB, RegionRegex: partitionRegexp.AwsIsoB,
IsRegionalized: true, IsRegionalized: true,
}, },
{
ID: "aws-iso-e",
Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{
{
Variant: endpoints.FIPSVariant,
}: {
Hostname: "portal.sso-fips.{region}.cloud.adc-e.uk",
Protocols: []string{"https"},
SignatureVersions: []string{"v4"},
},
{
Variant: 0,
}: {
Hostname: "portal.sso.{region}.cloud.adc-e.uk",
Protocols: []string{"https"},
SignatureVersions: []string{"v4"},
},
},
RegionRegex: partitionRegexp.AwsIsoE,
IsRegionalized: true,
},
{ {
ID: "aws-us-gov", ID: "aws-us-gov",
Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{ Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{

View File

@ -27,7 +27,7 @@ func (e *InvalidRequestException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InvalidRequestException) ErrorCode() string { func (e *InvalidRequestException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InvalidRequestException" return "InvalidRequestException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -53,7 +53,7 @@ func (e *ResourceNotFoundException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *ResourceNotFoundException) ErrorCode() string { func (e *ResourceNotFoundException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "ResourceNotFoundException" return "ResourceNotFoundException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -80,7 +80,7 @@ func (e *TooManyRequestsException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *TooManyRequestsException) ErrorCode() string { func (e *TooManyRequestsException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "TooManyRequestsException" return "TooManyRequestsException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -107,7 +107,7 @@ func (e *UnauthorizedException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *UnauthorizedException) ErrorCode() string { func (e *UnauthorizedException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "UnauthorizedException" return "UnauthorizedException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride

View File

@ -26,8 +26,7 @@ type RoleCredentials struct {
// The identifier used for the temporary security credentials. For more // The identifier used for the temporary security credentials. For more
// information, see Using Temporary Security Credentials to Request Access to AWS // information, see Using Temporary Security Credentials to Request Access to AWS
// Resources // Resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html)
// in the AWS IAM User Guide. // in the AWS IAM User Guide.
AccessKeyId *string AccessKeyId *string
@ -35,14 +34,12 @@ type RoleCredentials struct {
Expiration int64 Expiration int64
// The key that is used to sign the request. For more information, see Using // The key that is used to sign the request. For more information, see Using
// Temporary Security Credentials to Request Access to AWS Resources // Temporary Security Credentials to Request Access to AWS Resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html)
// in the AWS IAM User Guide. // in the AWS IAM User Guide.
SecretAccessKey *string SecretAccessKey *string
// The token used for temporary credentials. For more information, see Using // The token used for temporary credentials. For more information, see Using
// Temporary Security Credentials to Request Access to AWS Resources // Temporary Security Credentials to Request Access to AWS Resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html)
// in the AWS IAM User Guide. // in the AWS IAM User Guide.
SessionToken *string SessionToken *string

View File

@ -1,3 +1,40 @@
# v1.14.10 (2023-05-04)
* No change notes available for this release.
# v1.14.9 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.14.8 (2023-04-10)
* No change notes available for this release.
# v1.14.7 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.14.6 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.14.5 (2023-03-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.14.4 (2023-02-22)
* **Bug Fix**: Prevent nil pointer dereference when retrieving error codes.
# v1.14.3 (2023-02-20)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.14.2 (2023-02-15)
* **Announcement**: When receiving an error response in restJson-based services, an incorrect error type may have been returned based on the content of the response. This has been fixed via PR #2012 tracked in issue #1910.
* **Bug Fix**: Correct error type parsing for restJson services.
# v1.14.1 (2023-02-03) # v1.14.1 (2023-02-03)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -114,7 +114,7 @@ type Options struct {
Retryer aws.Retryer Retryer aws.Retryer
// The RuntimeEnvironment configuration, only populated if the DefaultsMode is set // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set
// to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig . You
// should not populate this structure programmatically, or rely on the values here // should not populate this structure programmatically, or rely on the values here
// within your applications. // within your applications.
RuntimeEnvironment aws.RuntimeEnvironment RuntimeEnvironment aws.RuntimeEnvironment

View File

@ -65,9 +65,8 @@ type CreateTokenInput struct {
// Currently, refreshToken is not yet implemented and is not supported. For more // Currently, refreshToken is not yet implemented and is not supported. For more
// information about the features and limitations of the current IAM Identity // information about the features and limitations of the current IAM Identity
// Center OIDC implementation, see Considerations for Using this Guide in the IAM // Center OIDC implementation, see Considerations for Using this Guide in the IAM
// Identity Center OIDC API Reference // Identity Center OIDC API Reference (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html)
// (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html). // . The token used to obtain an access token in the event that the access token is
// The token used to obtain an access token in the event that the access token is
// invalid or expired. // invalid or expired.
RefreshToken *string RefreshToken *string
@ -89,22 +88,20 @@ type CreateTokenOutput struct {
// Currently, idToken is not yet implemented and is not supported. For more // Currently, idToken is not yet implemented and is not supported. For more
// information about the features and limitations of the current IAM Identity // information about the features and limitations of the current IAM Identity
// Center OIDC implementation, see Considerations for Using this Guide in the IAM // Center OIDC implementation, see Considerations for Using this Guide in the IAM
// Identity Center OIDC API Reference // Identity Center OIDC API Reference (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html)
// (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html). // . The identifier of the user that associated with the access token, if present.
// The identifier of the user that associated with the access token, if present.
IdToken *string IdToken *string
// Currently, refreshToken is not yet implemented and is not supported. For more // Currently, refreshToken is not yet implemented and is not supported. For more
// information about the features and limitations of the current IAM Identity // information about the features and limitations of the current IAM Identity
// Center OIDC implementation, see Considerations for Using this Guide in the IAM // Center OIDC implementation, see Considerations for Using this Guide in the IAM
// Identity Center OIDC API Reference // Identity Center OIDC API Reference (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html)
// (https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html). // . A token that, if present, can be used to refresh a previously issued access
// A token that, if present, can be used to refresh a previously issued access
// token that might have expired. // token that might have expired.
RefreshToken *string RefreshToken *string
// Used to notify the client that the returned token is an access token. The // Used to notify the client that the returned token is an access token. The
// supported type is BearerToken. // supported type is BearerToken .
TokenType *string TokenType *string
// Metadata pertaining to the operation's result. // Metadata pertaining to the operation's result.
@ -158,6 +155,9 @@ func (c *Client) addOperationCreateTokenMiddlewares(stack *middleware.Stack, opt
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opCreateToken(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opCreateToken(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -40,8 +40,8 @@ type RegisterClientInput struct {
// This member is required. // This member is required.
ClientType *string ClientType *string
// The list of scopes that are defined by the client. Upon authorization, this list // The list of scopes that are defined by the client. Upon authorization, this
// is used to restrict permissions when granting an access token. // list is used to restrict permissions when granting an access token.
Scopes []string Scopes []string
noSmithyDocumentSerde noSmithyDocumentSerde
@ -59,8 +59,8 @@ type RegisterClientOutput struct {
// Indicates the time at which the clientId and clientSecret were issued. // Indicates the time at which the clientId and clientSecret were issued.
ClientIdIssuedAt int64 ClientIdIssuedAt int64
// A secret string generated for the client. The client will use this string to get // A secret string generated for the client. The client will use this string to
// authenticated by the service in subsequent calls. // get authenticated by the service in subsequent calls.
ClientSecret *string ClientSecret *string
// Indicates the time at which the clientId and clientSecret will become invalid. // Indicates the time at which the clientId and clientSecret will become invalid.
@ -120,6 +120,9 @@ func (c *Client) addOperationRegisterClientMiddlewares(stack *middleware.Stack,
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opRegisterClient(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opRegisterClient(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -28,9 +28,9 @@ func (c *Client) StartDeviceAuthorization(ctx context.Context, params *StartDevi
type StartDeviceAuthorizationInput struct { type StartDeviceAuthorizationInput struct {
// The unique identifier string for the client that is registered with IAM Identity // The unique identifier string for the client that is registered with IAM
// Center. This value should come from the persisted result of the RegisterClient // Identity Center. This value should come from the persisted result of the
// API operation. // RegisterClient API operation.
// //
// This member is required. // This member is required.
ClientId *string ClientId *string
@ -42,8 +42,7 @@ type StartDeviceAuthorizationInput struct {
ClientSecret *string ClientSecret *string
// The URL for the AWS access portal. For more information, see Using the AWS // The URL for the AWS access portal. For more information, see Using the AWS
// access portal // access portal (https://docs.aws.amazon.com/singlesignon/latest/userguide/using-the-portal.html)
// (https://docs.aws.amazon.com/singlesignon/latest/userguide/using-the-portal.html)
// in the IAM Identity Center User Guide. // in the IAM Identity Center User Guide.
// //
// This member is required. // This member is required.
@ -73,9 +72,9 @@ type StartDeviceAuthorizationOutput struct {
// device. // device.
VerificationUri *string VerificationUri *string
// An alternate URL that the client can use to automatically launch a browser. This // An alternate URL that the client can use to automatically launch a browser.
// process skips the manual step in which the user visits the verification page and // This process skips the manual step in which the user visits the verification
// enters their code. // page and enters their code.
VerificationUriComplete *string VerificationUriComplete *string
// Metadata pertaining to the operation's result. // Metadata pertaining to the operation's result.
@ -129,6 +128,9 @@ func (c *Client) addOperationStartDeviceAuthorizationMiddlewares(stack *middlewa
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opStartDeviceAuthorization(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opStartDeviceAuthorization(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -85,9 +85,9 @@ func awsRestjson1_deserializeOpErrorCreateToken(response *smithyhttp.Response, m
errorCode := "UnknownError" errorCode := "UnknownError"
errorMessage := errorCode errorMessage := errorCode
code := response.Header.Get("X-Amzn-ErrorType") headerCode := response.Header.Get("X-Amzn-ErrorType")
if len(code) != 0 { if len(headerCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(headerCode)
} }
var buff [1024]byte var buff [1024]byte
@ -96,7 +96,7 @@ func awsRestjson1_deserializeOpErrorCreateToken(response *smithyhttp.Response, m
body := io.TeeReader(errorBody, ringBuffer) body := io.TeeReader(errorBody, ringBuffer)
decoder := json.NewDecoder(body) decoder := json.NewDecoder(body)
decoder.UseNumber() decoder.UseNumber()
code, message, err := restjson.GetErrorInfo(decoder) jsonCode, message, err := restjson.GetErrorInfo(decoder)
if err != nil { if err != nil {
var snapshot bytes.Buffer var snapshot bytes.Buffer
io.Copy(&snapshot, ringBuffer) io.Copy(&snapshot, ringBuffer)
@ -108,8 +108,8 @@ func awsRestjson1_deserializeOpErrorCreateToken(response *smithyhttp.Response, m
} }
errorBody.Seek(0, io.SeekStart) errorBody.Seek(0, io.SeekStart)
if len(code) != 0 { if len(headerCode) == 0 && len(jsonCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(jsonCode)
} }
if len(message) != 0 { if len(message) != 0 {
errorMessage = message errorMessage = message
@ -306,9 +306,9 @@ func awsRestjson1_deserializeOpErrorRegisterClient(response *smithyhttp.Response
errorCode := "UnknownError" errorCode := "UnknownError"
errorMessage := errorCode errorMessage := errorCode
code := response.Header.Get("X-Amzn-ErrorType") headerCode := response.Header.Get("X-Amzn-ErrorType")
if len(code) != 0 { if len(headerCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(headerCode)
} }
var buff [1024]byte var buff [1024]byte
@ -317,7 +317,7 @@ func awsRestjson1_deserializeOpErrorRegisterClient(response *smithyhttp.Response
body := io.TeeReader(errorBody, ringBuffer) body := io.TeeReader(errorBody, ringBuffer)
decoder := json.NewDecoder(body) decoder := json.NewDecoder(body)
decoder.UseNumber() decoder.UseNumber()
code, message, err := restjson.GetErrorInfo(decoder) jsonCode, message, err := restjson.GetErrorInfo(decoder)
if err != nil { if err != nil {
var snapshot bytes.Buffer var snapshot bytes.Buffer
io.Copy(&snapshot, ringBuffer) io.Copy(&snapshot, ringBuffer)
@ -329,8 +329,8 @@ func awsRestjson1_deserializeOpErrorRegisterClient(response *smithyhttp.Response
} }
errorBody.Seek(0, io.SeekStart) errorBody.Seek(0, io.SeekStart)
if len(code) != 0 { if len(headerCode) == 0 && len(jsonCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(jsonCode)
} }
if len(message) != 0 { if len(message) != 0 {
errorMessage = message errorMessage = message
@ -519,9 +519,9 @@ func awsRestjson1_deserializeOpErrorStartDeviceAuthorization(response *smithyhtt
errorCode := "UnknownError" errorCode := "UnknownError"
errorMessage := errorCode errorMessage := errorCode
code := response.Header.Get("X-Amzn-ErrorType") headerCode := response.Header.Get("X-Amzn-ErrorType")
if len(code) != 0 { if len(headerCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(headerCode)
} }
var buff [1024]byte var buff [1024]byte
@ -530,7 +530,7 @@ func awsRestjson1_deserializeOpErrorStartDeviceAuthorization(response *smithyhtt
body := io.TeeReader(errorBody, ringBuffer) body := io.TeeReader(errorBody, ringBuffer)
decoder := json.NewDecoder(body) decoder := json.NewDecoder(body)
decoder.UseNumber() decoder.UseNumber()
code, message, err := restjson.GetErrorInfo(decoder) jsonCode, message, err := restjson.GetErrorInfo(decoder)
if err != nil { if err != nil {
var snapshot bytes.Buffer var snapshot bytes.Buffer
io.Copy(&snapshot, ringBuffer) io.Copy(&snapshot, ringBuffer)
@ -542,8 +542,8 @@ func awsRestjson1_deserializeOpErrorStartDeviceAuthorization(response *smithyhtt
} }
errorBody.Seek(0, io.SeekStart) errorBody.Seek(0, io.SeekStart)
if len(code) != 0 { if len(headerCode) == 0 && len(jsonCode) != 0 {
errorCode = restjson.SanitizeErrorCode(code) errorCode = restjson.SanitizeErrorCode(jsonCode)
} }
if len(message) != 0 { if len(message) != 0 {
errorMessage = message errorMessage = message

View File

@ -1,7 +1,7 @@
// Code generated by smithy-go-codegen DO NOT EDIT. // Code generated by smithy-go-codegen DO NOT EDIT.
// Package ssooidc provides the API client, operations, and parameter types for AWS // Package ssooidc provides the API client, operations, and parameter types for
// SSO OIDC. // AWS SSO OIDC.
// //
// AWS IAM Identity Center (successor to AWS Single Sign-On) OpenID Connect (OIDC) // AWS IAM Identity Center (successor to AWS Single Sign-On) OpenID Connect (OIDC)
// is a web service that enables a client (such as AWS CLI or a native application) // is a web service that enables a client (such as AWS CLI or a native application)
@ -10,37 +10,27 @@
// with IAM Identity Center. Although AWS Single Sign-On was renamed, the sso and // with IAM Identity Center. Although AWS Single Sign-On was renamed, the sso and
// identitystore API namespaces will continue to retain their original name for // identitystore API namespaces will continue to retain their original name for
// backward compatibility purposes. For more information, see IAM Identity Center // backward compatibility purposes. For more information, see IAM Identity Center
// rename // rename (https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed)
// (https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed). // . Considerations for Using This Guide Before you begin using this guide, we
// Considerations for Using This Guide Before you begin using this guide, we
// recommend that you first review the following important information about how // recommend that you first review the following important information about how
// the IAM Identity Center OIDC service works. // the IAM Identity Center OIDC service works.
// // - The IAM Identity Center OIDC service currently implements only the portions
// * The IAM Identity Center OIDC // of the OAuth 2.0 Device Authorization Grant standard (
// service currently implements only the portions of the OAuth 2.0 Device // https://tools.ietf.org/html/rfc8628 (https://tools.ietf.org/html/rfc8628) )
// Authorization Grant standard (https://tools.ietf.org/html/rfc8628 // that are necessary to enable single sign-on authentication with the AWS CLI.
// (https://tools.ietf.org/html/rfc8628)) that are necessary to enable single // Support for other OIDC flows frequently needed for native applications, such as
// sign-on authentication with the AWS CLI. Support for other OIDC flows frequently // Authorization Code Flow (+ PKCE), will be addressed in future releases.
// needed for native applications, such as Authorization Code Flow (+ PKCE), will // - The service emits only OIDC access tokens, such that obtaining a new token
// be addressed in future releases. // (For example, token refresh) requires explicit user re-authentication.
// // - The access tokens provided by this service grant access to all AWS account
// * The service emits only OIDC access tokens, // entitlements assigned to an IAM Identity Center user, not just a particular
// such that obtaining a new token (For example, token refresh) requires explicit // application.
// user re-authentication. // - The documentation in this guide does not describe the mechanism to convert
// // the access token into AWS Auth (“sigv4”) credentials for use with IAM-protected
// * The access tokens provided by this service grant // AWS service endpoints. For more information, see GetRoleCredentials (https://docs.aws.amazon.com/singlesignon/latest/PortalAPIReference/API_GetRoleCredentials.html)
// access to all AWS account entitlements assigned to an IAM Identity Center user,
// not just a particular application.
//
// * The documentation in this guide does not
// describe the mechanism to convert the access token into AWS Auth (“sigv4”)
// credentials for use with IAM-protected AWS service endpoints. For more
// information, see GetRoleCredentials
// (https://docs.aws.amazon.com/singlesignon/latest/PortalAPIReference/API_GetRoleCredentials.html)
// in the IAM Identity Center Portal API Reference Guide. // in the IAM Identity Center Portal API Reference Guide.
// //
// For general information // For general information about IAM Identity Center, see What is IAM Identity
// about IAM Identity Center, see What is IAM Identity Center? // Center? (https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html)
// (https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html) in the // in the IAM Identity Center User Guide.
// IAM Identity Center User Guide.
package ssooidc package ssooidc

View File

@ -3,4 +3,4 @@
package ssooidc package ssooidc
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.14.1" const goModuleVersion = "1.14.10"

View File

@ -89,6 +89,7 @@ var partitionRegexp = struct {
AwsCn *regexp.Regexp AwsCn *regexp.Regexp
AwsIso *regexp.Regexp AwsIso *regexp.Regexp
AwsIsoB *regexp.Regexp AwsIsoB *regexp.Regexp
AwsIsoE *regexp.Regexp
AwsUsGov *regexp.Regexp AwsUsGov *regexp.Regexp
}{ }{
@ -96,6 +97,7 @@ var partitionRegexp = struct {
AwsCn: regexp.MustCompile("^cn\\-\\w+\\-\\d+$"), AwsCn: regexp.MustCompile("^cn\\-\\w+\\-\\d+$"),
AwsIso: regexp.MustCompile("^us\\-iso\\-\\w+\\-\\d+$"), AwsIso: regexp.MustCompile("^us\\-iso\\-\\w+\\-\\d+$"),
AwsIsoB: regexp.MustCompile("^us\\-isob\\-\\w+\\-\\d+$"), AwsIsoB: regexp.MustCompile("^us\\-isob\\-\\w+\\-\\d+$"),
AwsIsoE: regexp.MustCompile("^eu\\-isoe\\-\\w+\\-\\d+$"),
AwsUsGov: regexp.MustCompile("^us\\-gov\\-\\w+\\-\\d+$"), AwsUsGov: regexp.MustCompile("^us\\-gov\\-\\w+\\-\\d+$"),
} }
@ -390,6 +392,27 @@ var defaultPartitions = endpoints.Partitions{
RegionRegex: partitionRegexp.AwsIsoB, RegionRegex: partitionRegexp.AwsIsoB,
IsRegionalized: true, IsRegionalized: true,
}, },
{
ID: "aws-iso-e",
Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{
{
Variant: endpoints.FIPSVariant,
}: {
Hostname: "oidc-fips.{region}.cloud.adc-e.uk",
Protocols: []string{"https"},
SignatureVersions: []string{"v4"},
},
{
Variant: 0,
}: {
Hostname: "oidc.{region}.cloud.adc-e.uk",
Protocols: []string{"https"},
SignatureVersions: []string{"v4"},
},
},
RegionRegex: partitionRegexp.AwsIsoE,
IsRegionalized: true,
},
{ {
ID: "aws-us-gov", ID: "aws-us-gov",
Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{ Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{

View File

@ -29,15 +29,15 @@ func (e *AccessDeniedException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *AccessDeniedException) ErrorCode() string { func (e *AccessDeniedException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "AccessDeniedException" return "AccessDeniedException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
} }
func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
// Indicates that a request to authorize a client with an access user session token // Indicates that a request to authorize a client with an access user session
// is pending. // token is pending.
type AuthorizationPendingException struct { type AuthorizationPendingException struct {
Message *string Message *string
@ -59,7 +59,7 @@ func (e *AuthorizationPendingException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *AuthorizationPendingException) ErrorCode() string { func (e *AuthorizationPendingException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "AuthorizationPendingException" return "AuthorizationPendingException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -89,7 +89,7 @@ func (e *ExpiredTokenException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *ExpiredTokenException) ErrorCode() string { func (e *ExpiredTokenException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "ExpiredTokenException" return "ExpiredTokenException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -119,7 +119,7 @@ func (e *InternalServerException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InternalServerException) ErrorCode() string { func (e *InternalServerException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InternalServerException" return "InternalServerException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -128,7 +128,7 @@ func (e *InternalServerException) ErrorFault() smithy.ErrorFault { return smithy
// Indicates that the clientId or clientSecret in the request is invalid. For // Indicates that the clientId or clientSecret in the request is invalid. For
// example, this can occur when a client sends an incorrect clientId or an expired // example, this can occur when a client sends an incorrect clientId or an expired
// clientSecret. // clientSecret .
type InvalidClientException struct { type InvalidClientException struct {
Message *string Message *string
@ -150,15 +150,15 @@ func (e *InvalidClientException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InvalidClientException) ErrorCode() string { func (e *InvalidClientException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InvalidClientException" return "InvalidClientException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
} }
func (e *InvalidClientException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } func (e *InvalidClientException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
// Indicates that the client information sent in the request during registration is // Indicates that the client information sent in the request during registration
// invalid. // is invalid.
type InvalidClientMetadataException struct { type InvalidClientMetadataException struct {
Message *string Message *string
@ -180,7 +180,7 @@ func (e *InvalidClientMetadataException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InvalidClientMetadataException) ErrorCode() string { func (e *InvalidClientMetadataException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InvalidClientMetadataException" return "InvalidClientMetadataException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -210,7 +210,7 @@ func (e *InvalidGrantException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InvalidGrantException) ErrorCode() string { func (e *InvalidGrantException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InvalidGrantException" return "InvalidGrantException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -240,7 +240,7 @@ func (e *InvalidRequestException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InvalidRequestException) ErrorCode() string { func (e *InvalidRequestException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InvalidRequestException" return "InvalidRequestException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -269,7 +269,7 @@ func (e *InvalidScopeException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InvalidScopeException) ErrorCode() string { func (e *InvalidScopeException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InvalidScopeException" return "InvalidScopeException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -299,7 +299,7 @@ func (e *SlowDownException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *SlowDownException) ErrorCode() string { func (e *SlowDownException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "SlowDownException" return "SlowDownException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -329,7 +329,7 @@ func (e *UnauthorizedClientException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *UnauthorizedClientException) ErrorCode() string { func (e *UnauthorizedClientException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "UnauthorizedClientException" return "UnauthorizedClientException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -358,7 +358,7 @@ func (e *UnsupportedGrantTypeException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *UnsupportedGrantTypeException) ErrorCode() string { func (e *UnsupportedGrantTypeException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "UnsupportedGrantTypeException" return "UnsupportedGrantTypeException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride

View File

@ -1,3 +1,39 @@
# v1.19.0 (2023-05-08)
* **Feature**: Documentation updates for AWS Security Token Service.
# v1.18.11 (2023-05-04)
* No change notes available for this release.
# v1.18.10 (2023-04-24)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.9 (2023-04-10)
* No change notes available for this release.
# v1.18.8 (2023-04-07)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.7 (2023-03-21)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.6 (2023-03-10)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.5 (2023-02-22)
* **Bug Fix**: Prevent nil pointer dereference when retrieving error codes.
# v1.18.4 (2023-02-20)
* **Dependency Update**: Updated to the latest SDK module versions
# v1.18.3 (2023-02-03) # v1.18.3 (2023-02-03)
* **Dependency Update**: Updated to the latest SDK module versions * **Dependency Update**: Updated to the latest SDK module versions

View File

@ -117,7 +117,7 @@ type Options struct {
Retryer aws.Retryer Retryer aws.Retryer
// The RuntimeEnvironment configuration, only populated if the DefaultsMode is set // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set
// to DefaultsModeAuto and is initialized using config.LoadDefaultConfig. You // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig . You
// should not populate this structure programmatically, or rely on the values here // should not populate this structure programmatically, or rely on the values here
// within your applications. // within your applications.
RuntimeEnvironment aws.RuntimeEnvironment RuntimeEnvironment aws.RuntimeEnvironment

View File

@ -16,16 +16,13 @@ import (
// key ID, a secret access key, and a security token. Typically, you use AssumeRole // key ID, a secret access key, and a security token. Typically, you use AssumeRole
// within your account or for cross-account access. For a comparison of AssumeRole // within your account or for cross-account access. For a comparison of AssumeRole
// with other API operations that produce temporary credentials, see Requesting // with other API operations that produce temporary credentials, see Requesting
// Temporary Security Credentials // Temporary Security Credentials (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html) // and Comparing the Amazon Web Services STS API operations (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// and Comparing the Amazon Web Services STS API operations
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// in the IAM User Guide. Permissions The temporary security credentials created by // in the IAM User Guide. Permissions The temporary security credentials created by
// AssumeRole can be used to make API calls to any Amazon Web Services service with // AssumeRole can be used to make API calls to any Amazon Web Services service
// the following exception: You cannot call the Amazon Web Services STS // with the following exception: You cannot call the Amazon Web Services STS
// GetFederationToken or GetSessionToken API operations. (Optional) You can pass // GetFederationToken or GetSessionToken API operations. (Optional) You can pass
// inline or managed session policies // inline or managed session policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// to this operation. You can pass a single JSON policy document to use as an // to this operation. You can pass a single JSON policy document to use as an
// inline session policy. You can also specify up to 10 managed policy Amazon // inline session policy. You can also specify up to 10 managed policy Amazon
// Resource Names (ARNs) to use as managed session policies. The plaintext that you // Resource Names (ARNs) to use as managed session policies. The plaintext that you
@ -36,49 +33,39 @@ import (
// credentials in subsequent Amazon Web Services API calls to access resources in // credentials in subsequent Amazon Web Services API calls to access resources in
// the account that owns the role. You cannot use session policies to grant more // the account that owns the role. You cannot use session policies to grant more
// permissions than those allowed by the identity-based policy of the role that is // permissions than those allowed by the identity-based policy of the role that is
// being assumed. For more information, see Session Policies // being assumed. For more information, see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session) // in the IAM User Guide. When you create a role, you create two policies: a role
// in the IAM User Guide. When you create a role, you create two policies: A role // trust policy that specifies who can assume the role, and a permissions policy
// trust policy that specifies who can assume the role and a permissions policy
// that specifies what can be done with the role. You specify the trusted principal // that specifies what can be done with the role. You specify the trusted principal
// who is allowed to assume the role in the role trust policy. To assume a role // that is allowed to assume the role in the role trust policy. To assume a role
// from a different account, your Amazon Web Services account must be trusted by // from a different account, your Amazon Web Services account must be trusted by
// the role. The trust relationship is defined in the role's trust policy when the // the role. The trust relationship is defined in the role's trust policy when the
// role is created. That trust policy states which accounts are allowed to delegate // role is created. That trust policy states which accounts are allowed to delegate
// that access to users in the account. A user who wants to access a role in a // that access to users in the account. A user who wants to access a role in a
// different account must also have permissions that are delegated from the user // different account must also have permissions that are delegated from the account
// account administrator. The administrator must attach a policy that allows the // administrator. The administrator must attach a policy that allows the user to
// user to call AssumeRole for the ARN of the role in the other account. To allow a // call AssumeRole for the ARN of the role in the other account. To allow a user
// user to assume a role in the same account, you can do either of the // to assume a role in the same account, you can do either of the following:
// following: // - Attach a policy to the user that allows the user to call AssumeRole (as long
// as the role's trust policy trusts the account).
// - Add the user as a principal directly in the role's trust policy.
// //
// * Attach a policy to the user that allows the user to call // You can do either because the roles trust policy acts as an IAM resource-based
// AssumeRole (as long as the role's trust policy trusts the account). // policy. When a resource-based policy grants access to a principal in the same
// // account, no additional identity-based policy is required. For more information
// * Add the // about trust policies and resource-based policies, see IAM Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html)
// user as a principal directly in the role's trust policy. // in the IAM User Guide. Tags (Optional) You can pass tag key-value pairs to your
//
// You can do either
// because the roles trust policy acts as an IAM resource-based policy. When a
// resource-based policy grants access to a principal in the same account, no
// additional identity-based policy is required. For more information about trust
// policies and resource-based policies, see IAM Policies
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html) in the
// IAM User Guide. Tags (Optional) You can pass tag key-value pairs to your
// session. These tags are called session tags. For more information about session // session. These tags are called session tags. For more information about session
// tags, see Passing Session Tags in STS // tags, see Passing Session Tags in STS (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html) in the // in the IAM User Guide. An administrator must grant you the permissions necessary
// IAM User Guide. An administrator must grant you the permissions necessary to // to pass session tags. The administrator can also create granular permissions to
// pass session tags. The administrator can also create granular permissions to
// allow you to pass only specific session tags. For more information, see // allow you to pass only specific session tags. For more information, see
// Tutorial: Using Tags for Attribute-Based Access Control // Tutorial: Using Tags for Attribute-Based Access Control (https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html)
// in the IAM User Guide. You can set the session tags as transitive. Transitive // in the IAM User Guide. You can set the session tags as transitive. Transitive
// tags persist during role chaining. For more information, see Chaining Roles with // tags persist during role chaining. For more information, see Chaining Roles
// Session Tags // with Session Tags (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining)
// in the IAM User Guide. Using MFA with AssumeRole (Optional) You can include // in the IAM User Guide. Using MFA with AssumeRole (Optional) You can include
// multi-factor authentication (MFA) information when you call AssumeRole. This is // multi-factor authentication (MFA) information when you call AssumeRole . This is
// useful for cross-account scenarios to ensure that the user that assumes the role // useful for cross-account scenarios to ensure that the user that assumes the role
// has been authenticated with an Amazon Web Services MFA device. In that scenario, // has been authenticated with an Amazon Web Services MFA device. In that scenario,
// the trust policy of the role being assumed includes a condition that tests for // the trust policy of the role being assumed includes a condition that tests for
@ -86,12 +73,11 @@ import (
// request to assume the role is denied. The condition in a trust policy that tests // request to assume the role is denied. The condition in a trust policy that tests
// for MFA authentication might look like the following example. "Condition": // for MFA authentication might look like the following example. "Condition":
// {"Bool": {"aws:MultiFactorAuthPresent": true}} For more information, see // {"Bool": {"aws:MultiFactorAuthPresent": true}} For more information, see
// Configuring MFA-Protected API Access // Configuring MFA-Protected API Access (https://docs.aws.amazon.com/IAM/latest/UserGuide/MFAProtectedAPI.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/MFAProtectedAPI.html) in the // in the IAM User Guide guide. To use MFA with AssumeRole , you pass values for
// IAM User Guide guide. To use MFA with AssumeRole, you pass values for the // the SerialNumber and TokenCode parameters. The SerialNumber value identifies
// SerialNumber and TokenCode parameters. The SerialNumber value identifies the // the user's hardware or virtual MFA device. The TokenCode is the time-based
// user's hardware or virtual MFA device. The TokenCode is the time-based one-time // one-time password (TOTP) that the MFA device produces.
// password (TOTP) that the MFA device produces.
func (c *Client) AssumeRole(ctx context.Context, params *AssumeRoleInput, optFns ...func(*Options)) (*AssumeRoleOutput, error) { func (c *Client) AssumeRole(ctx context.Context, params *AssumeRoleInput, optFns ...func(*Options)) (*AssumeRoleOutput, error) {
if params == nil { if params == nil {
params = &AssumeRoleInput{} params = &AssumeRoleInput{}
@ -143,16 +129,14 @@ type AssumeRoleInput struct {
// maximum session duration setting for your role. However, if you assume a role // maximum session duration setting for your role. However, if you assume a role
// using role chaining and provide a DurationSeconds parameter value greater than // using role chaining and provide a DurationSeconds parameter value greater than
// one hour, the operation fails. To learn how to view the maximum value for your // one hour, the operation fails. To learn how to view the maximum value for your
// role, see View the Maximum Session Duration Setting for a Role // role, see View the Maximum Session Duration Setting for a Role (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// in the IAM User Guide. By default, the value is set to 3600 seconds. The // in the IAM User Guide. By default, the value is set to 3600 seconds. The
// DurationSeconds parameter is separate from the duration of a console session // DurationSeconds parameter is separate from the duration of a console session
// that you might request using the returned credentials. The request to the // that you might request using the returned credentials. The request to the
// federation endpoint for a console sign-in token takes a SessionDuration // federation endpoint for a console sign-in token takes a SessionDuration
// parameter that specifies the maximum length of the console session. For more // parameter that specifies the maximum length of the console session. For more
// information, see Creating a URL that Enables Federated Users to Access the // information, see Creating a URL that Enables Federated Users to Access the
// Amazon Web Services Management Console // Amazon Web Services Management Console (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html)
// in the IAM User Guide. // in the IAM User Guide.
DurationSeconds *int32 DurationSeconds *int32
@ -165,8 +149,7 @@ type AssumeRoleInput struct {
// administrator of the trusted account. That way, only someone with the ID can // administrator of the trusted account. That way, only someone with the ID can
// assume the role, rather than everyone in the account. For more information about // assume the role, rather than everyone in the account. For more information about
// the external ID, see How to Use an External ID When Granting Access to Your // the external ID, see How to Use an External ID When Granting Access to Your
// Amazon Web Services Resources to a Third Party // Amazon Web Services Resources to a Third Party (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html)
// in the IAM User Guide. The regex used to validate this parameter is a string of // in the IAM User Guide. The regex used to validate this parameter is a string of
// characters consisting of upper- and lower-case alphanumeric characters with no // characters consisting of upper- and lower-case alphanumeric characters with no
// spaces. You can also include underscores or any of the following characters: // spaces. You can also include underscores or any of the following characters:
@ -181,8 +164,7 @@ type AssumeRoleInput struct {
// access resources in the account that owns the role. You cannot use session // access resources in the account that owns the role. You cannot use session
// policies to grant more permissions than those allowed by the identity-based // policies to grant more permissions than those allowed by the identity-based
// policy of the role that is being assumed. For more information, see Session // policy of the role that is being assumed. For more information, see Session
// Policies // Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. The plaintext that you use for both inline and managed // in the IAM User Guide. The plaintext that you use for both inline and managed
// session policies can't exceed 2,048 characters. The JSON policy characters can // session policies can't exceed 2,048 characters. The JSON policy characters can
// be any ASCII character from the space character to the end of the valid // be any ASCII character from the space character to the end of the valid
@ -200,9 +182,8 @@ type AssumeRoleInput struct {
// the role. This parameter is optional. You can provide up to 10 managed policy // the role. This parameter is optional. You can provide up to 10 managed policy
// ARNs. However, the plaintext that you use for both inline and managed session // ARNs. However, the plaintext that you use for both inline and managed session
// policies can't exceed 2,048 characters. For more information about ARNs, see // policies can't exceed 2,048 characters. For more information about ARNs, see
// Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces // Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in // in the Amazon Web Services General Reference. An Amazon Web Services conversion
// the Amazon Web Services General Reference. An Amazon Web Services conversion
// compresses the passed inline session policy, managed policy ARNs, and session // compresses the passed inline session policy, managed policy ARNs, and session
// tags into a packed binary format that has a separate limit. Your request can // tags into a packed binary format that has a separate limit. Your request can
// fail for this limit even if your plaintext meets the other requirements. The // fail for this limit even if your plaintext meets the other requirements. The
@ -214,17 +195,16 @@ type AssumeRoleInput struct {
// Services API calls to access resources in the account that owns the role. You // Services API calls to access resources in the account that owns the role. You
// cannot use session policies to grant more permissions than those allowed by the // cannot use session policies to grant more permissions than those allowed by the
// identity-based policy of the role that is being assumed. For more information, // identity-based policy of the role that is being assumed. For more information,
// see Session Policies // see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. // in the IAM User Guide.
PolicyArns []types.PolicyDescriptorType PolicyArns []types.PolicyDescriptorType
// The identification number of the MFA device that is associated with the user who // The identification number of the MFA device that is associated with the user
// is making the AssumeRole call. Specify this value if the trust policy of the // who is making the AssumeRole call. Specify this value if the trust policy of
// role being assumed includes a condition that requires MFA authentication. The // the role being assumed includes a condition that requires MFA authentication.
// value is either the serial number for a hardware device (such as GAHT12345678) // The value is either the serial number for a hardware device (such as
// or an Amazon Resource Name (ARN) for a virtual device (such as // GAHT12345678 ) or an Amazon Resource Name (ARN) for a virtual device (such as
// arn:aws:iam::123456789012:mfa/user). The regex used to validate this parameter // arn:aws:iam::123456789012:mfa/user ). The regex used to validate this parameter
// is a string of characters consisting of upper- and lower-case alphanumeric // is a string of characters consisting of upper- and lower-case alphanumeric
// characters with no spaces. You can also include underscores or any of the // characters with no spaces. You can also include underscores or any of the
// following characters: =,.@- // following characters: =,.@-
@ -237,24 +217,21 @@ type AssumeRoleInput struct {
// who took actions with a role. You can use the aws:SourceIdentity condition key // who took actions with a role. You can use the aws:SourceIdentity condition key
// to further control access to Amazon Web Services resources based on the value of // to further control access to Amazon Web Services resources based on the value of
// source identity. For more information about using source identity, see Monitor // source identity. For more information about using source identity, see Monitor
// and control actions taken with assumed roles // and control actions taken with assumed roles (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html)
// in the IAM User Guide. The regex used to validate this parameter is a string of // in the IAM User Guide. The regex used to validate this parameter is a string of
// characters consisting of upper- and lower-case alphanumeric characters with no // characters consisting of upper- and lower-case alphanumeric characters with no
// spaces. You can also include underscores or any of the following characters: // spaces. You can also include underscores or any of the following characters:
// =,.@-. You cannot use a value that begins with the text aws:. This prefix is // =,.@-. You cannot use a value that begins with the text aws: . This prefix is
// reserved for Amazon Web Services internal use. // reserved for Amazon Web Services internal use.
SourceIdentity *string SourceIdentity *string
// A list of session tags that you want to pass. Each session tag consists of a key // A list of session tags that you want to pass. Each session tag consists of a
// name and an associated value. For more information about session tags, see // key name and an associated value. For more information about session tags, see
// Tagging Amazon Web Services STS Sessions // Tagging Amazon Web Services STS Sessions (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html) in the // in the IAM User Guide. This parameter is optional. You can pass up to 50 session
// IAM User Guide. This parameter is optional. You can pass up to 50 session tags. // tags. The plaintext session tag keys cant exceed 128 characters, and the values
// The plaintext session tag keys cant exceed 128 characters, and the values cant // cant exceed 256 characters. For these and additional limits, see IAM and STS
// exceed 256 characters. For these and additional limits, see IAM and STS // Character Limits (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// Character Limits
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// in the IAM User Guide. An Amazon Web Services conversion compresses the passed // in the IAM User Guide. An Amazon Web Services conversion compresses the passed
// inline session policy, managed policy ARNs, and session tags into a packed // inline session policy, managed policy ARNs, and session tags into a packed
// binary format that has a separate limit. Your request can fail for this limit // binary format that has a separate limit. Your request can fail for this limit
@ -264,16 +241,15 @@ type AssumeRoleInput struct {
// same key as a tag that is already attached to the role. When you do, session // same key as a tag that is already attached to the role. When you do, session
// tags override a role tag with the same key. Tag keyvalue pairs are not case // tags override a role tag with the same key. Tag keyvalue pairs are not case
// sensitive, but case is preserved. This means that you cannot have separate // sensitive, but case is preserved. This means that you cannot have separate
// Department and department tag keys. Assume that the role has the // Department and department tag keys. Assume that the role has the Department =
// Department=Marketing tag and you pass the department=engineering session tag. // Marketing tag and you pass the department = engineering session tag. Department
// Department and department are not saved as separate tags, and the session tag // and department are not saved as separate tags, and the session tag passed in
// passed in the request takes precedence over the role tag. Additionally, if you // the request takes precedence over the role tag. Additionally, if you used
// used temporary credentials to perform this operation, the new session inherits // temporary credentials to perform this operation, the new session inherits any
// any transitive session tags from the calling session. If you pass a session tag // transitive session tags from the calling session. If you pass a session tag with
// with the same key as an inherited tag, the operation fails. To view the // the same key as an inherited tag, the operation fails. To view the inherited
// inherited tags for a session, see the CloudTrail logs. For more information, see // tags for a session, see the CloudTrail logs. For more information, see Viewing
// Viewing Session Tags in CloudTrail // Session Tags in CloudTrail (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_ctlogs)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_ctlogs)
// in the IAM User Guide. // in the IAM User Guide.
Tags []types.Tag Tags []types.Tag
@ -285,11 +261,10 @@ type AssumeRoleInput struct {
// sequence of six numeric digits. // sequence of six numeric digits.
TokenCode *string TokenCode *string
// A list of keys for session tags that you want to set as transitive. If you set a // A list of keys for session tags that you want to set as transitive. If you set
// tag key as transitive, the corresponding key and value passes to subsequent // a tag key as transitive, the corresponding key and value passes to subsequent
// sessions in a role chain. For more information, see Chaining Roles with Session // sessions in a role chain. For more information, see Chaining Roles with Session
// Tags // Tags (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining)
// in the IAM User Guide. This parameter is optional. When you set session tags as // in the IAM User Guide. This parameter is optional. When you set session tags as
// transitive, the session policy and session tags packed binary limit is not // transitive, the session policy and session tags packed binary limit is not
// affected. If you choose not to specify a transitive tag key, then no tags are // affected. If you choose not to specify a transitive tag key, then no tags are
@ -308,7 +283,7 @@ type AssumeRoleOutput struct {
// that you can use to refer to the resulting temporary security credentials. For // that you can use to refer to the resulting temporary security credentials. For
// example, you can reference these credentials as a principal in a resource-based // example, you can reference these credentials as a principal in a resource-based
// policy by using the ARN or assumed role ID. The ARN and ID include the // policy by using the ARN or assumed role ID. The ARN and ID include the
// RoleSessionName that you specified when you called AssumeRole. // RoleSessionName that you specified when you called AssumeRole .
AssumedRoleUser *types.AssumedRoleUser AssumedRoleUser *types.AssumedRoleUser
// The temporary security credentials, which include an access key ID, a secret // The temporary security credentials, which include an access key ID, a secret
@ -330,8 +305,7 @@ type AssumeRoleOutput struct {
// who took actions with a role. You can use the aws:SourceIdentity condition key // who took actions with a role. You can use the aws:SourceIdentity condition key
// to further control access to Amazon Web Services resources based on the value of // to further control access to Amazon Web Services resources based on the value of
// source identity. For more information about using source identity, see Monitor // source identity. For more information about using source identity, see Monitor
// and control actions taken with assumed roles // and control actions taken with assumed roles (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html)
// in the IAM User Guide. The regex used to validate this parameter is a string of // in the IAM User Guide. The regex used to validate this parameter is a string of
// characters consisting of upper- and lower-case alphanumeric characters with no // characters consisting of upper- and lower-case alphanumeric characters with no
// spaces. You can also include underscores or any of the following characters: // spaces. You can also include underscores or any of the following characters:
@ -395,6 +369,9 @@ func (c *Client) addOperationAssumeRoleMiddlewares(stack *middleware.Stack, opti
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opAssumeRole(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opAssumeRole(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -15,10 +15,8 @@ import (
// mechanism for tying an enterprise identity store or directory to role-based // mechanism for tying an enterprise identity store or directory to role-based
// Amazon Web Services access without user-specific credentials or configuration. // Amazon Web Services access without user-specific credentials or configuration.
// For a comparison of AssumeRoleWithSAML with the other API operations that // For a comparison of AssumeRoleWithSAML with the other API operations that
// produce temporary credentials, see Requesting Temporary Security Credentials // produce temporary credentials, see Requesting Temporary Security Credentials (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html) // and Comparing the Amazon Web Services STS API operations (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// and Comparing the Amazon Web Services STS API operations
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// in the IAM User Guide. The temporary security credentials returned by this // in the IAM User Guide. The temporary security credentials returned by this
// operation consist of an access key ID, a secret access key, and a security // operation consist of an access key ID, a secret access key, and a security
// token. Applications can use these temporary security credentials to sign calls // token. Applications can use these temporary security credentials to sign calls
@ -31,15 +29,12 @@ import (
// DurationSeconds value from 900 seconds (15 minutes) up to the maximum session // DurationSeconds value from 900 seconds (15 minutes) up to the maximum session
// duration setting for the role. This setting can have a value from 1 hour to 12 // duration setting for the role. This setting can have a value from 1 hour to 12
// hours. To learn how to view the maximum value for your role, see View the // hours. To learn how to view the maximum value for your role, see View the
// Maximum Session Duration Setting for a Role // Maximum Session Duration Setting for a Role (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// in the IAM User Guide. The maximum session duration limit applies when you use // in the IAM User Guide. The maximum session duration limit applies when you use
// the AssumeRole* API operations or the assume-role* CLI commands. However the // the AssumeRole* API operations or the assume-role* CLI commands. However the
// limit does not apply when you use those operations to create a console URL. For // limit does not apply when you use those operations to create a console URL. For
// more information, see Using IAM Roles // more information, see Using IAM Roles (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html) in the IAM // in the IAM User Guide. Role chaining (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html#iam-term-role-chaining)
// User Guide. Role chaining
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html#iam-term-role-chaining)
// limits your CLI or Amazon Web Services API role session to a maximum of one // limits your CLI or Amazon Web Services API role session to a maximum of one
// hour. When you use the AssumeRole API operation to assume a role, you can // hour. When you use the AssumeRole API operation to assume a role, you can
// specify the duration of your role session with the DurationSeconds parameter. // specify the duration of your role session with the DurationSeconds parameter.
@ -50,8 +45,7 @@ import (
// credentials created by AssumeRoleWithSAML can be used to make API calls to any // credentials created by AssumeRoleWithSAML can be used to make API calls to any
// Amazon Web Services service with the following exception: you cannot call the // Amazon Web Services service with the following exception: you cannot call the
// STS GetFederationToken or GetSessionToken API operations. (Optional) You can // STS GetFederationToken or GetSessionToken API operations. (Optional) You can
// pass inline or managed session policies // pass inline or managed session policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// to this operation. You can pass a single JSON policy document to use as an // to this operation. You can pass a single JSON policy document to use as an
// inline session policy. You can also specify up to 10 managed policy Amazon // inline session policy. You can also specify up to 10 managed policy Amazon
// Resource Names (ARNs) to use as managed session policies. The plaintext that you // Resource Names (ARNs) to use as managed session policies. The plaintext that you
@ -62,8 +56,7 @@ import (
// credentials in subsequent Amazon Web Services API calls to access resources in // credentials in subsequent Amazon Web Services API calls to access resources in
// the account that owns the role. You cannot use session policies to grant more // the account that owns the role. You cannot use session policies to grant more
// permissions than those allowed by the identity-based policy of the role that is // permissions than those allowed by the identity-based policy of the role that is
// being assumed. For more information, see Session Policies // being assumed. For more information, see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. Calling AssumeRoleWithSAML does not require the use of // in the IAM User Guide. Calling AssumeRoleWithSAML does not require the use of
// Amazon Web Services security credentials. The identity of the caller is // Amazon Web Services security credentials. The identity of the caller is
// validated by using keys in the metadata document that is uploaded for the SAML // validated by using keys in the metadata document that is uploaded for the SAML
@ -71,16 +64,14 @@ import (
// result in an entry in your CloudTrail logs. The entry includes the value in the // result in an entry in your CloudTrail logs. The entry includes the value in the
// NameID element of the SAML assertion. We recommend that you use a NameIDType // NameID element of the SAML assertion. We recommend that you use a NameIDType
// that is not associated with any personally identifiable information (PII). For // that is not associated with any personally identifiable information (PII). For
// example, you could instead use the persistent identifier // example, you could instead use the persistent identifier (
// (urn:oasis:names:tc:SAML:2.0:nameid-format:persistent). Tags (Optional) You can // urn:oasis:names:tc:SAML:2.0:nameid-format:persistent ). Tags (Optional) You can
// configure your IdP to pass attributes into your SAML assertion as session tags. // configure your IdP to pass attributes into your SAML assertion as session tags.
// Each session tag consists of a key name and an associated value. For more // Each session tag consists of a key name and an associated value. For more
// information about session tags, see Passing Session Tags in STS // information about session tags, see Passing Session Tags in STS (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html) in the // in the IAM User Guide. You can pass up to 50 session tags. The plaintext session
// IAM User Guide. You can pass up to 50 session tags. The plaintext session tag // tag keys cant exceed 128 characters and the values cant exceed 256 characters.
// keys cant exceed 128 characters and the values cant exceed 256 characters. For // For these and additional limits, see IAM and STS Character Limits (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// these and additional limits, see IAM and STS Character Limits
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// in the IAM User Guide. An Amazon Web Services conversion compresses the passed // in the IAM User Guide. An Amazon Web Services conversion compresses the passed
// inline session policy, managed policy ARNs, and session tags into a packed // inline session policy, managed policy ARNs, and session tags into a packed
// binary format that has a separate limit. Your request can fail for this limit // binary format that has a separate limit. Your request can fail for this limit
@ -91,35 +82,24 @@ import (
// override the role's tags with the same key. An administrator must grant you the // override the role's tags with the same key. An administrator must grant you the
// permissions necessary to pass session tags. The administrator can also create // permissions necessary to pass session tags. The administrator can also create
// granular permissions to allow you to pass only specific session tags. For more // granular permissions to allow you to pass only specific session tags. For more
// information, see Tutorial: Using Tags for Attribute-Based Access Control // information, see Tutorial: Using Tags for Attribute-Based Access Control (https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html)
// in the IAM User Guide. You can set the session tags as transitive. Transitive // in the IAM User Guide. You can set the session tags as transitive. Transitive
// tags persist during role chaining. For more information, see Chaining Roles with // tags persist during role chaining. For more information, see Chaining Roles
// Session Tags // with Session Tags (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining)
// in the IAM User Guide. SAML Configuration Before your application can call // in the IAM User Guide. SAML Configuration Before your application can call
// AssumeRoleWithSAML, you must configure your SAML identity provider (IdP) to // AssumeRoleWithSAML , you must configure your SAML identity provider (IdP) to
// issue the claims required by Amazon Web Services. Additionally, you must use // issue the claims required by Amazon Web Services. Additionally, you must use
// Identity and Access Management (IAM) to create a SAML provider entity in your // Identity and Access Management (IAM) to create a SAML provider entity in your
// Amazon Web Services account that represents your identity provider. You must // Amazon Web Services account that represents your identity provider. You must
// also create an IAM role that specifies this SAML provider in its trust policy. // also create an IAM role that specifies this SAML provider in its trust policy.
// For more information, see the following resources: // For more information, see the following resources:
// // - About SAML 2.0-based Federation (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html)
// * About SAML 2.0-based
// Federation
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html)
// in the IAM User Guide. // in the IAM User Guide.
// // - Creating SAML Identity Providers (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_saml.html)
// * Creating SAML Identity Providers
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_saml.html)
// in the IAM User Guide. // in the IAM User Guide.
// // - Configuring a Relying Party and Claims (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_saml_relying-party.html)
// * Configuring a Relying Party and Claims
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_saml_relying-party.html)
// in the IAM User Guide. // in the IAM User Guide.
// // - Creating a Role for SAML 2.0 Federation (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-idp_saml.html)
// * Creating a Role for SAML 2.0 Federation
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-idp_saml.html)
// in the IAM User Guide. // in the IAM User Guide.
func (c *Client) AssumeRoleWithSAML(ctx context.Context, params *AssumeRoleWithSAMLInput, optFns ...func(*Options)) (*AssumeRoleWithSAMLOutput, error) { func (c *Client) AssumeRoleWithSAML(ctx context.Context, params *AssumeRoleWithSAMLInput, optFns ...func(*Options)) (*AssumeRoleWithSAMLOutput, error) {
if params == nil { if params == nil {
@ -150,8 +130,7 @@ type AssumeRoleWithSAMLInput struct {
RoleArn *string RoleArn *string
// The base64 encoded SAML authentication response provided by the IdP. For more // The base64 encoded SAML authentication response provided by the IdP. For more
// information, see Configuring a Relying Party and Adding Claims // information, see Configuring a Relying Party and Adding Claims (https://docs.aws.amazon.com/IAM/latest/UserGuide/create-role-saml-IdP-tasks.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/create-role-saml-IdP-tasks.html)
// in the IAM User Guide. // in the IAM User Guide.
// //
// This member is required. // This member is required.
@ -166,16 +145,14 @@ type AssumeRoleWithSAMLInput struct {
// than this setting, the operation fails. For example, if you specify a session // than this setting, the operation fails. For example, if you specify a session
// duration of 12 hours, but your administrator set the maximum session duration to // duration of 12 hours, but your administrator set the maximum session duration to
// 6 hours, your operation fails. To learn how to view the maximum value for your // 6 hours, your operation fails. To learn how to view the maximum value for your
// role, see View the Maximum Session Duration Setting for a Role // role, see View the Maximum Session Duration Setting for a Role (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// in the IAM User Guide. By default, the value is set to 3600 seconds. The // in the IAM User Guide. By default, the value is set to 3600 seconds. The
// DurationSeconds parameter is separate from the duration of a console session // DurationSeconds parameter is separate from the duration of a console session
// that you might request using the returned credentials. The request to the // that you might request using the returned credentials. The request to the
// federation endpoint for a console sign-in token takes a SessionDuration // federation endpoint for a console sign-in token takes a SessionDuration
// parameter that specifies the maximum length of the console session. For more // parameter that specifies the maximum length of the console session. For more
// information, see Creating a URL that Enables Federated Users to Access the // information, see Creating a URL that Enables Federated Users to Access the
// Amazon Web Services Management Console // Amazon Web Services Management Console (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html)
// in the IAM User Guide. // in the IAM User Guide.
DurationSeconds *int32 DurationSeconds *int32
@ -187,8 +164,7 @@ type AssumeRoleWithSAMLInput struct {
// access resources in the account that owns the role. You cannot use session // access resources in the account that owns the role. You cannot use session
// policies to grant more permissions than those allowed by the identity-based // policies to grant more permissions than those allowed by the identity-based
// policy of the role that is being assumed. For more information, see Session // policy of the role that is being assumed. For more information, see Session
// Policies // Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. The plaintext that you use for both inline and managed // in the IAM User Guide. The plaintext that you use for both inline and managed
// session policies can't exceed 2,048 characters. The JSON policy characters can // session policies can't exceed 2,048 characters. The JSON policy characters can
// be any ASCII character from the space character to the end of the valid // be any ASCII character from the space character to the end of the valid
@ -206,9 +182,8 @@ type AssumeRoleWithSAMLInput struct {
// the role. This parameter is optional. You can provide up to 10 managed policy // the role. This parameter is optional. You can provide up to 10 managed policy
// ARNs. However, the plaintext that you use for both inline and managed session // ARNs. However, the plaintext that you use for both inline and managed session
// policies can't exceed 2,048 characters. For more information about ARNs, see // policies can't exceed 2,048 characters. For more information about ARNs, see
// Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces // Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in // in the Amazon Web Services General Reference. An Amazon Web Services conversion
// the Amazon Web Services General Reference. An Amazon Web Services conversion
// compresses the passed inline session policy, managed policy ARNs, and session // compresses the passed inline session policy, managed policy ARNs, and session
// tags into a packed binary format that has a separate limit. Your request can // tags into a packed binary format that has a separate limit. Your request can
// fail for this limit even if your plaintext meets the other requirements. The // fail for this limit even if your plaintext meets the other requirements. The
@ -220,8 +195,7 @@ type AssumeRoleWithSAMLInput struct {
// Services API calls to access resources in the account that owns the role. You // Services API calls to access resources in the account that owns the role. You
// cannot use session policies to grant more permissions than those allowed by the // cannot use session policies to grant more permissions than those allowed by the
// identity-based policy of the role that is being assumed. For more information, // identity-based policy of the role that is being assumed. For more information,
// see Session Policies // see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. // in the IAM User Guide.
PolicyArns []types.PolicyDescriptorType PolicyArns []types.PolicyDescriptorType
@ -251,19 +225,12 @@ type AssumeRoleWithSAMLOutput struct {
Issuer *string Issuer *string
// A hash value based on the concatenation of the following: // A hash value based on the concatenation of the following:
// // - The Issuer response value.
// * The Issuer response // - The Amazon Web Services account ID.
// value. // - The friendly name (the last part of the ARN) of the SAML provider in IAM.
// // The combination of NameQualifier and Subject can be used to uniquely identify a
// * The Amazon Web Services account ID. // user. The following pseudocode shows how the hash value is calculated: BASE64 (
// // SHA1 ( "https://example.com/saml" + "123456789012" + "/MySAMLIdP" ) )
// * The friendly name (the last
// part of the ARN) of the SAML provider in IAM.
//
// The combination of NameQualifier
// and Subject can be used to uniquely identify a federated user. The following
// pseudocode shows how the hash value is calculated: BASE64 ( SHA1 (
// "https://example.com/saml" + "123456789012" + "/MySAMLIdP" ) )
NameQualifier *string NameQualifier *string
// A percentage value that indicates the packed size of the session policies and // A percentage value that indicates the packed size of the session policies and
@ -272,20 +239,18 @@ type AssumeRoleWithSAMLOutput struct {
// allowed space. // allowed space.
PackedPolicySize *int32 PackedPolicySize *int32
// The value in the SourceIdentity attribute in the SAML assertion. You can require // The value in the SourceIdentity attribute in the SAML assertion. You can
// users to set a source identity value when they assume a role. You do this by // require users to set a source identity value when they assume a role. You do
// using the sts:SourceIdentity condition key in a role trust policy. That way, // this by using the sts:SourceIdentity condition key in a role trust policy. That
// actions that are taken with the role are associated with that user. After the // way, actions that are taken with the role are associated with that user. After
// source identity is set, the value cannot be changed. It is present in the // the source identity is set, the value cannot be changed. It is present in the
// request for all actions that are taken by the role and persists across chained // request for all actions that are taken by the role and persists across chained
// role // role (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts#iam-term-role-chaining)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts#iam-term-role-chaining)
// sessions. You can configure your SAML identity provider to use an attribute // sessions. You can configure your SAML identity provider to use an attribute
// associated with your users, like user name or email, as the source identity when // associated with your users, like user name or email, as the source identity when
// calling AssumeRoleWithSAML. You do this by adding an attribute to the SAML // calling AssumeRoleWithSAML . You do this by adding an attribute to the SAML
// assertion. For more information about using source identity, see Monitor and // assertion. For more information about using source identity, see Monitor and
// control actions taken with assumed roles // control actions taken with assumed roles (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html)
// in the IAM User Guide. The regex used to validate this parameter is a string of // in the IAM User Guide. The regex used to validate this parameter is a string of
// characters consisting of upper- and lower-case alphanumeric characters with no // characters consisting of upper- and lower-case alphanumeric characters with no
// spaces. You can also include underscores or any of the following characters: // spaces. You can also include underscores or any of the following characters:
@ -297,10 +262,10 @@ type AssumeRoleWithSAMLOutput struct {
// The format of the name ID, as defined by the Format attribute in the NameID // The format of the name ID, as defined by the Format attribute in the NameID
// element of the SAML assertion. Typical examples of the format are transient or // element of the SAML assertion. Typical examples of the format are transient or
// persistent. If the format includes the prefix // persistent . If the format includes the prefix
// urn:oasis:names:tc:SAML:2.0:nameid-format, that prefix is removed. For example, // urn:oasis:names:tc:SAML:2.0:nameid-format , that prefix is removed. For example,
// urn:oasis:names:tc:SAML:2.0:nameid-format:transient is returned as transient. If // urn:oasis:names:tc:SAML:2.0:nameid-format:transient is returned as transient .
// the format includes any other prefix, the format is returned with no // If the format includes any other prefix, the format is returned with no
// modifications. // modifications.
SubjectType *string SubjectType *string
@ -355,6 +320,9 @@ func (c *Client) addOperationAssumeRoleWithSAMLMiddlewares(stack *middleware.Sta
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opAssumeRoleWithSAML(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opAssumeRoleWithSAML(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -14,54 +14,44 @@ import (
// authenticated in a mobile or web application with a web identity provider. // authenticated in a mobile or web application with a web identity provider.
// Example providers include the OAuth 2.0 providers Login with Amazon and // Example providers include the OAuth 2.0 providers Login with Amazon and
// Facebook, or any OpenID Connect-compatible identity provider such as Google or // Facebook, or any OpenID Connect-compatible identity provider such as Google or
// Amazon Cognito federated identities // Amazon Cognito federated identities (https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html)
// (https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html). // . For mobile applications, we recommend that you use Amazon Cognito. You can use
// For mobile applications, we recommend that you use Amazon Cognito. You can use // Amazon Cognito with the Amazon Web Services SDK for iOS Developer Guide (http://aws.amazon.com/sdkforios/)
// Amazon Cognito with the Amazon Web Services SDK for iOS Developer Guide // and the Amazon Web Services SDK for Android Developer Guide (http://aws.amazon.com/sdkforandroid/)
// (http://aws.amazon.com/sdkforios/) and the Amazon Web Services SDK for Android // to uniquely identify a user. You can also supply the user with a consistent
// Developer Guide (http://aws.amazon.com/sdkforandroid/) to uniquely identify a // identity throughout the lifetime of an application. To learn more about Amazon
// user. You can also supply the user with a consistent identity throughout the // Cognito, see Amazon Cognito identity pools (https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html)
// lifetime of an application. To learn more about Amazon Cognito, see Amazon // in Amazon Cognito Developer Guide. Calling AssumeRoleWithWebIdentity does not
// Cognito Overview // require the use of Amazon Web Services security credentials. Therefore, you can
// (https://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/cognito-auth.html#d0e840) // distribute an application (for example, on mobile devices) that requests
// in Amazon Web Services SDK for Android Developer Guide and Amazon Cognito // temporary security credentials without including long-term Amazon Web Services
// Overview // credentials in the application. You also don't need to deploy server-based proxy
// (https://docs.aws.amazon.com/mobile/sdkforios/developerguide/cognito-auth.html#d0e664) // services that use long-term Amazon Web Services credentials. Instead, the
// in the Amazon Web Services SDK for iOS Developer Guide. Calling // identity of the caller is validated by using a token from the web identity
// AssumeRoleWithWebIdentity does not require the use of Amazon Web Services // provider. For a comparison of AssumeRoleWithWebIdentity with the other API
// security credentials. Therefore, you can distribute an application (for example, // operations that produce temporary credentials, see Requesting Temporary
// on mobile devices) that requests temporary security credentials without // Security Credentials (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html)
// including long-term Amazon Web Services credentials in the application. You also // and Comparing the Amazon Web Services STS API operations (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// don't need to deploy server-based proxy services that use long-term Amazon Web
// Services credentials. Instead, the identity of the caller is validated by using
// a token from the web identity provider. For a comparison of
// AssumeRoleWithWebIdentity with the other API operations that produce temporary
// credentials, see Requesting Temporary Security Credentials
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html)
// and Comparing the Amazon Web Services STS API operations
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// in the IAM User Guide. The temporary security credentials returned by this API // in the IAM User Guide. The temporary security credentials returned by this API
// consist of an access key ID, a secret access key, and a security token. // consist of an access key ID, a secret access key, and a security token.
// Applications can use these temporary security credentials to sign calls to // Applications can use these temporary security credentials to sign calls to
// Amazon Web Services service API operations. Session Duration By default, the // Amazon Web Services service API operations. Session Duration By default, the
// temporary security credentials created by AssumeRoleWithWebIdentity last for one // temporary security credentials created by AssumeRoleWithWebIdentity last for
// hour. However, you can use the optional DurationSeconds parameter to specify the // one hour. However, you can use the optional DurationSeconds parameter to
// duration of your session. You can provide a value from 900 seconds (15 minutes) // specify the duration of your session. You can provide a value from 900 seconds
// up to the maximum session duration setting for the role. This setting can have a // (15 minutes) up to the maximum session duration setting for the role. This
// value from 1 hour to 12 hours. To learn how to view the maximum value for your // setting can have a value from 1 hour to 12 hours. To learn how to view the
// role, see View the Maximum Session Duration Setting for a Role // maximum value for your role, see View the Maximum Session Duration Setting for
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session) // a Role (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// in the IAM User Guide. The maximum session duration limit applies when you use // in the IAM User Guide. The maximum session duration limit applies when you use
// the AssumeRole* API operations or the assume-role* CLI commands. However the // the AssumeRole* API operations or the assume-role* CLI commands. However the
// limit does not apply when you use those operations to create a console URL. For // limit does not apply when you use those operations to create a console URL. For
// more information, see Using IAM Roles // more information, see Using IAM Roles (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html) in the IAM // in the IAM User Guide. Permissions The temporary security credentials created by
// User Guide. Permissions The temporary security credentials created by
// AssumeRoleWithWebIdentity can be used to make API calls to any Amazon Web // AssumeRoleWithWebIdentity can be used to make API calls to any Amazon Web
// Services service with the following exception: you cannot call the STS // Services service with the following exception: you cannot call the STS
// GetFederationToken or GetSessionToken API operations. (Optional) You can pass // GetFederationToken or GetSessionToken API operations. (Optional) You can pass
// inline or managed session policies // inline or managed session policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// to this operation. You can pass a single JSON policy document to use as an // to this operation. You can pass a single JSON policy document to use as an
// inline session policy. You can also specify up to 10 managed policy Amazon // inline session policy. You can also specify up to 10 managed policy Amazon
// Resource Names (ARNs) to use as managed session policies. The plaintext that you // Resource Names (ARNs) to use as managed session policies. The plaintext that you
@ -72,17 +62,14 @@ import (
// credentials in subsequent Amazon Web Services API calls to access resources in // credentials in subsequent Amazon Web Services API calls to access resources in
// the account that owns the role. You cannot use session policies to grant more // the account that owns the role. You cannot use session policies to grant more
// permissions than those allowed by the identity-based policy of the role that is // permissions than those allowed by the identity-based policy of the role that is
// being assumed. For more information, see Session Policies // being assumed. For more information, see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. Tags (Optional) You can configure your IdP to pass // in the IAM User Guide. Tags (Optional) You can configure your IdP to pass
// attributes into your web identity token as session tags. Each session tag // attributes into your web identity token as session tags. Each session tag
// consists of a key name and an associated value. For more information about // consists of a key name and an associated value. For more information about
// session tags, see Passing Session Tags in STS // session tags, see Passing Session Tags in STS (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html) in the // in the IAM User Guide. You can pass up to 50 session tags. The plaintext session
// IAM User Guide. You can pass up to 50 session tags. The plaintext session tag // tag keys cant exceed 128 characters and the values cant exceed 256 characters.
// keys cant exceed 128 characters and the values cant exceed 256 characters. For // For these and additional limits, see IAM and STS Character Limits (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// these and additional limits, see IAM and STS Character Limits
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// in the IAM User Guide. An Amazon Web Services conversion compresses the passed // in the IAM User Guide. An Amazon Web Services conversion compresses the passed
// inline session policy, managed policy ARNs, and session tags into a packed // inline session policy, managed policy ARNs, and session tags into a packed
// binary format that has a separate limit. Your request can fail for this limit // binary format that has a separate limit. Your request can fail for this limit
@ -93,51 +80,37 @@ import (
// overrides the role tag with the same key. An administrator must grant you the // overrides the role tag with the same key. An administrator must grant you the
// permissions necessary to pass session tags. The administrator can also create // permissions necessary to pass session tags. The administrator can also create
// granular permissions to allow you to pass only specific session tags. For more // granular permissions to allow you to pass only specific session tags. For more
// information, see Tutorial: Using Tags for Attribute-Based Access Control // information, see Tutorial: Using Tags for Attribute-Based Access Control (https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html)
// in the IAM User Guide. You can set the session tags as transitive. Transitive // in the IAM User Guide. You can set the session tags as transitive. Transitive
// tags persist during role chaining. For more information, see Chaining Roles with // tags persist during role chaining. For more information, see Chaining Roles
// Session Tags // with Session Tags (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining)
// in the IAM User Guide. Identities Before your application can call // in the IAM User Guide. Identities Before your application can call
// AssumeRoleWithWebIdentity, you must have an identity token from a supported // AssumeRoleWithWebIdentity , you must have an identity token from a supported
// identity provider and create a role that the application can assume. The role // identity provider and create a role that the application can assume. The role
// that your application assumes must trust the identity provider that is // that your application assumes must trust the identity provider that is
// associated with the identity token. In other words, the identity provider must // associated with the identity token. In other words, the identity provider must
// be specified in the role's trust policy. Calling AssumeRoleWithWebIdentity can // be specified in the role's trust policy. Calling AssumeRoleWithWebIdentity can
// result in an entry in your CloudTrail logs. The entry includes the Subject // result in an entry in your CloudTrail logs. The entry includes the Subject (http://openid.net/specs/openid-connect-core-1_0.html#Claims)
// (http://openid.net/specs/openid-connect-core-1_0.html#Claims) of the provided // of the provided web identity token. We recommend that you avoid using any
// web identity token. We recommend that you avoid using any personally // personally identifiable information (PII) in this field. For example, you could
// identifiable information (PII) in this field. For example, you could instead use // instead use a GUID or a pairwise identifier, as suggested in the OIDC
// a GUID or a pairwise identifier, as suggested in the OIDC specification // specification (http://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes)
// (http://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes). For more // . For more information about how to use web identity federation and the
// information about how to use web identity federation and the
// AssumeRoleWithWebIdentity API, see the following resources: // AssumeRoleWithWebIdentity API, see the following resources:
// // - Using Web Identity Federation API Operations for Mobile Apps (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_oidc_manual.html)
// * Using Web // and Federation Through a Web-based Identity Provider (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity)
// Identity Federation API Operations for Mobile Apps // .
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_oidc_manual.html) // - Web Identity Federation Playground (https://aws.amazon.com/blogs/aws/the-aws-web-identity-federation-playground/)
// and Federation Through a Web-based Identity Provider // . Walk through the process of authenticating through Login with Amazon,
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity). // Facebook, or Google, getting temporary security credentials, and then using
// // those credentials to make a request to Amazon Web Services.
// * // - Amazon Web Services SDK for iOS Developer Guide (http://aws.amazon.com/sdkforios/)
// Web Identity Federation Playground // and Amazon Web Services SDK for Android Developer Guide (http://aws.amazon.com/sdkforandroid/)
// (https://aws.amazon.com/blogs/aws/the-aws-web-identity-federation-playground/). // . These toolkits contain sample apps that show how to invoke the identity
// Walk through the process of authenticating through Login with Amazon, Facebook,
// or Google, getting temporary security credentials, and then using those
// credentials to make a request to Amazon Web Services.
//
// * Amazon Web Services SDK
// for iOS Developer Guide (http://aws.amazon.com/sdkforios/) and Amazon Web
// Services SDK for Android Developer Guide (http://aws.amazon.com/sdkforandroid/).
// These toolkits contain sample apps that show how to invoke the identity
// providers. The toolkits then show how to use the information from these // providers. The toolkits then show how to use the information from these
// providers to get and use temporary security credentials. // providers to get and use temporary security credentials.
// // - Web Identity Federation with Mobile Applications (http://aws.amazon.com/articles/web-identity-federation-with-mobile-applications)
// * Web Identity // . This article discusses web identity federation and shows an example of how to
// Federation with Mobile Applications
// (http://aws.amazon.com/articles/web-identity-federation-with-mobile-applications).
// This article discusses web identity federation and shows an example of how to
// use web identity federation to get access to content in Amazon S3. // use web identity federation to get access to content in Amazon S3.
func (c *Client) AssumeRoleWithWebIdentity(ctx context.Context, params *AssumeRoleWithWebIdentityInput, optFns ...func(*Options)) (*AssumeRoleWithWebIdentityOutput, error) { func (c *Client) AssumeRoleWithWebIdentity(ctx context.Context, params *AssumeRoleWithWebIdentityInput, optFns ...func(*Options)) (*AssumeRoleWithWebIdentityOutput, error) {
if params == nil { if params == nil {
@ -187,16 +160,14 @@ type AssumeRoleWithWebIdentityInput struct {
// higher than this setting, the operation fails. For example, if you specify a // higher than this setting, the operation fails. For example, if you specify a
// session duration of 12 hours, but your administrator set the maximum session // session duration of 12 hours, but your administrator set the maximum session
// duration to 6 hours, your operation fails. To learn how to view the maximum // duration to 6 hours, your operation fails. To learn how to view the maximum
// value for your role, see View the Maximum Session Duration Setting for a Role // value for your role, see View the Maximum Session Duration Setting for a Role (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session)
// in the IAM User Guide. By default, the value is set to 3600 seconds. The // in the IAM User Guide. By default, the value is set to 3600 seconds. The
// DurationSeconds parameter is separate from the duration of a console session // DurationSeconds parameter is separate from the duration of a console session
// that you might request using the returned credentials. The request to the // that you might request using the returned credentials. The request to the
// federation endpoint for a console sign-in token takes a SessionDuration // federation endpoint for a console sign-in token takes a SessionDuration
// parameter that specifies the maximum length of the console session. For more // parameter that specifies the maximum length of the console session. For more
// information, see Creating a URL that Enables Federated Users to Access the // information, see Creating a URL that Enables Federated Users to Access the
// Amazon Web Services Management Console // Amazon Web Services Management Console (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html)
// in the IAM User Guide. // in the IAM User Guide.
DurationSeconds *int32 DurationSeconds *int32
@ -208,8 +179,7 @@ type AssumeRoleWithWebIdentityInput struct {
// access resources in the account that owns the role. You cannot use session // access resources in the account that owns the role. You cannot use session
// policies to grant more permissions than those allowed by the identity-based // policies to grant more permissions than those allowed by the identity-based
// policy of the role that is being assumed. For more information, see Session // policy of the role that is being assumed. For more information, see Session
// Policies // Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. The plaintext that you use for both inline and managed // in the IAM User Guide. The plaintext that you use for both inline and managed
// session policies can't exceed 2,048 characters. The JSON policy characters can // session policies can't exceed 2,048 characters. The JSON policy characters can
// be any ASCII character from the space character to the end of the valid // be any ASCII character from the space character to the end of the valid
@ -227,9 +197,8 @@ type AssumeRoleWithWebIdentityInput struct {
// the role. This parameter is optional. You can provide up to 10 managed policy // the role. This parameter is optional. You can provide up to 10 managed policy
// ARNs. However, the plaintext that you use for both inline and managed session // ARNs. However, the plaintext that you use for both inline and managed session
// policies can't exceed 2,048 characters. For more information about ARNs, see // policies can't exceed 2,048 characters. For more information about ARNs, see
// Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces // Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in // in the Amazon Web Services General Reference. An Amazon Web Services conversion
// the Amazon Web Services General Reference. An Amazon Web Services conversion
// compresses the passed inline session policy, managed policy ARNs, and session // compresses the passed inline session policy, managed policy ARNs, and session
// tags into a packed binary format that has a separate limit. Your request can // tags into a packed binary format that has a separate limit. Your request can
// fail for this limit even if your plaintext meets the other requirements. The // fail for this limit even if your plaintext meets the other requirements. The
@ -241,8 +210,7 @@ type AssumeRoleWithWebIdentityInput struct {
// Services API calls to access resources in the account that owns the role. You // Services API calls to access resources in the account that owns the role. You
// cannot use session policies to grant more permissions than those allowed by the // cannot use session policies to grant more permissions than those allowed by the
// identity-based policy of the role that is being assumed. For more information, // identity-based policy of the role that is being assumed. For more information,
// see Session Policies // see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. // in the IAM User Guide.
PolicyArns []types.PolicyDescriptorType PolicyArns []types.PolicyDescriptorType
@ -265,7 +233,7 @@ type AssumeRoleWithWebIdentityOutput struct {
// that you can use to refer to the resulting temporary security credentials. For // that you can use to refer to the resulting temporary security credentials. For
// example, you can reference these credentials as a principal in a resource-based // example, you can reference these credentials as a principal in a resource-based
// policy by using the ARN or assumed role ID. The ARN and ID include the // policy by using the ARN or assumed role ID. The ARN and ID include the
// RoleSessionName that you specified when you called AssumeRole. // RoleSessionName that you specified when you called AssumeRole .
AssumedRoleUser *types.AssumedRoleUser AssumedRoleUser *types.AssumedRoleUser
// The intended audience (also known as client ID) of the web identity token. This // The intended audience (also known as client ID) of the web identity token. This
@ -285,10 +253,10 @@ type AssumeRoleWithWebIdentityOutput struct {
// allowed space. // allowed space.
PackedPolicySize *int32 PackedPolicySize *int32
// The issuing authority of the web identity token presented. For OpenID Connect ID // The issuing authority of the web identity token presented. For OpenID Connect
// tokens, this contains the value of the iss field. For OAuth 2.0 access tokens, // ID tokens, this contains the value of the iss field. For OAuth 2.0 access
// this contains the value of the ProviderId parameter that was passed in the // tokens, this contains the value of the ProviderId parameter that was passed in
// AssumeRoleWithWebIdentity request. // the AssumeRoleWithWebIdentity request.
Provider *string Provider *string
// The value of the source identity that is returned in the JSON web token (JWT) // The value of the source identity that is returned in the JSON web token (JWT)
@ -297,17 +265,14 @@ type AssumeRoleWithWebIdentityOutput struct {
// key in a role trust policy. That way, actions that are taken with the role are // key in a role trust policy. That way, actions that are taken with the role are
// associated with that user. After the source identity is set, the value cannot be // associated with that user. After the source identity is set, the value cannot be
// changed. It is present in the request for all actions that are taken by the role // changed. It is present in the request for all actions that are taken by the role
// and persists across chained role // and persists across chained role (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts#iam-term-role-chaining)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts#iam-term-role-chaining)
// sessions. You can configure your identity provider to use an attribute // sessions. You can configure your identity provider to use an attribute
// associated with your users, like user name or email, as the source identity when // associated with your users, like user name or email, as the source identity when
// calling AssumeRoleWithWebIdentity. You do this by adding a claim to the JSON web // calling AssumeRoleWithWebIdentity . You do this by adding a claim to the JSON
// token. To learn more about OIDC tokens and claims, see Using Tokens with User // web token. To learn more about OIDC tokens and claims, see Using Tokens with
// Pools // User Pools (https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-using-tokens-with-identity-providers.html)
// (https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-using-tokens-with-identity-providers.html)
// in the Amazon Cognito Developer Guide. For more information about using source // in the Amazon Cognito Developer Guide. For more information about using source
// identity, see Monitor and control actions taken with assumed roles // identity, see Monitor and control actions taken with assumed roles (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html)
// in the IAM User Guide. The regex used to validate this parameter is a string of // in the IAM User Guide. The regex used to validate this parameter is a string of
// characters consisting of upper- and lower-case alphanumeric characters with no // characters consisting of upper- and lower-case alphanumeric characters with no
// spaces. You can also include underscores or any of the following characters: // spaces. You can also include underscores or any of the following characters:
@ -373,6 +338,9 @@ func (c *Client) addOperationAssumeRoleWithWebIdentityMiddlewares(stack *middlew
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opAssumeRoleWithWebIdentity(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opAssumeRoleWithWebIdentity(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -22,27 +22,17 @@ import (
// encoded because the details of the authorization status can contain privileged // encoded because the details of the authorization status can contain privileged
// information that the user who requested the operation should not see. To decode // information that the user who requested the operation should not see. To decode
// an authorization status message, a user must be granted permissions through an // an authorization status message, a user must be granted permissions through an
// IAM policy // IAM policy (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html) to // to request the DecodeAuthorizationMessage ( sts:DecodeAuthorizationMessage )
// request the DecodeAuthorizationMessage (sts:DecodeAuthorizationMessage) action. // action. The decoded message includes the following type of information:
// The decoded message includes the following type of information: // - Whether the request was denied due to an explicit deny or due to the
// // absence of an explicit allow. For more information, see Determining Whether a
// * Whether the // Request is Allowed or Denied (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html#policy-eval-denyallow)
// request was denied due to an explicit deny or due to the absence of an explicit
// allow. For more information, see Determining Whether a Request is Allowed or
// Denied
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html#policy-eval-denyallow)
// in the IAM User Guide. // in the IAM User Guide.
// // - The principal who made the request.
// * The principal who made the request. // - The requested action.
// // - The requested resource.
// * The requested // - The values of condition keys in the context of the user's request.
// action.
//
// * The requested resource.
//
// * The values of condition keys in the
// context of the user's request.
func (c *Client) DecodeAuthorizationMessage(ctx context.Context, params *DecodeAuthorizationMessageInput, optFns ...func(*Options)) (*DecodeAuthorizationMessageOutput, error) { func (c *Client) DecodeAuthorizationMessage(ctx context.Context, params *DecodeAuthorizationMessageInput, optFns ...func(*Options)) (*DecodeAuthorizationMessageOutput, error) {
if params == nil { if params == nil {
params = &DecodeAuthorizationMessageInput{} params = &DecodeAuthorizationMessageInput{}
@ -133,6 +123,9 @@ func (c *Client) addOperationDecodeAuthorizationMessageMiddlewares(stack *middle
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opDecodeAuthorizationMessage(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opDecodeAuthorizationMessage(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -11,21 +11,18 @@ import (
) )
// Returns the account identifier for the specified access key ID. Access keys // Returns the account identifier for the specified access key ID. Access keys
// consist of two parts: an access key ID (for example, AKIAIOSFODNN7EXAMPLE) and a // consist of two parts: an access key ID (for example, AKIAIOSFODNN7EXAMPLE ) and
// secret access key (for example, wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY). For // a secret access key (for example, wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY ).
// more information about access keys, see Managing Access Keys for IAM Users // For more information about access keys, see Managing Access Keys for IAM Users (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html)
// in the IAM User Guide. When you pass an access key ID to this operation, it // in the IAM User Guide. When you pass an access key ID to this operation, it
// returns the ID of the Amazon Web Services account to which the keys belong. // returns the ID of the Amazon Web Services account to which the keys belong.
// Access key IDs beginning with AKIA are long-term credentials for an IAM user or // Access key IDs beginning with AKIA are long-term credentials for an IAM user or
// the Amazon Web Services account root user. Access key IDs beginning with ASIA // the Amazon Web Services account root user. Access key IDs beginning with ASIA
// are temporary credentials that are created using STS operations. If the account // are temporary credentials that are created using STS operations. If the account
// in the response belongs to you, you can sign in as the root user and review your // in the response belongs to you, you can sign in as the root user and review your
// root user access keys. Then, you can pull a credentials report // root user access keys. Then, you can pull a credentials report (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_getting-report.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_getting-report.html)
// to learn which IAM user owns the keys. To learn who requested the temporary // to learn which IAM user owns the keys. To learn who requested the temporary
// credentials for an ASIA access key, view the STS events in your CloudTrail logs // credentials for an ASIA access key, view the STS events in your CloudTrail logs (https://docs.aws.amazon.com/IAM/latest/UserGuide/cloudtrail-integration.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/cloudtrail-integration.html)
// in the IAM User Guide. This operation does not indicate the state of the access // in the IAM User Guide. This operation does not indicate the state of the access
// key. The key might be active, inactive, or deleted. Active keys might not have // key. The key might be active, inactive, or deleted. Active keys might not have
// permissions to perform an operation. Providing a deleted access key might return // permissions to perform an operation. Providing a deleted access key might return
@ -119,6 +116,9 @@ func (c *Client) addOperationGetAccessKeyInfoMiddlewares(stack *middleware.Stack
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetAccessKeyInfo(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetAccessKeyInfo(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -12,12 +12,11 @@ import (
// Returns details about the IAM user or role whose credentials are used to call // Returns details about the IAM user or role whose credentials are used to call
// the operation. No permissions are required to perform this operation. If an // the operation. No permissions are required to perform this operation. If an
// administrator adds a policy to your IAM user or role that explicitly denies // administrator attaches a policy to your identity that explicitly denies access
// access to the sts:GetCallerIdentity action, you can still perform this // to the sts:GetCallerIdentity action, you can still perform this operation.
// operation. Permissions are not required because the same information is returned // Permissions are not required because the same information is returned when
// when an IAM user or role is denied access. To view an example response, see I Am // access is denied. To view an example response, see I Am Not Authorized to
// Not Authorized to Perform: iam:DeleteVirtualMFADevice // Perform: iam:DeleteVirtualMFADevice (https://docs.aws.amazon.com/IAM/latest/UserGuide/troubleshoot_general.html#troubleshoot_general_access-denied-delete-mfa)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/troubleshoot_general.html#troubleshoot_general_access-denied-delete-mfa)
// in the IAM User Guide. // in the IAM User Guide.
func (c *Client) GetCallerIdentity(ctx context.Context, params *GetCallerIdentityInput, optFns ...func(*Options)) (*GetCallerIdentityOutput, error) { func (c *Client) GetCallerIdentity(ctx context.Context, params *GetCallerIdentityInput, optFns ...func(*Options)) (*GetCallerIdentityOutput, error) {
if params == nil { if params == nil {
@ -49,10 +48,9 @@ type GetCallerIdentityOutput struct {
// The Amazon Web Services ARN associated with the calling entity. // The Amazon Web Services ARN associated with the calling entity.
Arn *string Arn *string
// The unique identifier of the calling entity. The exact value depends on the type // The unique identifier of the calling entity. The exact value depends on the
// of entity that is making the call. The values returned are those listed in the // type of entity that is making the call. The values returned are those listed in
// aws:userid column in the Principal table // the aws:userid column in the Principal table (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_variables.html#principaltable)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_variables.html#principaltable)
// found on the Policy Variables reference page in the IAM User Guide. // found on the Policy Variables reference page in the IAM User Guide.
UserId *string UserId *string
@ -110,6 +108,9 @@ func (c *Client) addOperationGetCallerIdentityMiddlewares(stack *middleware.Stac
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetCallerIdentity(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetCallerIdentity(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -11,50 +11,40 @@ import (
smithyhttp "github.com/aws/smithy-go/transport/http" smithyhttp "github.com/aws/smithy-go/transport/http"
) )
// Returns a set of temporary security credentials (consisting of an access key ID, // Returns a set of temporary security credentials (consisting of an access key
// a secret access key, and a security token) for a federated user. A typical use // ID, a secret access key, and a security token) for a user. A typical use is in a
// is in a proxy application that gets temporary security credentials on behalf of // proxy application that gets temporary security credentials on behalf of
// distributed applications inside a corporate network. You must call the // distributed applications inside a corporate network. You must call the
// GetFederationToken operation using the long-term security credentials of an IAM // GetFederationToken operation using the long-term security credentials of an IAM
// user. As a result, this call is appropriate in contexts where those credentials // user. As a result, this call is appropriate in contexts where those credentials
// can be safely stored, usually in a server-based application. For a comparison of // can be safeguarded, usually in a server-based application. For a comparison of
// GetFederationToken with the other API operations that produce temporary // GetFederationToken with the other API operations that produce temporary
// credentials, see Requesting Temporary Security Credentials // credentials, see Requesting Temporary Security Credentials (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html) // and Comparing the Amazon Web Services STS API operations (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// and Comparing the Amazon Web Services STS API operations // in the IAM User Guide. Although it is possible to call GetFederationToken using
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison) // the security credentials of an Amazon Web Services account root user rather than
// an IAM user that you create for the purpose of a proxy application, we do not
// recommend it. For more information, see Safeguard your root user credentials
// and don't use them for everyday tasks (https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#lock-away-credentials)
// in the IAM User Guide. You can create a mobile-based or browser-based app that // in the IAM User Guide. You can create a mobile-based or browser-based app that
// can authenticate users using a web identity provider like Login with Amazon, // can authenticate users using a web identity provider like Login with Amazon,
// Facebook, Google, or an OpenID Connect-compatible identity provider. In this // Facebook, Google, or an OpenID Connect-compatible identity provider. In this
// case, we recommend that you use Amazon Cognito (http://aws.amazon.com/cognito/) // case, we recommend that you use Amazon Cognito (http://aws.amazon.com/cognito/)
// or AssumeRoleWithWebIdentity. For more information, see Federation Through a // or AssumeRoleWithWebIdentity . For more information, see Federation Through a
// Web-based Identity Provider // Web-based Identity Provider (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity) // in the IAM User Guide. Session duration The temporary credentials are valid for
// in the IAM User Guide. You can also call GetFederationToken using the security // the specified duration, from 900 seconds (15 minutes) up to a maximum of 129,600
// credentials of an Amazon Web Services account root user, but we do not recommend
// it. Instead, we recommend that you create an IAM user for the purpose of the
// proxy application. Then attach a policy to the IAM user that limits federated
// users to only the actions and resources that they need to access. For more
// information, see IAM Best Practices
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html) in the
// IAM User Guide. Session duration The temporary credentials are valid for the
// specified duration, from 900 seconds (15 minutes) up to a maximum of 129,600
// seconds (36 hours). The default session duration is 43,200 seconds (12 hours). // seconds (36 hours). The default session duration is 43,200 seconds (12 hours).
// Temporary credentials obtained by using the Amazon Web Services account root // Temporary credentials obtained by using the root user credentials have a maximum
// user credentials have a maximum duration of 3,600 seconds (1 hour). Permissions // duration of 3,600 seconds (1 hour). Permissions You can use the temporary
// You can use the temporary credentials created by GetFederationToken in any // credentials created by GetFederationToken in any Amazon Web Services service
// Amazon Web Services service with the following exceptions: // with the following exceptions:
// - You cannot call any IAM operations using the CLI or the Amazon Web Services
// API. This limitation does not apply to console sessions.
// - You cannot call any STS operations except GetCallerIdentity .
// //
// * You cannot call // You can use temporary credentials for single sign-on (SSO) to the console. You
// any IAM operations using the CLI or the Amazon Web Services API. This limitation // must pass an inline or managed session policy (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// does not apply to console sessions.
//
// * You cannot call any STS operations except
// GetCallerIdentity.
//
// You can use temporary credentials for single sign-on (SSO)
// to the console. You must pass an inline or managed session policy
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// to this operation. You can pass a single JSON policy document to use as an // to this operation. You can pass a single JSON policy document to use as an
// inline session policy. You can also specify up to 10 managed policy Amazon // inline session policy. You can also specify up to 10 managed policy Amazon
// Resource Names (ARNs) to use as managed session policies. The plaintext that you // Resource Names (ARNs) to use as managed session policies. The plaintext that you
@ -65,38 +55,33 @@ import (
// policies and the session policies that you pass. This gives you a way to further // policies and the session policies that you pass. This gives you a way to further
// restrict the permissions for a federated user. You cannot use session policies // restrict the permissions for a federated user. You cannot use session policies
// to grant more permissions than those that are defined in the permissions policy // to grant more permissions than those that are defined in the permissions policy
// of the IAM user. For more information, see Session Policies // of the IAM user. For more information, see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. For information about using GetFederationToken to create // in the IAM User Guide. For information about using GetFederationToken to create
// temporary security credentials, see GetFederationToken—Federation Through a // temporary security credentials, see GetFederationToken—Federation Through a
// Custom Identity Broker // Custom Identity Broker (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getfederationtoken)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getfederationtoken). // . You can use the credentials to access a resource that has a resource-based
// You can use the credentials to access a resource that has a resource-based
// policy. If that policy specifically references the federated user session in the // policy. If that policy specifically references the federated user session in the
// Principal element of the policy, the session has the permissions allowed by the // Principal element of the policy, the session has the permissions allowed by the
// policy. These permissions are granted in addition to the permissions granted by // policy. These permissions are granted in addition to the permissions granted by
// the session policies. Tags (Optional) You can pass tag key-value pairs to your // the session policies. Tags (Optional) You can pass tag key-value pairs to your
// session. These are called session tags. For more information about session tags, // session. These are called session tags. For more information about session tags,
// see Passing Session Tags in STS // see Passing Session Tags in STS (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html) in the // in the IAM User Guide. You can create a mobile-based or browser-based app that
// IAM User Guide. You can create a mobile-based or browser-based app that can // can authenticate users using a web identity provider like Login with Amazon,
// authenticate users using a web identity provider like Login with Amazon,
// Facebook, Google, or an OpenID Connect-compatible identity provider. In this // Facebook, Google, or an OpenID Connect-compatible identity provider. In this
// case, we recommend that you use Amazon Cognito (http://aws.amazon.com/cognito/) // case, we recommend that you use Amazon Cognito (http://aws.amazon.com/cognito/)
// or AssumeRoleWithWebIdentity. For more information, see Federation Through a // or AssumeRoleWithWebIdentity . For more information, see Federation Through a
// Web-based Identity Provider // Web-based Identity Provider (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity)
// in the IAM User Guide. An administrator must grant you the permissions necessary // in the IAM User Guide. An administrator must grant you the permissions necessary
// to pass session tags. The administrator can also create granular permissions to // to pass session tags. The administrator can also create granular permissions to
// allow you to pass only specific session tags. For more information, see // allow you to pass only specific session tags. For more information, see
// Tutorial: Using Tags for Attribute-Based Access Control // Tutorial: Using Tags for Attribute-Based Access Control (https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html)
// in the IAM User Guide. Tag keyvalue pairs are not case sensitive, but case is // in the IAM User Guide. Tag keyvalue pairs are not case sensitive, but case is
// preserved. This means that you cannot have separate Department and department // preserved. This means that you cannot have separate Department and department
// tag keys. Assume that the user that you are federating has the // tag keys. Assume that the user that you are federating has the Department =
// Department=Marketing tag and you pass the department=engineering session tag. // Marketing tag and you pass the department = engineering session tag. Department
// Department and department are not saved as separate tags, and the session tag // and department are not saved as separate tags, and the session tag passed in
// passed in the request takes precedence over the user tag. // the request takes precedence over the user tag.
func (c *Client) GetFederationToken(ctx context.Context, params *GetFederationTokenInput, optFns ...func(*Options)) (*GetFederationTokenOutput, error) { func (c *Client) GetFederationToken(ctx context.Context, params *GetFederationTokenInput, optFns ...func(*Options)) (*GetFederationTokenOutput, error) {
if params == nil { if params == nil {
params = &GetFederationTokenInput{} params = &GetFederationTokenInput{}
@ -115,26 +100,26 @@ func (c *Client) GetFederationToken(ctx context.Context, params *GetFederationTo
type GetFederationTokenInput struct { type GetFederationTokenInput struct {
// The name of the federated user. The name is used as an identifier for the // The name of the federated user. The name is used as an identifier for the
// temporary security credentials (such as Bob). For example, you can reference the // temporary security credentials (such as Bob ). For example, you can reference
// federated user name in a resource-based policy, such as in an Amazon S3 bucket // the federated user name in a resource-based policy, such as in an Amazon S3
// policy. The regex used to validate this parameter is a string of characters // bucket policy. The regex used to validate this parameter is a string of
// consisting of upper- and lower-case alphanumeric characters with no spaces. You // characters consisting of upper- and lower-case alphanumeric characters with no
// can also include underscores or any of the following characters: =,.@- // spaces. You can also include underscores or any of the following characters:
// =,.@-
// //
// This member is required. // This member is required.
Name *string Name *string
// The duration, in seconds, that the session should last. Acceptable durations for // The duration, in seconds, that the session should last. Acceptable durations
// federation sessions range from 900 seconds (15 minutes) to 129,600 seconds (36 // for federation sessions range from 900 seconds (15 minutes) to 129,600 seconds
// hours), with 43,200 seconds (12 hours) as the default. Sessions obtained using // (36 hours), with 43,200 seconds (12 hours) as the default. Sessions obtained
// Amazon Web Services account root user credentials are restricted to a maximum of // using root user credentials are restricted to a maximum of 3,600 seconds (one
// 3,600 seconds (one hour). If the specified duration is longer than one hour, the // hour). If the specified duration is longer than one hour, the session obtained
// session obtained by using root user credentials defaults to one hour. // by using root user credentials defaults to one hour.
DurationSeconds *int32 DurationSeconds *int32
// An IAM policy in JSON format that you want to use as an inline session policy. // An IAM policy in JSON format that you want to use as an inline session policy.
// You must pass an inline or managed session policy // You must pass an inline or managed session policy (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// to this operation. You can pass a single JSON policy document to use as an // to this operation. You can pass a single JSON policy document to use as an
// inline session policy. You can also specify up to 10 managed policy Amazon // inline session policy. You can also specify up to 10 managed policy Amazon
// Resource Names (ARNs) to use as managed session policies. This parameter is // Resource Names (ARNs) to use as managed session policies. This parameter is
@ -144,8 +129,7 @@ type GetFederationTokenInput struct {
// session policies that you pass. This gives you a way to further restrict the // session policies that you pass. This gives you a way to further restrict the
// permissions for a federated user. You cannot use session policies to grant more // permissions for a federated user. You cannot use session policies to grant more
// permissions than those that are defined in the permissions policy of the IAM // permissions than those that are defined in the permissions policy of the IAM
// user. For more information, see Session Policies // user. For more information, see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. The resulting credentials can be used to access a // in the IAM User Guide. The resulting credentials can be used to access a
// resource that has a resource-based policy. If that policy specifically // resource that has a resource-based policy. If that policy specifically
// references the federated user session in the Principal element of the policy, // references the federated user session in the Principal element of the policy,
@ -166,24 +150,21 @@ type GetFederationTokenInput struct {
// The Amazon Resource Names (ARNs) of the IAM managed policies that you want to // The Amazon Resource Names (ARNs) of the IAM managed policies that you want to
// use as a managed session policy. The policies must exist in the same account as // use as a managed session policy. The policies must exist in the same account as
// the IAM user that is requesting federated access. You must pass an inline or // the IAM user that is requesting federated access. You must pass an inline or
// managed session policy // managed session policy (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// to this operation. You can pass a single JSON policy document to use as an // to this operation. You can pass a single JSON policy document to use as an
// inline session policy. You can also specify up to 10 managed policy Amazon // inline session policy. You can also specify up to 10 managed policy Amazon
// Resource Names (ARNs) to use as managed session policies. The plaintext that you // Resource Names (ARNs) to use as managed session policies. The plaintext that you
// use for both inline and managed session policies can't exceed 2,048 characters. // use for both inline and managed session policies can't exceed 2,048 characters.
// You can provide up to 10 managed policy ARNs. For more information about ARNs, // You can provide up to 10 managed policy ARNs. For more information about ARNs,
// see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces // see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in // in the Amazon Web Services General Reference. This parameter is optional.
// the Amazon Web Services General Reference. This parameter is optional. However, // However, if you do not pass any session policies, then the resulting federated
// if you do not pass any session policies, then the resulting federated user // user session has no permissions. When you pass session policies, the session
// session has no permissions. When you pass session policies, the session
// permissions are the intersection of the IAM user policies and the session // permissions are the intersection of the IAM user policies and the session
// policies that you pass. This gives you a way to further restrict the permissions // policies that you pass. This gives you a way to further restrict the permissions
// for a federated user. You cannot use session policies to grant more permissions // for a federated user. You cannot use session policies to grant more permissions
// than those that are defined in the permissions policy of the IAM user. For more // than those that are defined in the permissions policy of the IAM user. For more
// information, see Session Policies // information, see Session Policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session)
// in the IAM User Guide. The resulting credentials can be used to access a // in the IAM User Guide. The resulting credentials can be used to access a
// resource that has a resource-based policy. If that policy specifically // resource that has a resource-based policy. If that policy specifically
// references the federated user session in the Principal element of the policy, // references the federated user session in the Principal element of the policy,
@ -192,20 +173,18 @@ type GetFederationTokenInput struct {
// An Amazon Web Services conversion compresses the passed inline session policy, // An Amazon Web Services conversion compresses the passed inline session policy,
// managed policy ARNs, and session tags into a packed binary format that has a // managed policy ARNs, and session tags into a packed binary format that has a
// separate limit. Your request can fail for this limit even if your plaintext // separate limit. Your request can fail for this limit even if your plaintext
// meets the other requirements. The PackedPolicySize response element indicates by // meets the other requirements. The PackedPolicySize response element indicates
// percentage how close the policies and tags for your request are to the upper // by percentage how close the policies and tags for your request are to the upper
// size limit. // size limit.
PolicyArns []types.PolicyDescriptorType PolicyArns []types.PolicyDescriptorType
// A list of session tags. Each session tag consists of a key name and an // A list of session tags. Each session tag consists of a key name and an
// associated value. For more information about session tags, see Passing Session // associated value. For more information about session tags, see Passing Session
// Tags in STS // Tags in STS (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html) in the // in the IAM User Guide. This parameter is optional. You can pass up to 50 session
// IAM User Guide. This parameter is optional. You can pass up to 50 session tags. // tags. The plaintext session tag keys cant exceed 128 characters and the values
// The plaintext session tag keys cant exceed 128 characters and the values cant // cant exceed 256 characters. For these and additional limits, see IAM and STS
// exceed 256 characters. For these and additional limits, see IAM and STS // Character Limits (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// Character Limits
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// in the IAM User Guide. An Amazon Web Services conversion compresses the passed // in the IAM User Guide. An Amazon Web Services conversion compresses the passed
// inline session policy, managed policy ARNs, and session tags into a packed // inline session policy, managed policy ARNs, and session tags into a packed
// binary format that has a separate limit. Your request can fail for this limit // binary format that has a separate limit. Your request can fail for this limit
@ -216,9 +195,9 @@ type GetFederationTokenInput struct {
// you do, session tags override a user tag with the same key. Tag keyvalue pairs // you do, session tags override a user tag with the same key. Tag keyvalue pairs
// are not case sensitive, but case is preserved. This means that you cannot have // are not case sensitive, but case is preserved. This means that you cannot have
// separate Department and department tag keys. Assume that the role has the // separate Department and department tag keys. Assume that the role has the
// Department=Marketing tag and you pass the department=engineering session tag. // Department = Marketing tag and you pass the department = engineering session
// Department and department are not saved as separate tags, and the session tag // tag. Department and department are not saved as separate tags, and the session
// passed in the request takes precedence over the role tag. // tag passed in the request takes precedence over the role tag.
Tags []types.Tag Tags []types.Tag
noSmithyDocumentSerde noSmithyDocumentSerde
@ -236,7 +215,7 @@ type GetFederationTokenOutput struct {
Credentials *types.Credentials Credentials *types.Credentials
// Identifiers for the federated user associated with the credentials (such as // Identifiers for the federated user associated with the credentials (such as
// arn:aws:sts::123456789012:federated-user/Bob or 123456789012:Bob). You can use // arn:aws:sts::123456789012:federated-user/Bob or 123456789012:Bob ). You can use
// the federated user's ARN in your resource-based policies, such as an Amazon S3 // the federated user's ARN in your resource-based policies, such as an Amazon S3
// bucket policy. // bucket policy.
FederatedUser *types.FederatedUser FederatedUser *types.FederatedUser
@ -304,6 +283,9 @@ func (c *Client) addOperationGetFederationTokenMiddlewares(stack *middleware.Sta
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetFederationToken(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetFederationToken(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -11,59 +11,46 @@ import (
smithyhttp "github.com/aws/smithy-go/transport/http" smithyhttp "github.com/aws/smithy-go/transport/http"
) )
// Returns a set of temporary credentials for an Amazon Web Services account or IAM // Returns a set of temporary credentials for an Amazon Web Services account or
// user. The credentials consist of an access key ID, a secret access key, and a // IAM user. The credentials consist of an access key ID, a secret access key, and
// security token. Typically, you use GetSessionToken if you want to use MFA to // a security token. Typically, you use GetSessionToken if you want to use MFA to
// protect programmatic calls to specific Amazon Web Services API operations like // protect programmatic calls to specific Amazon Web Services API operations like
// Amazon EC2 StopInstances. MFA-enabled IAM users would need to call // Amazon EC2 StopInstances . MFA-enabled IAM users must call GetSessionToken and
// GetSessionToken and submit an MFA code that is associated with their MFA device. // submit an MFA code that is associated with their MFA device. Using the temporary
// Using the temporary security credentials that are returned from the call, IAM // security credentials that the call returns, IAM users can then make programmatic
// users can then make programmatic calls to API operations that require MFA // calls to API operations that require MFA authentication. An incorrect MFA code
// authentication. If you do not supply a correct MFA code, then the API returns an // causes the API to return an access denied error. For a comparison of
// access denied error. For a comparison of GetSessionToken with the other API // GetSessionToken with the other API operations that produce temporary
// operations that produce temporary credentials, see Requesting Temporary Security // credentials, see Requesting Temporary Security Credentials (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html)
// Credentials // and Comparing the Amazon Web Services STS API operations (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html)
// and Comparing the Amazon Web Services STS API operations
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison)
// in the IAM User Guide. No permissions are required for users to perform this // in the IAM User Guide. No permissions are required for users to perform this
// operation. The purpose of the sts:GetSessionToken operation is to authenticate // operation. The purpose of the sts:GetSessionToken operation is to authenticate
// the user using MFA. You cannot use policies to control authentication // the user using MFA. You cannot use policies to control authentication
// operations. For more information, see Permissions for GetSessionToken // operations. For more information, see Permissions for GetSessionToken (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_getsessiontoken.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_getsessiontoken.html)
// in the IAM User Guide. Session Duration The GetSessionToken operation must be // in the IAM User Guide. Session Duration The GetSessionToken operation must be
// called by using the long-term Amazon Web Services security credentials of the // called by using the long-term Amazon Web Services security credentials of an IAM
// Amazon Web Services account root user or an IAM user. Credentials that are // user. Credentials that are created by IAM users are valid for the duration that
// created by IAM users are valid for the duration that you specify. This duration // you specify. This duration can range from 900 seconds (15 minutes) up to a
// can range from 900 seconds (15 minutes) up to a maximum of 129,600 seconds (36 // maximum of 129,600 seconds (36 hours), with a default of 43,200 seconds (12
// hours), with a default of 43,200 seconds (12 hours). Credentials based on // hours). Credentials based on account credentials can range from 900 seconds (15
// account credentials can range from 900 seconds (15 minutes) up to 3,600 seconds // minutes) up to 3,600 seconds (1 hour), with a default of 1 hour. Permissions The
// (1 hour), with a default of 1 hour. Permissions The temporary security // temporary security credentials created by GetSessionToken can be used to make
// credentials created by GetSessionToken can be used to make API calls to any // API calls to any Amazon Web Services service with the following exceptions:
// Amazon Web Services service with the following exceptions: // - You cannot call any IAM API operations unless MFA authentication
// information is included in the request.
// - You cannot call any STS API except AssumeRole or GetCallerIdentity .
// //
// * You cannot call // The credentials that GetSessionToken returns are based on permissions
// any IAM API operations unless MFA authentication information is included in the // associated with the IAM user whose credentials were used to call the operation.
// request. // The temporary credentials have the same permissions as the IAM user. Although it
// // is possible to call GetSessionToken using the security credentials of an Amazon
// * You cannot call any STS API except AssumeRole or // Web Services account root user rather than an IAM user, we do not recommend it.
// GetCallerIdentity. // If GetSessionToken is called using root user credentials, the temporary
// // credentials have root user permissions. For more information, see Safeguard
// We recommend that you do not call GetSessionToken with // your root user credentials and don't use them for everyday tasks (https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#lock-away-credentials)
// Amazon Web Services account root user credentials. Instead, follow our best // in the IAM User Guide For more information about using GetSessionToken to
// practices // create temporary credentials, see Temporary Credentials for Users in Untrusted
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#create-iam-users) // Environments (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getsessiontoken)
// by creating one or more IAM users, giving them the necessary permissions, and
// using IAM users for everyday interaction with Amazon Web Services. The
// credentials that are returned by GetSessionToken are based on permissions
// associated with the user whose credentials were used to call the operation. If
// GetSessionToken is called using Amazon Web Services account root user
// credentials, the temporary credentials have root user permissions. Similarly, if
// GetSessionToken is called using the credentials of an IAM user, the temporary
// credentials have the same permissions as the IAM user. For more information
// about using GetSessionToken to create temporary credentials, go to Temporary
// Credentials for Users in Untrusted Environments
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getsessiontoken)
// in the IAM User Guide. // in the IAM User Guide.
func (c *Client) GetSessionToken(ctx context.Context, params *GetSessionTokenInput, optFns ...func(*Options)) (*GetSessionTokenOutput, error) { func (c *Client) GetSessionToken(ctx context.Context, params *GetSessionTokenInput, optFns ...func(*Options)) (*GetSessionTokenOutput, error) {
if params == nil { if params == nil {
@ -90,25 +77,25 @@ type GetSessionTokenInput struct {
// Services account owners defaults to one hour. // Services account owners defaults to one hour.
DurationSeconds *int32 DurationSeconds *int32
// The identification number of the MFA device that is associated with the IAM user // The identification number of the MFA device that is associated with the IAM
// who is making the GetSessionToken call. Specify this value if the IAM user has a // user who is making the GetSessionToken call. Specify this value if the IAM user
// policy that requires MFA authentication. The value is either the serial number // has a policy that requires MFA authentication. The value is either the serial
// for a hardware device (such as GAHT12345678) or an Amazon Resource Name (ARN) // number for a hardware device (such as GAHT12345678 ) or an Amazon Resource Name
// for a virtual device (such as arn:aws:iam::123456789012:mfa/user). You can find // (ARN) for a virtual device (such as arn:aws:iam::123456789012:mfa/user ). You
// the device for an IAM user by going to the Amazon Web Services Management // can find the device for an IAM user by going to the Amazon Web Services
// Console and viewing the user's security credentials. The regex used to validate // Management Console and viewing the user's security credentials. The regex used
// this parameter is a string of characters consisting of upper- and lower-case // to validate this parameter is a string of characters consisting of upper- and
// alphanumeric characters with no spaces. You can also include underscores or any // lower-case alphanumeric characters with no spaces. You can also include
// of the following characters: =,.@:/- // underscores or any of the following characters: =,.@:/-
SerialNumber *string SerialNumber *string
// The value provided by the MFA device, if MFA is required. If any policy requires // The value provided by the MFA device, if MFA is required. If any policy
// the IAM user to submit an MFA code, specify this value. If MFA authentication is // requires the IAM user to submit an MFA code, specify this value. If MFA
// required, the user must provide a code when requesting a set of temporary // authentication is required, the user must provide a code when requesting a set
// security credentials. A user who fails to provide the code receives an "access // of temporary security credentials. A user who fails to provide the code receives
// denied" response when requesting resources that require MFA authentication. The // an "access denied" response when requesting resources that require MFA
// format for this parameter, as described by its regex pattern, is a sequence of // authentication. The format for this parameter, as described by its regex
// six numeric digits. // pattern, is a sequence of six numeric digits.
TokenCode *string TokenCode *string
noSmithyDocumentSerde noSmithyDocumentSerde
@ -179,6 +166,9 @@ func (c *Client) addOperationGetSessionTokenMiddlewares(stack *middleware.Stack,
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetSessionToken(options.Region), middleware.Before); err != nil { if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetSessionToken(options.Region), middleware.Before); err != nil {
return err return err
} }
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil { if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err return err
} }

View File

@ -4,9 +4,8 @@
// Security Token Service. // Security Token Service.
// //
// Security Token Service Security Token Service (STS) enables you to request // Security Token Service Security Token Service (STS) enables you to request
// temporary, limited-privilege credentials for Identity and Access Management // temporary, limited-privilege credentials for users. This guide provides
// (IAM) users or for users that you authenticate (federated users). This guide // descriptions of the STS API. For more information about using this service, see
// provides descriptions of the STS API. For more information about using this // Temporary Security Credentials (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html)
// service, see Temporary Security Credentials // .
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html).
package sts package sts

View File

@ -3,4 +3,4 @@
package sts package sts
// goModuleVersion is the tagged release for this module // goModuleVersion is the tagged release for this module
const goModuleVersion = "1.18.3" const goModuleVersion = "1.19.0"

View File

@ -89,6 +89,7 @@ var partitionRegexp = struct {
AwsCn *regexp.Regexp AwsCn *regexp.Regexp
AwsIso *regexp.Regexp AwsIso *regexp.Regexp
AwsIsoB *regexp.Regexp AwsIsoB *regexp.Regexp
AwsIsoE *regexp.Regexp
AwsUsGov *regexp.Regexp AwsUsGov *regexp.Regexp
}{ }{
@ -96,6 +97,7 @@ var partitionRegexp = struct {
AwsCn: regexp.MustCompile("^cn\\-\\w+\\-\\d+$"), AwsCn: regexp.MustCompile("^cn\\-\\w+\\-\\d+$"),
AwsIso: regexp.MustCompile("^us\\-iso\\-\\w+\\-\\d+$"), AwsIso: regexp.MustCompile("^us\\-iso\\-\\w+\\-\\d+$"),
AwsIsoB: regexp.MustCompile("^us\\-isob\\-\\w+\\-\\d+$"), AwsIsoB: regexp.MustCompile("^us\\-isob\\-\\w+\\-\\d+$"),
AwsIsoE: regexp.MustCompile("^eu\\-isoe\\-\\w+\\-\\d+$"),
AwsUsGov: regexp.MustCompile("^us\\-gov\\-\\w+\\-\\d+$"), AwsUsGov: regexp.MustCompile("^us\\-gov\\-\\w+\\-\\d+$"),
} }
@ -384,6 +386,27 @@ var defaultPartitions = endpoints.Partitions{
}: endpoints.Endpoint{}, }: endpoints.Endpoint{},
}, },
}, },
{
ID: "aws-iso-e",
Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{
{
Variant: endpoints.FIPSVariant,
}: {
Hostname: "sts-fips.{region}.cloud.adc-e.uk",
Protocols: []string{"https"},
SignatureVersions: []string{"v4"},
},
{
Variant: 0,
}: {
Hostname: "sts.{region}.cloud.adc-e.uk",
Protocols: []string{"https"},
SignatureVersions: []string{"v4"},
},
},
RegionRegex: partitionRegexp.AwsIsoE,
IsRegionalized: true,
},
{ {
ID: "aws-us-gov", ID: "aws-us-gov",
Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{ Defaults: map[endpoints.DefaultKey]endpoints.Endpoint{

View File

@ -27,7 +27,7 @@ func (e *ExpiredTokenException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *ExpiredTokenException) ErrorCode() string { func (e *ExpiredTokenException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "ExpiredTokenException" return "ExpiredTokenException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -57,7 +57,7 @@ func (e *IDPCommunicationErrorException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *IDPCommunicationErrorException) ErrorCode() string { func (e *IDPCommunicationErrorException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "IDPCommunicationError" return "IDPCommunicationError"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -86,7 +86,7 @@ func (e *IDPRejectedClaimException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *IDPRejectedClaimException) ErrorCode() string { func (e *IDPRejectedClaimException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "IDPRejectedClaim" return "IDPRejectedClaim"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -114,7 +114,7 @@ func (e *InvalidAuthorizationMessageException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InvalidAuthorizationMessageException) ErrorCode() string { func (e *InvalidAuthorizationMessageException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InvalidAuthorizationMessageException" return "InvalidAuthorizationMessageException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -144,7 +144,7 @@ func (e *InvalidIdentityTokenException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *InvalidIdentityTokenException) ErrorCode() string { func (e *InvalidIdentityTokenException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "InvalidIdentityToken" return "InvalidIdentityToken"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -171,7 +171,7 @@ func (e *MalformedPolicyDocumentException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *MalformedPolicyDocumentException) ErrorCode() string { func (e *MalformedPolicyDocumentException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "MalformedPolicyDocument" return "MalformedPolicyDocument"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
@ -183,12 +183,10 @@ func (e *MalformedPolicyDocumentException) ErrorFault() smithy.ErrorFault { retu
// compresses the session policy document, session policy ARNs, and session tags // compresses the session policy document, session policy ARNs, and session tags
// into a packed binary format that has a separate limit. The error message // into a packed binary format that has a separate limit. The error message
// indicates by percentage how close the policies and tags are to the upper size // indicates by percentage how close the policies and tags are to the upper size
// limit. For more information, see Passing Session Tags in STS // limit. For more information, see Passing Session Tags in STS (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html) in the // in the IAM User Guide. You could receive this error even though you meet other
// IAM User Guide. You could receive this error even though you meet other defined // defined session policy and session tag limits. For more information, see IAM
// session policy and session tag limits. For more information, see IAM and STS // and STS Entity Character Limits (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-limits-entity-length)
// Entity Character Limits
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-limits-entity-length)
// in the IAM User Guide. // in the IAM User Guide.
type PackedPolicyTooLargeException struct { type PackedPolicyTooLargeException struct {
Message *string Message *string
@ -208,18 +206,17 @@ func (e *PackedPolicyTooLargeException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *PackedPolicyTooLargeException) ErrorCode() string { func (e *PackedPolicyTooLargeException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "PackedPolicyTooLarge" return "PackedPolicyTooLarge"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride
} }
func (e *PackedPolicyTooLargeException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } func (e *PackedPolicyTooLargeException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
// STS is not activated in the requested region for the account that is being asked // STS is not activated in the requested region for the account that is being
// to generate credentials. The account administrator must use the IAM console to // asked to generate credentials. The account administrator must use the IAM
// activate STS in that region. For more information, see Activating and // console to activate STS in that region. For more information, see Activating
// Deactivating Amazon Web Services STS in an Amazon Web Services Region // and Deactivating Amazon Web Services STS in an Amazon Web Services Region (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html)
// in the IAM User Guide. // in the IAM User Guide.
type RegionDisabledException struct { type RegionDisabledException struct {
Message *string Message *string
@ -239,7 +236,7 @@ func (e *RegionDisabledException) ErrorMessage() string {
return *e.Message return *e.Message
} }
func (e *RegionDisabledException) ErrorCode() string { func (e *RegionDisabledException) ErrorCode() string {
if e.ErrorCodeOverride == nil { if e == nil || e.ErrorCodeOverride == nil {
return "RegionDisabledException" return "RegionDisabledException"
} }
return *e.ErrorCodeOverride return *e.ErrorCodeOverride

View File

@ -13,9 +13,8 @@ type AssumedRoleUser struct {
// The ARN of the temporary security credentials that are returned from the // The ARN of the temporary security credentials that are returned from the
// AssumeRole action. For more information about ARNs and how to use them in // AssumeRole action. For more information about ARNs and how to use them in
// policies, see IAM Identifiers // policies, see IAM Identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html) in // in the IAM User Guide.
// the IAM User Guide.
// //
// This member is required. // This member is required.
Arn *string Arn *string
@ -62,9 +61,8 @@ type FederatedUser struct {
// The ARN that specifies the federated user that is associated with the // The ARN that specifies the federated user that is associated with the
// credentials. For more information about ARNs and how to use them in policies, // credentials. For more information about ARNs and how to use them in policies,
// see IAM Identifiers // see IAM Identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html) in // in the IAM User Guide.
// the IAM User Guide.
// //
// This member is required. // This member is required.
Arn *string Arn *string
@ -84,26 +82,23 @@ type PolicyDescriptorType struct {
// The Amazon Resource Name (ARN) of the IAM managed policy to use as a session // The Amazon Resource Name (ARN) of the IAM managed policy to use as a session
// policy for the role. For more information about ARNs, see Amazon Resource Names // policy for the role. For more information about ARNs, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces // (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in // in the Amazon Web Services General Reference.
// the Amazon Web Services General Reference.
Arn *string Arn *string
noSmithyDocumentSerde noSmithyDocumentSerde
} }
// You can pass custom key-value pair attributes when you assume a role or federate // You can pass custom key-value pair attributes when you assume a role or
// a user. These are called session tags. You can then use the session tags to // federate a user. These are called session tags. You can then use the session
// control access to resources. For more information, see Tagging Amazon Web // tags to control access to resources. For more information, see Tagging Amazon
// Services STS Sessions // Web Services STS Sessions (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html) in the // in the IAM User Guide.
// IAM User Guide.
type Tag struct { type Tag struct {
// The key for a session tag. You can pass up to 50 session tags. The plain text // The key for a session tag. You can pass up to 50 session tags. The plain text
// session tag keys cant exceed 128 characters. For these and additional limits, // session tag keys cant exceed 128 characters. For these and additional limits,
// see IAM and STS Character Limits // see IAM and STS Character Limits (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// in the IAM User Guide. // in the IAM User Guide.
// //
// This member is required. // This member is required.
@ -111,8 +106,7 @@ type Tag struct {
// The value for a session tag. You can pass up to 50 session tags. The plain text // The value for a session tag. You can pass up to 50 session tags. The plain text
// session tag values cant exceed 256 characters. For these and additional limits, // session tag values cant exceed 256 characters. For these and additional limits,
// see IAM and STS Character Limits // see IAM and STS Character Limits (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length)
// in the IAM User Guide. // in the IAM User Guide.
// //
// This member is required. // This member is required.

22
vendor/modules.txt vendored
View File

@ -1,4 +1,4 @@
# github.com/aws/aws-sdk-go-v2 v1.17.7 # github.com/aws/aws-sdk-go-v2 v1.18.0
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2 github.com/aws/aws-sdk-go-v2
github.com/aws/aws-sdk-go-v2/aws github.com/aws/aws-sdk-go-v2/aws
@ -24,10 +24,10 @@ github.com/aws/aws-sdk-go-v2/internal/timeconv
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi
# github.com/aws/aws-sdk-go-v2/config v1.18.12 # github.com/aws/aws-sdk-go-v2/config v1.18.25
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/config github.com/aws/aws-sdk-go-v2/config
# github.com/aws/aws-sdk-go-v2/credentials v1.13.12 # github.com/aws/aws-sdk-go-v2/credentials v1.13.24
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/credentials github.com/aws/aws-sdk-go-v2/credentials
github.com/aws/aws-sdk-go-v2/credentials/ec2rolecreds github.com/aws/aws-sdk-go-v2/credentials/ec2rolecreds
@ -36,17 +36,17 @@ github.com/aws/aws-sdk-go-v2/credentials/endpointcreds/internal/client
github.com/aws/aws-sdk-go-v2/credentials/processcreds github.com/aws/aws-sdk-go-v2/credentials/processcreds
github.com/aws/aws-sdk-go-v2/credentials/ssocreds github.com/aws/aws-sdk-go-v2/credentials/ssocreds
github.com/aws/aws-sdk-go-v2/credentials/stscreds github.com/aws/aws-sdk-go-v2/credentials/stscreds
# github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.22 # github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/feature/ec2/imds github.com/aws/aws-sdk-go-v2/feature/ec2/imds
github.com/aws/aws-sdk-go-v2/feature/ec2/imds/internal/config github.com/aws/aws-sdk-go-v2/feature/ec2/imds/internal/config
# github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31 # github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.33
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/internal/configsources github.com/aws/aws-sdk-go-v2/internal/configsources
# github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25 # github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.27
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 github.com/aws/aws-sdk-go-v2/internal/endpoints/v2
# github.com/aws/aws-sdk-go-v2/internal/ini v1.3.29 # github.com/aws/aws-sdk-go-v2/internal/ini v1.3.34
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/internal/ini github.com/aws/aws-sdk-go-v2/internal/ini
# github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.23 # github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.23
@ -60,7 +60,7 @@ github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding
# github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.26 # github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.26
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/service/internal/checksum github.com/aws/aws-sdk-go-v2/service/internal/checksum
# github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25 # github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.27
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url github.com/aws/aws-sdk-go-v2/service/internal/presigned-url
# github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0 # github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0
@ -75,17 +75,17 @@ github.com/aws/aws-sdk-go-v2/service/s3/internal/arn
github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations
github.com/aws/aws-sdk-go-v2/service/s3/internal/endpoints github.com/aws/aws-sdk-go-v2/service/s3/internal/endpoints
github.com/aws/aws-sdk-go-v2/service/s3/types github.com/aws/aws-sdk-go-v2/service/s3/types
# github.com/aws/aws-sdk-go-v2/service/sso v1.12.1 # github.com/aws/aws-sdk-go-v2/service/sso v1.12.10
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/service/sso github.com/aws/aws-sdk-go-v2/service/sso
github.com/aws/aws-sdk-go-v2/service/sso/internal/endpoints github.com/aws/aws-sdk-go-v2/service/sso/internal/endpoints
github.com/aws/aws-sdk-go-v2/service/sso/types github.com/aws/aws-sdk-go-v2/service/sso/types
# github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.1 # github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/service/ssooidc github.com/aws/aws-sdk-go-v2/service/ssooidc
github.com/aws/aws-sdk-go-v2/service/ssooidc/internal/endpoints github.com/aws/aws-sdk-go-v2/service/ssooidc/internal/endpoints
github.com/aws/aws-sdk-go-v2/service/ssooidc/types github.com/aws/aws-sdk-go-v2/service/ssooidc/types
# github.com/aws/aws-sdk-go-v2/service/sts v1.18.3 # github.com/aws/aws-sdk-go-v2/service/sts v1.19.0
## explicit; go 1.15 ## explicit; go 1.15
github.com/aws/aws-sdk-go-v2/service/sts github.com/aws/aws-sdk-go-v2/service/sts
github.com/aws/aws-sdk-go-v2/service/sts/internal/endpoints github.com/aws/aws-sdk-go-v2/service/sts/internal/endpoints