Protection constructor

Protection(
  1. String name, {
  2. ProtectionArgs? args,
  3. CustomResourceOptions? options,
})

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

Implementation

Protection(
  String name, {
  ProtectionArgs? args,
  pulumi.CustomResourceOptions? options,
}) : super(
        'aws:shield/protection:Protection',
        name,
        pulumi.Input.mapToInputs(args?.toMap() ?? const {}),
        pulumi.CustomResourceOptions(version: '7.44.0').merge(options),
      ) {
  arn = registerOutput<String>('arn');
  this.name = registerOutput<String>('name');
  resourceArn = registerOutput<String>('resourceArn');
  tags = registerOutput<Map<String, String>?>('tags', decoder: (raw) { final guardedValue = raw; if (guardedValue == null) return null; return (guardedValue as Map).cast<String, String>(); });
  tagsAll = registerOutput<Map<String, String>>('tagsAll', decoder: (raw) { final guardedValue = raw; if (guardedValue == null) return null; return (guardedValue as Map).cast<String, String>(); });
}