aws-sdk 2.952.0 → 2.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/README.md +1 -1
- package/apis/s3outposts-2017-07-25.min.json +9 -2
- package/apis/securityhub-2018-10-26.min.json +409 -207
- package/clients/imagebuilder.d.ts +1 -1
- package/clients/s3outposts.d.ts +44 -13
- package/clients/securityhub.d.ts +473 -143
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +3 -3
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -2771,7 +2771,7 @@ declare namespace Imagebuilder {
|
|
|
2771
2771
|
export type StringList = NonEmptyString[];
|
|
2772
2772
|
export interface SystemsManagerAgent {
|
|
2773
2773
|
/**
|
|
2774
|
-
*
|
|
2774
|
+
* Controls whether the SSM agent is removed from your final build image, prior to creating the new AMI. If this is set to true, then the agent is removed from the final image. If it's set to false, then the agent is left in, so that it is included in the new AMI. The default value is false.
|
|
2775
2775
|
*/
|
|
2776
2776
|
uninstallAfterBuild?: NullableBoolean;
|
|
2777
2777
|
}
|
package/clients/s3outposts.d.ts
CHANGED
|
@@ -12,27 +12,27 @@ declare class S3Outposts extends Service {
|
|
|
12
12
|
constructor(options?: S3Outposts.Types.ClientConfiguration)
|
|
13
13
|
config: Config & S3Outposts.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
* S3 on Outposts
|
|
15
|
+
* Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see Accessing S3 on Outposts using VPC only access points. This action creates an endpoint and associates it with the specified Outposts. It can take up to 5 minutes for this action to complete. Related actions include: DeleteEndpoint ListEndpoints
|
|
16
16
|
*/
|
|
17
17
|
createEndpoint(params: S3Outposts.Types.CreateEndpointRequest, callback?: (err: AWSError, data: S3Outposts.Types.CreateEndpointResult) => void): Request<S3Outposts.Types.CreateEndpointResult, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
* S3 on Outposts
|
|
19
|
+
* Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see Accessing S3 on Outposts using VPC only access points. This action creates an endpoint and associates it with the specified Outposts. It can take up to 5 minutes for this action to complete. Related actions include: DeleteEndpoint ListEndpoints
|
|
20
20
|
*/
|
|
21
21
|
createEndpoint(callback?: (err: AWSError, data: S3Outposts.Types.CreateEndpointResult) => void): Request<S3Outposts.Types.CreateEndpointResult, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* S3 on Outposts
|
|
23
|
+
* Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see Accessing S3 on Outposts using VPC only access points. This action deletes an endpoint. It can take up to 5 minutes for this action to complete. Related actions include: CreateEndpoint ListEndpoints
|
|
24
24
|
*/
|
|
25
25
|
deleteEndpoint(params: S3Outposts.Types.DeleteEndpointRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* S3 on Outposts
|
|
27
|
+
* Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see Accessing S3 on Outposts using VPC only access points. This action deletes an endpoint. It can take up to 5 minutes for this action to complete. Related actions include: CreateEndpoint ListEndpoints
|
|
28
28
|
*/
|
|
29
29
|
deleteEndpoint(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
* S3 on Outposts
|
|
31
|
+
* Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see Accessing S3 on Outposts using VPC only access points. This action lists endpoints associated with the Outposts. Related actions include: CreateEndpoint DeleteEndpoint
|
|
32
32
|
*/
|
|
33
33
|
listEndpoints(params: S3Outposts.Types.ListEndpointsRequest, callback?: (err: AWSError, data: S3Outposts.Types.ListEndpointsResult) => void): Request<S3Outposts.Types.ListEndpointsResult, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
* S3 on Outposts
|
|
35
|
+
* Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see Accessing S3 on Outposts using VPC only access points. This action lists endpoints associated with the Outposts. Related actions include: CreateEndpoint DeleteEndpoint
|
|
36
36
|
*/
|
|
37
37
|
listEndpoints(callback?: (err: AWSError, data: S3Outposts.Types.ListEndpointsResult) => void): Request<S3Outposts.Types.ListEndpointsResult, AWSError>;
|
|
38
38
|
}
|
|
@@ -40,17 +40,25 @@ declare namespace S3Outposts {
|
|
|
40
40
|
export type CidrBlock = string;
|
|
41
41
|
export interface CreateEndpointRequest {
|
|
42
42
|
/**
|
|
43
|
-
* The ID of the AWS
|
|
43
|
+
* The ID of the AWS Outposts.
|
|
44
44
|
*/
|
|
45
45
|
OutpostId: OutpostId;
|
|
46
46
|
/**
|
|
47
|
-
* The ID of the subnet in the selected VPC.
|
|
47
|
+
* The ID of the subnet in the selected VPC. The endpoint subnet must belong to the Outpost that has the Amazon S3 on Outposts provisioned.
|
|
48
48
|
*/
|
|
49
49
|
SubnetId: SubnetId;
|
|
50
50
|
/**
|
|
51
51
|
* The ID of the security group to use with the endpoint.
|
|
52
52
|
*/
|
|
53
53
|
SecurityGroupId: SecurityGroupId;
|
|
54
|
+
/**
|
|
55
|
+
* The type of access for the on-premise network connectivity for the Outpost endpoint. To access the endpoint from an on-premises network, you must specify the access type and provide the customer owned IPv4 pool.
|
|
56
|
+
*/
|
|
57
|
+
AccessType?: EndpointAccessType;
|
|
58
|
+
/**
|
|
59
|
+
* The ID of the customer-owned IPv4 pool for the endpoint. IP addresses will be allocated from this pool for the endpoint.
|
|
60
|
+
*/
|
|
61
|
+
CustomerOwnedIpv4Pool?: CustomerOwnedIpv4Pool;
|
|
54
62
|
}
|
|
55
63
|
export interface CreateEndpointResult {
|
|
56
64
|
/**
|
|
@@ -59,13 +67,14 @@ declare namespace S3Outposts {
|
|
|
59
67
|
EndpointArn?: EndpointArn;
|
|
60
68
|
}
|
|
61
69
|
export type CreationTime = Date;
|
|
70
|
+
export type CustomerOwnedIpv4Pool = string;
|
|
62
71
|
export interface DeleteEndpointRequest {
|
|
63
72
|
/**
|
|
64
|
-
* The ID of the
|
|
73
|
+
* The ID of the endpoint.
|
|
65
74
|
*/
|
|
66
75
|
EndpointId: EndpointId;
|
|
67
76
|
/**
|
|
68
|
-
* The ID of the AWS
|
|
77
|
+
* The ID of the AWS Outposts.
|
|
69
78
|
*/
|
|
70
79
|
OutpostId: OutpostId;
|
|
71
80
|
}
|
|
@@ -75,7 +84,7 @@ declare namespace S3Outposts {
|
|
|
75
84
|
*/
|
|
76
85
|
EndpointArn?: EndpointArn;
|
|
77
86
|
/**
|
|
78
|
-
* The ID of the AWS
|
|
87
|
+
* The ID of the AWS Outposts.
|
|
79
88
|
*/
|
|
80
89
|
OutpostsId?: OutpostId;
|
|
81
90
|
/**
|
|
@@ -94,10 +103,31 @@ declare namespace S3Outposts {
|
|
|
94
103
|
* The network interface of the endpoint.
|
|
95
104
|
*/
|
|
96
105
|
NetworkInterfaces?: NetworkInterfaces;
|
|
106
|
+
/**
|
|
107
|
+
* The ID of the VPC used for the endpoint.
|
|
108
|
+
*/
|
|
109
|
+
VpcId?: VpcId;
|
|
110
|
+
/**
|
|
111
|
+
* The ID of the subnet used for the endpoint.
|
|
112
|
+
*/
|
|
113
|
+
SubnetId?: SubnetId;
|
|
114
|
+
/**
|
|
115
|
+
* The ID of the security group used for the endpoint.
|
|
116
|
+
*/
|
|
117
|
+
SecurityGroupId?: SecurityGroupId;
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
*/
|
|
121
|
+
AccessType?: EndpointAccessType;
|
|
122
|
+
/**
|
|
123
|
+
* The ID of the customer-owned IPv4 pool used for the endpoint.
|
|
124
|
+
*/
|
|
125
|
+
CustomerOwnedIpv4Pool?: CustomerOwnedIpv4Pool;
|
|
97
126
|
}
|
|
127
|
+
export type EndpointAccessType = "Private"|"CustomerOwnedIp"|string;
|
|
98
128
|
export type EndpointArn = string;
|
|
99
129
|
export type EndpointId = string;
|
|
100
|
-
export type EndpointStatus = "
|
|
130
|
+
export type EndpointStatus = "Pending"|"Available"|"Deleting"|string;
|
|
101
131
|
export type Endpoints = Endpoint[];
|
|
102
132
|
export interface ListEndpointsRequest {
|
|
103
133
|
/**
|
|
@@ -111,7 +141,7 @@ declare namespace S3Outposts {
|
|
|
111
141
|
}
|
|
112
142
|
export interface ListEndpointsResult {
|
|
113
143
|
/**
|
|
114
|
-
* Returns an array of endpoints associated with AWS
|
|
144
|
+
* Returns an array of endpoints associated with AWS Outposts.
|
|
115
145
|
*/
|
|
116
146
|
Endpoints?: Endpoints;
|
|
117
147
|
/**
|
|
@@ -132,6 +162,7 @@ declare namespace S3Outposts {
|
|
|
132
162
|
export type OutpostId = string;
|
|
133
163
|
export type SecurityGroupId = string;
|
|
134
164
|
export type SubnetId = string;
|
|
165
|
+
export type VpcId = string;
|
|
135
166
|
/**
|
|
136
167
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
137
168
|
*/
|