agent-claw: automated task changes
This commit is contained in:
18
cdk/node_modules/aws-cdk-lib/rosetta/aws_ec2/client-vpn.ts-fixture
generated
vendored
Normal file
18
cdk/node_modules/aws-cdk-lib/rosetta/aws_ec2/client-vpn.ts-fixture
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
// Fixture with packages imported and a VPC created
|
||||
import { Construct } from 'constructs';
|
||||
import { Stack } from 'aws-cdk-lib';
|
||||
import iam = require('aws-cdk-lib/aws-iam');
|
||||
import ec2 = require('aws-cdk-lib/aws-ec2');
|
||||
|
||||
class Fixture extends Stack {
|
||||
constructor(scope: Construct, id: string) {
|
||||
super(scope, id);
|
||||
|
||||
const vpc = new ec2.Vpc(this, 'VPC');
|
||||
const samlProvider = new iam.SamlProvider(this, 'Provider', {
|
||||
metadataDocument: iam.SamlMetadataDocument.fromXml('xml'),
|
||||
})
|
||||
|
||||
/// here
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user