|
28 | 28 | # It is need to provide session credentials and assume role support. |
29 | 29 | # Only building source, but not gemspecs, version file, etc. |
30 | 30 | task 'build:aws-sdk-sts' do |
31 | | - Aws::STS if Aws.autoload?(:STS) # force autoload from core |
32 | 31 | sts = BuildTools::Services.service('sts') |
33 | 32 | generator = AwsSdkCodeGenerator::CodeBuilder.new( |
34 | 33 | aws_sdk_core_lib_path: $CORE_LIB, |
|
49 | 48 | # It is need to provide SSO Credentials. |
50 | 49 | # Only building source, but not gemspecs, version file, etc. |
51 | 50 | task 'build:aws-sdk-sso' do |
52 | | - Aws::SSO if Aws.autoload?(:SSO) # force autoload from core |
53 | 51 | sso = BuildTools::Services.service('sso') |
54 | 52 | generator = AwsSdkCodeGenerator::CodeBuilder.new( |
55 | 53 | aws_sdk_core_lib_path: $CORE_LIB, |
|
68 | 66 | # Aws::SSOOIDC is generated directly into the `aws-sdk-core` gem. |
69 | 67 | # Only building source, but not gemspecs, version file, etc. |
70 | 68 | task 'build:aws-sdk-ssooidc' do |
71 | | - Aws::SSOOIDC if Aws.autoload?(:SSOOIDC) # force autoload from core |
72 | 69 | ssooidc = BuildTools::Services.service('ssooidc') |
73 | 70 | generator = AwsSdkCodeGenerator::CodeBuilder.new( |
74 | 71 | aws_sdk_core_lib_path: $CORE_LIB, |
|
0 commit comments