@awboost/cfn-resource-types 0.1.298 → 0.1.300
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.
|
@@ -45,6 +45,7 @@ export type ApiGatewayV2ApiProperties = {
|
|
|
45
45
|
* Specifies whether to rollback the API creation when a warning is encountered. By default, API creation continues if a warning is encountered.
|
|
46
46
|
*/
|
|
47
47
|
FailOnWarnings?: boolean;
|
|
48
|
+
IpAddressType?: string;
|
|
48
49
|
/**
|
|
49
50
|
* The name of the API. Required unless you specify an OpenAPI definition for ``Body`` or ``S3BodyLocation``.
|
|
50
51
|
*/
|
|
@@ -51,6 +51,7 @@ export type DomainNameConfiguration = {
|
|
|
51
51
|
* The endpoint type.
|
|
52
52
|
*/
|
|
53
53
|
EndpointType?: string;
|
|
54
|
+
IpAddressType?: string;
|
|
54
55
|
/**
|
|
55
56
|
* The Amazon resource name (ARN) for the public certificate issued by ACMlong. This ARN is used to validate custom domain ownership. It's required only if you configure mutual TLS and use either an ACM-imported or a private CA certificate ARN as the regionalCertificateArn.
|
|
56
57
|
*/
|
|
@@ -11,6 +11,10 @@ export type EKSPodIdentityAssociationProperties = {
|
|
|
11
11
|
* @minLength `1`
|
|
12
12
|
*/
|
|
13
13
|
ClusterName: string;
|
|
14
|
+
/**
|
|
15
|
+
* The Disable Session Tags of the pod identity association.
|
|
16
|
+
*/
|
|
17
|
+
DisableSessionTags?: boolean;
|
|
14
18
|
/**
|
|
15
19
|
* The Kubernetes namespace that the pod identity association is created for.
|
|
16
20
|
*/
|
|
@@ -27,6 +31,11 @@ export type EKSPodIdentityAssociationProperties = {
|
|
|
27
31
|
* An array of key-value pairs to apply to this resource.
|
|
28
32
|
*/
|
|
29
33
|
Tags?: Tag[];
|
|
34
|
+
/**
|
|
35
|
+
* The Target Role Arn of the pod identity association.
|
|
36
|
+
* @minLength `1`
|
|
37
|
+
*/
|
|
38
|
+
TargetRoleArn?: string;
|
|
30
39
|
};
|
|
31
40
|
/**
|
|
32
41
|
* Attribute type definition for `AWS::EKS::PodIdentityAssociation`.
|
|
@@ -42,6 +51,11 @@ export type EKSPodIdentityAssociationAttributes = {
|
|
|
42
51
|
* @minLength `1`
|
|
43
52
|
*/
|
|
44
53
|
AssociationId: string;
|
|
54
|
+
/**
|
|
55
|
+
* The External Id of the pod identity association.
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
*/
|
|
58
|
+
ExternalId: string;
|
|
45
59
|
};
|
|
46
60
|
/**
|
|
47
61
|
* Type definition for `AWS::EKS::PodIdentityAssociation.Tag`.
|