@granite-js/pulumi-aws 0.0.1

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,27 @@
1
+ import * as aws from '@pulumi/aws';
2
+ import * as pulumi from '@pulumi/pulumi';
3
+
4
+ /**
5
+ * Arguments for creating a React Native CDN infrastructure
6
+ * @interface ReactNativeCdnArgs
7
+ * @property {string} bucketName - Name of the S3 bucket (e.g. 'my-app')
8
+ * @property {aws.Region} region - AWS region (e.g. 'ap-northeast-2')
9
+ */
10
+ interface ReactNativeCdnArgs {
11
+ /** Name of the S3 bucket (e.g. 'my-app') */
12
+ bucketName: string;
13
+ /** AWS region (e.g. 'ap-northeast-2') */
14
+ region: aws.Region;
15
+ }
16
+ declare class ReactNativeBundleCDN extends pulumi.ComponentResource {
17
+ readonly cloudfrontDistributionId: pulumi.Output<string>;
18
+ readonly cloudfrontOriginAccessIdentityArn: pulumi.Output<string>;
19
+ readonly bucketName: pulumi.Output<string>;
20
+ readonly bucketEndpoint: pulumi.Output<string>;
21
+ readonly cloudfrontDomain: pulumi.Output<string>;
22
+ readonly monitoringSubscriptionId: pulumi.Output<string>;
23
+ readonly sharedDeploymentId: pulumi.Output<string>;
24
+ constructor(name: string, args: ReactNativeCdnArgs, opts?: pulumi.ComponentResourceOptions);
25
+ }
26
+
27
+ export { ReactNativeBundleCDN, type ReactNativeCdnArgs };
@@ -0,0 +1,27 @@
1
+ import * as aws from '@pulumi/aws';
2
+ import * as pulumi from '@pulumi/pulumi';
3
+
4
+ /**
5
+ * Arguments for creating a React Native CDN infrastructure
6
+ * @interface ReactNativeCdnArgs
7
+ * @property {string} bucketName - Name of the S3 bucket (e.g. 'my-app')
8
+ * @property {aws.Region} region - AWS region (e.g. 'ap-northeast-2')
9
+ */
10
+ interface ReactNativeCdnArgs {
11
+ /** Name of the S3 bucket (e.g. 'my-app') */
12
+ bucketName: string;
13
+ /** AWS region (e.g. 'ap-northeast-2') */
14
+ region: aws.Region;
15
+ }
16
+ declare class ReactNativeBundleCDN extends pulumi.ComponentResource {
17
+ readonly cloudfrontDistributionId: pulumi.Output<string>;
18
+ readonly cloudfrontOriginAccessIdentityArn: pulumi.Output<string>;
19
+ readonly bucketName: pulumi.Output<string>;
20
+ readonly bucketEndpoint: pulumi.Output<string>;
21
+ readonly cloudfrontDomain: pulumi.Output<string>;
22
+ readonly monitoringSubscriptionId: pulumi.Output<string>;
23
+ readonly sharedDeploymentId: pulumi.Output<string>;
24
+ constructor(name: string, args: ReactNativeCdnArgs, opts?: pulumi.ComponentResourceOptions);
25
+ }
26
+
27
+ export { ReactNativeBundleCDN, type ReactNativeCdnArgs };