-
Notifications
You must be signed in to change notification settings - Fork 359
/
sdk.cfg
134 lines (120 loc) · 4.38 KB
/
sdk.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# API Endpoint Definitions
#
# {NPM package name},{Client name},{Servic endpoint},{full SDK only}
#
# The meanings of each and how to look them up are as follows:
#
# 1. Classification
# https://docs.aws.amazon.com/whitepapers/latest/aws-overview/amazon-web-services-cloud-platform.html
#
# 2. ClientName
# https://www.npmjs.com/search?q=%40aws-sdk%2Fclient-
#
# Case) @aws-sdk/client-sts
# [Import Section](https://www.npmjs.com/package/@aws-sdk/client-sts#getting-started)
#
# Example:
# // ES6+ example
# import { STSClient, GetCallerIdentityCommand } from "@aws-sdk/client-sts";
# ^^^ <- This part except for the "client"
#
# 3. ServiceEndpoint
# https://docs.aws.amazon.com/general/latest/gr/aws-service-information.html
#
# Case) @aws-sdk/client-sts
# [Service endpoints Section](https://docs.aws.amazon.com/general/latest/gr/sts.html#sts_region)
#
# Example:
# | Region Name | Region | Endpoint | Protocol |
# | -------------- | --------- | --------------------------- | -------- |
# | US East (Ohio) | us-east-2 | sts.us-east-2.amazonaws.com | HTTPS |
# ^^^ <- String before "region"
#
# If multiple endpoints are required, such as `states` and `sync-states` in @aws-sdk/client-sfn,
# multiple endpoints can be specified by making them an array.
#
# 4. fullSdkOnly
#
# If you want to bundle only 'full-sdk', specify `1`.
# Specify `0` if you want to bundle for both 'std-sdk' and 'full-sdk'.
#
# The combination of SDK_BUNDLE_MODE and fullSdkOnly automatically determines whether the bundle is eligible or not.
# Note that if SDK_BUNDLE_MODE is 'NONE', the above values are completely ignored and any SDKs are excluded from the bundle.
# Analytics
client-athena,Athena,athena,1
client-firehose,Firehose,firehose,1
client-glue,Glue,glue,1
client-kinesis,Kinesis,kinesis,1
client-opensearch,OpenSearch,es,1
client-opensearchserverless,OpenSearchServerless,aoss,1
# ApplicationIntegration
client-eventbridge,EventBridge,events,0
client-scheduler,Scheduler,scheduler,1
client-sfn,SFN,states,0
client-sns,SNS,sns,0
client-sqs,SQS,sqs,0
# BusinessApplications
client-ses,SES,email,0
client-sesv2,SESv2,email,1
# ComputeServices
client-auto-scaling,AutoScaling,autoscaling,1
client-batch,Batch,batch,1
client-ec2,EC2,ec2,1
client-lambda,Lambda,lambda,0
# Containers
client-ecr,ECR,api.ecr,1
client-ecs,ECS,ecs,1
client-eks,EKS,eks,1
client-servicediscovery,ServiceDiscovery,discovery,1
# Databases
client-dynamodb,DynamoDB,dynamodb,0
client-dynamodb-streams,DynamoDBStreams,streams.dynamodb,1
client-elasticache,ElastiCache,elasticache,1
client-rds,RDS,rds,1
client-rds-data,RDSData,rds-data,1
lib-dynamodb,DynamoDBDocument,dynamodb,0
# DeveloperTools
client-xray,XRay,xray,0
# FrontendWebAndMobileServices
client-amplify,Amplify,amplify,1
client-appsync,AppSync,appsync,1
client-location,Location,geo,1
# MachineLearningAndArtificialIntelligence
client-bedrock,Bedrock,bedrock,1
client-bedrock-agent,BedrockAgent,bedrock-agent,1
client-bedrock-runtime,BedrockRuntime,bedrock-runtime,1
client-bedrock-agent-runtime,BedrockAgentRuntime,bedrock-agent-runtime,1
client-polly,Polly,polly,1
client-rekognition,Rekognition,rekognition,1
client-textract,Textract,textract,1
client-translate,Translate,translate,1
# ManagementAndGovernance
client-appconfig,AppConfig,appconfig,1
client-appconfigdata,AppConfigData,appconfigdata,1
client-cloudformation,CloudFormation,cloudformation,1
client-cloudwatch,CloudWatch,monitoring,1
client-cloudwatch-logs,CloudWatchLogs,logs,0
client-cloudwatch-events,CloudWatchEvents,events,0
client-service-catalog,ServiceCatalog,servicecatalog,1
client-ssm,SSM,ssm,0
# Media
client-mediaconvert,MediaConvert,mediaconvert,1
# NetworkingAndContentDelivery
client-api-gateway,APIGateway,apigateway,1
client-apigatewayv2,ApiGatewayV2,apigateway,1
client-elastic-load-balancing-v2,ElasticLoadBalancingV2,elasticloadbalancing,1
# SecurityIdentityAndCompliance
client-acm,ACM,acm,1
client-cognito-identity,CognitoIdentity,cognito-identity,0
client-cognito-identity-provider,CognitoIdentityProvider,cognito-idp,0
client-iam,IAM,iam,1
client-kms,KMS,kms,0
client-secrets-manager,SecretsManager,secretsmanager,0
client-sso,SSO,identitystore,1
client-sso-admin,SSOAdmin,identitystore,1
client-sso-oidc,SSOOIDC,identitystore,1
client-sts,STS,sts,0
# Storage
client-efs,EFS,elasticfilesystem,1
client-s3,S3,s3,0
lib-storage,Upload,s3,0