InviteAccepter constructor
InviteAccepter(
- String name, {
- InviteAccepterArgs? args,
- CustomResourceOptions? options,
Creates a new InviteAccepter.
name The Pulumi resource name.
args Arguments used to configure this InviteAccepter. The set of arguments for InviteAccepter.
options Resource options controlling this resource's behavior.
Implementation
InviteAccepter(
String name, {
InviteAccepterArgs? args,
pulumi.CustomResourceOptions? options,
}) : super(
'aws:securityhub/inviteAccepter:InviteAccepter',
name,
pulumi.Input.mapToInputs(args?.toMap() ?? const {}),
pulumi.CustomResourceOptions(version: '7.44.0').merge(options),
) {
invitationId = registerOutput<String>('invitationId');
masterId = registerOutput<String>('masterId');
region = registerOutput<String>('region');
}