aws-cdk-lib#ArnFormat TypeScript Examples
The following examples show how to use
aws-cdk-lib#ArnFormat.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: aws.ts From eventcatalog with MIT License | 6 votes |
getEventBusRulesAndTargets = (eventbridge: EventBridge, eventBusName: string) => async () => {
const rulesForEvents = await eventbridge.listRules({ EventBusName: eventBusName, Limit: 100 });
const rulesByEvent = rulesForEvents.Rules ? flattenRules(rulesForEvents.Rules) : {};
return Object.keys(rulesByEvent).reduce(async (data, event) => {
const listOfRulesForEvent = rulesByEvent[event].rules || [];
const eventTargetsAndRules = listOfRulesForEvent.map(async (rule: any) => {
const { Targets = [] } = await eventbridge.listTargetsByRule({ Rule: rule.name, EventBusName: eventBusName });
const targets = Targets.map(({ Arn: arnString = '' }) => {
const { service, resource, resourceName } = Arn.split(arnString, ArnFormat.SLASH_RESOURCE_SLASH_RESOURCE_NAME);
return { service, resource, resourceName, arn: arnString };
});
return { ...rule, targets };
});
const eventWithTargetsAndRules = await Promise.all(eventTargetsAndRules);
return {
...(await data),
[event]: eventWithTargetsAndRules,
};
}, {});
}
Example #2
Source File: index.ts From cloudstructs with Apache License 2.0 | 4 votes |
constructor(scope: Construct, id: string, props: StateMachineCustomResourceProviderProps) {
super(scope, id);
const cfnResponseSuccessFn = this.createCfnResponseFn('Success');
const cfnResponseFailedFn = this.createCfnResponseFn('Failed');
const role = new iam.Role(this, 'Role', {
assumedBy: new iam.ServicePrincipal('states.amazonaws.com'),
});
role.addToPolicy(new iam.PolicyStatement({
actions: ['lambda:InvokeFunction'],
resources: [cfnResponseSuccessFn.functionArn, cfnResponseFailedFn.functionArn],
}));
// https://docs.aws.amazon.com/step-functions/latest/dg/stepfunctions-iam.html
// https://docs.aws.amazon.com/step-functions/latest/dg/concept-create-iam-advanced.html#concept-create-iam-advanced-execution
role.addToPolicy(new iam.PolicyStatement({
actions: ['states:StartExecution'],
resources: [props.stateMachine.stateMachineArn],
}));
role.addToPolicy(new iam.PolicyStatement({
actions: ['states:DescribeExecution', 'states:StopExecution'],
resources: [Stack.of(this).formatArn({
service: 'states',
resource: 'execution',
arnFormat: ArnFormat.COLON_RESOURCE_NAME,
resourceName: `${Stack.of(this).splitArn(props.stateMachine.stateMachineArn, ArnFormat.COLON_RESOURCE_NAME).resourceName}*`,
})],
}));
role.addToPolicy(new iam.PolicyStatement({
actions: ['events:PutTargets', 'events:PutRule', 'events:DescribeRule'],
resources: [Stack.of(this).formatArn({
service: 'events',
resource: 'rule',
resourceName: 'StepFunctionsGetEventsForStepFunctionsExecutionRule',
})],
}));
const definition = Stack.of(this).toJsonString({
StartAt: 'StartExecution',
States: {
StartExecution: {
Type: 'Task',
Resource: 'arn:aws:states:::states:startExecution.sync:2', // with sync:2 the Output is JSON parsed
Parameters: {
'Input.$': '$',
'StateMachineArn': props.stateMachine.stateMachineArn,
},
TimeoutSeconds: (props.timeout ?? Duration.minutes(30)).toSeconds(),
Next: 'CfnResponseSuccess',
Catch: [{
ErrorEquals: ['States.ALL'],
Next: 'CfnResponseFailed',
}],
},
CfnResponseSuccess: {
Type: 'Task',
Resource: cfnResponseSuccessFn.functionArn,
End: true,
},
CfnResponseFailed: {
Type: 'Task',
Resource: cfnResponseFailedFn.functionArn,
End: true,
},
},
});
const stateMachine = new CfnResource(this, 'StateMachine', {
type: 'AWS::StepFunctions::StateMachine',
properties: {
DefinitionString: definition,
RoleArn: role.roleArn,
},
});
stateMachine.node.addDependency(role);
const startExecution = new lambda.Function(this, 'StartExecution', {
code: lambda.Code.fromAsset(path.join(__dirname, 'runtime')),
handler: 'index.startExecution',
runtime: lambda.Runtime.NODEJS_14_X,
});
startExecution.addToRolePolicy(new iam.PolicyStatement({
actions: ['states:StartExecution'],
resources: [stateMachine.ref],
}));
startExecution.addEnvironment('STATE_MACHINE_ARN', stateMachine.ref);
this.serviceToken = startExecution.functionArn;
}