ProtectionHealthCheckAssociation constructor

ProtectionHealthCheckAssociation(
  1. String name, {
  2. ProtectionHealthCheckAssociationArgs? args,
  3. CustomResourceOptions? options,
})

Creates a new ProtectionHealthCheckAssociation. name The Pulumi resource name. args Arguments used to configure this ProtectionHealthCheckAssociation. The set of arguments for ProtectionHealthCheckAssociation. options Resource options controlling this resource's behavior.

Implementation

ProtectionHealthCheckAssociation(
  String name, {
  ProtectionHealthCheckAssociationArgs? args,
  pulumi.CustomResourceOptions? options,
}) : super(
        'aws:shield/protectionHealthCheckAssociation:ProtectionHealthCheckAssociation',
        name,
        pulumi.Input.mapToInputs(args?.toMap() ?? const {}),
        pulumi.CustomResourceOptions(version: '7.44.0').merge(options),
      ) {
  healthCheckArn = registerOutput<String>('healthCheckArn');
  shieldProtectionId = registerOutput<String>('shieldProtectionId');
}