AwsSsmParameterAssumeRoleArgs
interface AwsSsmParameterAssumeRoleArgs {
accountId?: Input<string>;
region?: Input<Region>;
sessionName?: Input<string>;
}Cross-account role assumption configuration for the parameter capability.
Example
CODE
import type { AwsSsmParameterAssumeRoleArgs } from '@jobcloud/aws-ssm-parameter';
const assumeRole: AwsSsmParameterAssumeRoleArgs = { accountId: '000000000000' };Properties
accountId: Input<string>
AWS account ID of the target account. Defaults to the deployment account.
region: Input<Region>
AWS region for the target account. Defaults to the active provider region.
sessionName: Input<string>
Session name. Defaults to pulumi-ssm-${args.parameter.name}.