@propulsionworks/cloudformation 0.1.27 → 0.1.28
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/out/exports/resources.generated/aws-bcmdataexports-export.d.ts +9 -9
- package/out/exports/resources.generated/aws-bedrockagentcore-browsercustom.d.ts +9 -4
- package/out/exports/resources.generated/aws-bedrockagentcore-codeinterpretercustom.d.ts +9 -5
- package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +11 -2
- package/out/exports/resources.generated/aws-bedrockagentcore-runtimeendpoint.d.ts +5 -2
- package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +0 -4
- package/out/exports/resources.generated/aws-cur-reportdefinition.d.ts +5 -1
- package/out/exports/resources.generated/aws-datasync-locationsmb.d.ts +50 -0
- package/out/exports/resources.generated/aws-datazone-formtype.d.ts +106 -0
- package/out/exports/resources.generated/aws-datazone-owner.d.ts +15 -2
- package/out/exports/resources.generated/aws-datazone-projectmembership.d.ts +19 -2
- package/out/exports/resources.generated/aws-ec2-localgatewayvirtualinterface.d.ts +82 -0
- package/out/exports/resources.generated/aws-ec2-localgatewayvirtualinterfacegroup.d.ts +62 -0
- package/out/exports/resources.generated/aws-ec2-networkinterfaceattachment.d.ts +5 -0
- package/out/exports/resources.generated/aws-ec2-vpc.d.ts +2 -2
- package/out/exports/resources.generated/aws-ec2-vpccidrblock.d.ts +2 -2
- package/out/exports/resources.generated/aws-entityresolution-idmappingworkflow.d.ts +4 -0
- package/out/exports/resources.generated/aws-gamelift-containerfleet.d.ts +2 -2
- package/out/exports/resources.generated/aws-gamelift-fleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-imagebuilder-imagepipeline.d.ts +5 -0
- package/out/exports/resources.generated/aws-lambda-function.d.ts +2 -2
- package/out/exports/resources.generated/aws-lambda-permission.d.ts +4 -0
- package/out/exports/resources.generated/aws-networkmanager-connectpeer.d.ts +5 -0
- package/out/exports/resources.generated/aws-omics-workflow.d.ts +88 -0
- package/out/exports/resources.generated/aws-omics-workflowversion.d.ts +88 -0
- package/out/exports/resources.generated/aws-opensearchservice-domain.d.ts +1 -0
- package/out/exports/resources.generated/aws-pcs-computenodegroup.d.ts +1 -1
- package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +8 -0
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +32 -0
- package/out/exports/resources.generated/aws-rds-dbcluster.d.ts +14 -0
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +12 -0
- package/out/exports/resources.generated/aws-rds-dbproxy.d.ts +16 -1
- package/out/exports/resources.generated/aws-rds-dbproxyendpoint.d.ts +5 -0
- package/out/exports/resources.generated/aws-servicecatalog-portfolioproductassociation.d.ts +4 -13
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ResourceDefinition } from "../main.ts";
|
|
2
2
|
/**
|
|
3
3
|
* Associates the specified product with the specified portfolio.
|
|
4
4
|
*
|
|
5
5
|
* A delegated admin is authorized to invoke this command.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html}
|
|
7
7
|
*/
|
|
8
|
-
export type ServiceCatalogPortfolioProductAssociation =
|
|
8
|
+
export type ServiceCatalogPortfolioProductAssociation = ResourceDefinition<"AWS::ServiceCatalog::PortfolioProductAssociation", ServiceCatalogPortfolioProductAssociationProps>;
|
|
9
9
|
/**
|
|
10
10
|
* Associates the specified product with the specified portfolio.
|
|
11
11
|
*
|
|
@@ -25,25 +25,16 @@ export type ServiceCatalogPortfolioProductAssociationProps = {
|
|
|
25
25
|
* The portfolio identifier.
|
|
26
26
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-portfolioid}
|
|
27
27
|
*/
|
|
28
|
-
PortfolioId
|
|
28
|
+
PortfolioId?: string | undefined;
|
|
29
29
|
/**
|
|
30
30
|
* The product identifier.
|
|
31
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-productid}
|
|
32
32
|
*/
|
|
33
|
-
ProductId
|
|
33
|
+
ProductId?: string | undefined;
|
|
34
34
|
/**
|
|
35
35
|
* The identifier of the source portfolio.
|
|
36
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-sourceportfolioid}
|
|
37
37
|
*/
|
|
38
38
|
SourcePortfolioId?: string | undefined;
|
|
39
39
|
};
|
|
40
|
-
/**
|
|
41
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#aws-resource-servicecatalog-portfolioproductassociation-return-values}
|
|
42
|
-
*/
|
|
43
|
-
export type ServiceCatalogPortfolioProductAssociationAttribs = {
|
|
44
|
-
/**
|
|
45
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#cfn-servicecatalog-portfolioproductassociation-id}
|
|
46
|
-
*/
|
|
47
|
-
Id: string;
|
|
48
|
-
};
|
|
49
40
|
//# sourceMappingURL=aws-servicecatalog-portfolioproductassociation.d.ts.map
|