Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PolicyAttributeTypeDescription

import type { PolicyAttributeTypeDescription } from "https://aws-api.deno.dev/v0.3/services/elb.ts?docs=full";

Information about a policy attribute type.

interface PolicyAttributeTypeDescription {
AttributeName?: string | null;
AttributeType?: string | null;
Cardinality?: string | null;
DefaultValue?: string | null;
Description?: string | null;
}

§Properties

§
AttributeName?: string | null
[src]

The name of the attribute.

§
AttributeType?: string | null
[src]

The type of the attribute. For example, Boolean or Integer.

§
Cardinality?: string | null
[src]

The cardinality of the attribute.

Valid values:

  • ONE(1) : Single value required
  • ZERO_OR_ONE(0..1) : Up to one value is allowed
  • ZERO_OR_MORE(0..*) : Optional. Multiple values are allowed
  • ONE_OR_MORE(1..*0) : Required. Multiple values are allowed
§
DefaultValue?: string | null
[src]

The default value of the attribute, if applicable.

§
Description?: string | null
[src]

A description of the attribute.