Skip to content

Commit

Permalink
add an integ test
Browse files Browse the repository at this point in the history
  • Loading branch information
go-to-k committed Nov 8, 2023
1 parent f4458c7 commit eaf0074
Show file tree
Hide file tree
Showing 10 changed files with 1,139 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { WaiterStateMachineOptions } from './waiter-state-machine';
export interface IApiCall extends IConstruct {
/**
* Access the AssertionsProvider. This can be used to add additional IAM policies
* to the the provider role policy.
* to the provider role policy.
*
* @example
* declare const apiCall: AwsApiCall;
Expand All @@ -25,7 +25,7 @@ export interface IApiCall extends IConstruct {
/**
* Access the AssertionsProvider for the waiter state machine.
* This can be used to add additional IAM policies
* to the the provider role policy.
* to the provider role policy.
*
* @example
* declare const apiCall: AwsApiCall;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"Resources": {
"Bucket83908E77": {
"Type": "AWS::S3::Bucket",
"UpdateReplacePolicy": "Delete",
"DeletionPolicy": "Delete"
}
},
"Outputs": {
"ExportsOutputRefBucket83908E7781C90AC0": {
"Value": {
"Ref": "Bucket83908E77"
},
"Export": {
"Name": "WaiterProviderStack:ExportsOutputRefBucket83908E7781C90AC0"
}
},
"ExportsOutputFnGetAttBucket83908E77Arn063C8555": {
"Value": {
"Fn::GetAtt": [
"Bucket83908E77",
"Arn"
]
},
"Export": {
"Name": "WaiterProviderStack:ExportsOutputFnGetAttBucket83908E77Arn063C8555"
}
}
},
"Parameters": {
"BootstrapVersion": {
"Type": "AWS::SSM::Parameter::Value<String>",
"Default": "/cdk-bootstrap/hnb659fds/version",
"Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]"
}
},
"Rules": {
"CheckBootstrapVersion": {
"Assertions": [
{
"Assert": {
"Fn::Not": [
{
"Fn::Contains": [
[
"1",
"2",
"3",
"4",
"5"
],
{
"Ref": "BootstrapVersion"
}
]
}
]
},
"AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI."
}
]
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit eaf0074

Please sign in to comment.