@awboost/cfn-resource-types 0.1.137 → 0.1.138
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.
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Challenge`.
|
|
5
|
+
* Represents a SCEP Challenge that is used for certificate enrollment
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-challenge.html}
|
|
7
|
+
*/
|
|
8
|
+
export type PCAConnectorSCEPChallengeProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `5`
|
|
11
|
+
* @maxLength `200`
|
|
12
|
+
* @pattern `^arn:aws(-[a-z]+)*:pca-connector-scep:[a-z]+(-[a-z]+)+-[1-9]\d*:\d{12}:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
13
|
+
*/
|
|
14
|
+
ConnectorArn: string;
|
|
15
|
+
Tags?: Tags;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Attribute type definition for `AWS::PCAConnectorSCEP::Challenge`.
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-challenge.html#aws-resource-pcaconnectorscep-challenge-return-values}
|
|
20
|
+
*/
|
|
21
|
+
export type PCAConnectorSCEPChallengeAttributes = {
|
|
22
|
+
/**
|
|
23
|
+
* @minLength `5`
|
|
24
|
+
* @maxLength `200`
|
|
25
|
+
* @pattern `^arn:aws(-[a-z]+)*:pca-connector-scep:[a-z]+(-[a-z]+)+-[1-9]\d*:\d{12}:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}\/challenge\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
26
|
+
*/
|
|
27
|
+
ChallengeArn: string;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Type definition for `AWS::PCAConnectorSCEP::Challenge.Tags`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-challenge-tags.html}
|
|
32
|
+
*/
|
|
33
|
+
export type Tags = Record<string, string>;
|
|
34
|
+
/**
|
|
35
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Challenge`.
|
|
36
|
+
* Represents a SCEP Challenge that is used for certificate enrollment
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-challenge.html}
|
|
38
|
+
*/
|
|
39
|
+
export declare class PCAConnectorSCEPChallenge extends $Resource<"AWS::PCAConnectorSCEP::Challenge", PCAConnectorSCEPChallengeProperties, PCAConnectorSCEPChallengeAttributes> {
|
|
40
|
+
static readonly Type = "AWS::PCAConnectorSCEP::Challenge";
|
|
41
|
+
constructor(logicalId: string, properties: PCAConnectorSCEPChallengeProperties, options?: $ResourceOptions);
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=AWS-PCAConnectorSCEP-Challenge.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Challenge`.
|
|
4
|
+
* Represents a SCEP Challenge that is used for certificate enrollment
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-challenge.html}
|
|
6
|
+
*/
|
|
7
|
+
export class PCAConnectorSCEPChallenge extends $Resource {
|
|
8
|
+
static Type = "AWS::PCAConnectorSCEP::Challenge";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, PCAConnectorSCEPChallenge.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-PCAConnectorSCEP-Challenge.js.map
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Connector`.
|
|
5
|
+
* Represents a Connector that allows certificate issuance through Simple Certificate Enrollment Protocol (SCEP)
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-connector.html}
|
|
7
|
+
*/
|
|
8
|
+
export type PCAConnectorSCEPConnectorProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `5`
|
|
11
|
+
* @maxLength `200`
|
|
12
|
+
* @pattern `^arn:aws(-[a-z]+)*:acm-pca:[a-z]+(-[a-z]+)+-[1-9]\d*:\d{12}:certificate-authority\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
13
|
+
*/
|
|
14
|
+
CertificateAuthorityArn: string;
|
|
15
|
+
MobileDeviceManagement?: MobileDeviceManagement;
|
|
16
|
+
Tags?: Tags;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Attribute type definition for `AWS::PCAConnectorSCEP::Connector`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-connector.html#aws-resource-pcaconnectorscep-connector-return-values}
|
|
21
|
+
*/
|
|
22
|
+
export type PCAConnectorSCEPConnectorAttributes = {
|
|
23
|
+
/**
|
|
24
|
+
* @minLength `5`
|
|
25
|
+
* @maxLength `200`
|
|
26
|
+
* @pattern `^arn:aws(-[a-z]+)*:pca-connector-scep:[a-z]+(-[a-z]+)+-[1-9]\d*:\d{12}:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
27
|
+
*/
|
|
28
|
+
ConnectorArn: string;
|
|
29
|
+
/**
|
|
30
|
+
* @minLength `5`
|
|
31
|
+
* @maxLength `200`
|
|
32
|
+
*/
|
|
33
|
+
Endpoint: string;
|
|
34
|
+
OpenIdConfiguration: {
|
|
35
|
+
Audience: string;
|
|
36
|
+
Issuer: string;
|
|
37
|
+
Subject: string;
|
|
38
|
+
};
|
|
39
|
+
Type: ConnectorType;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.ConnectorType`.
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-connectortype.html}
|
|
44
|
+
*/
|
|
45
|
+
export type ConnectorType = "GENERAL_PURPOSE" | "INTUNE";
|
|
46
|
+
/**
|
|
47
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.IntuneConfiguration`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-intuneconfiguration.html}
|
|
49
|
+
*/
|
|
50
|
+
export type IntuneConfiguration = {
|
|
51
|
+
/**
|
|
52
|
+
* @minLength `15`
|
|
53
|
+
* @maxLength `100`
|
|
54
|
+
* @pattern `^[a-zA-Z0-9]{2,15}-[a-zA-Z0-9]{2,15}-[a-zA-Z0-9]{2,15}-[a-zA-Z0-9]{2,15}-[a-zA-Z0-9]{2,15}$`
|
|
55
|
+
*/
|
|
56
|
+
AzureApplicationId: string;
|
|
57
|
+
/**
|
|
58
|
+
* @minLength `1`
|
|
59
|
+
* @maxLength `256`
|
|
60
|
+
* @pattern `^[a-zA-Z0-9._-]+$`
|
|
61
|
+
*/
|
|
62
|
+
Domain: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.MobileDeviceManagement`.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-mobiledevicemanagement.html}
|
|
67
|
+
*/
|
|
68
|
+
export type MobileDeviceManagement = {
|
|
69
|
+
Intune: IntuneConfiguration;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.OpenIdConfiguration`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-openidconfiguration.html}
|
|
74
|
+
*/
|
|
75
|
+
export type OpenIdConfiguration = {
|
|
76
|
+
Audience?: string;
|
|
77
|
+
Issuer?: string;
|
|
78
|
+
Subject?: string;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.Tags`.
|
|
82
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-tags.html}
|
|
83
|
+
*/
|
|
84
|
+
export type Tags = Record<string, string>;
|
|
85
|
+
/**
|
|
86
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Connector`.
|
|
87
|
+
* Represents a Connector that allows certificate issuance through Simple Certificate Enrollment Protocol (SCEP)
|
|
88
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-connector.html}
|
|
89
|
+
*/
|
|
90
|
+
export declare class PCAConnectorSCEPConnector extends $Resource<"AWS::PCAConnectorSCEP::Connector", PCAConnectorSCEPConnectorProperties, PCAConnectorSCEPConnectorAttributes> {
|
|
91
|
+
static readonly Type = "AWS::PCAConnectorSCEP::Connector";
|
|
92
|
+
constructor(logicalId: string, properties: PCAConnectorSCEPConnectorProperties, options?: $ResourceOptions);
|
|
93
|
+
}
|
|
94
|
+
//# sourceMappingURL=AWS-PCAConnectorSCEP-Connector.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Connector`.
|
|
4
|
+
* Represents a Connector that allows certificate issuance through Simple Certificate Enrollment Protocol (SCEP)
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-connector.html}
|
|
6
|
+
*/
|
|
7
|
+
export class PCAConnectorSCEPConnector extends $Resource {
|
|
8
|
+
static Type = "AWS::PCAConnectorSCEP::Connector";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, PCAConnectorSCEPConnector.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-PCAConnectorSCEP-Connector.js.map
|