@awboost/cfn-resource-types 0.1.511 → 0.1.512
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.
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for `AWS::ECR::PullTimeUpdateExclusion`.
|
|
5
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
6
7
|
*/
|
|
7
8
|
export type ECRPullTimeUpdateExclusionProperties = {
|
|
8
9
|
/**
|
|
9
|
-
*
|
|
10
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
10
11
|
* @maxLength `200`
|
|
11
12
|
* @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:(role|user)/[\w+=,.@-]+(/[\w+=,.@-]+)*$`
|
|
12
13
|
*/
|
|
13
14
|
PrincipalArn: string;
|
|
14
15
|
};
|
|
15
16
|
/**
|
|
16
|
-
* Resource
|
|
17
|
+
* Resource type definition for `AWS::ECR::PullTimeUpdateExclusion`.
|
|
18
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
17
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
18
20
|
*/
|
|
19
21
|
export declare class ECRPullTimeUpdateExclusion extends $Resource<"AWS::ECR::PullTimeUpdateExclusion", ECRPullTimeUpdateExclusionProperties, Record<string, never>> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::ECR::PullTimeUpdateExclusion`.
|
|
4
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
5
6
|
*/
|
|
6
7
|
export class ECRPullTimeUpdateExclusion extends $Resource {
|