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

Stack

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

Describes a stack.

interface Stack {
AgentVersion?: string | null;
Arn?: string | null;
Attributes?: [key in StackAttributesKeys]: string | null | undefined | null;
ChefConfiguration?: ChefConfiguration | null;
ConfigurationManager?: StackConfigurationManager | null;
CreatedAt?: string | null;
CustomCookbooksSource?: Source | null;
CustomJson?: string | null;
DefaultAvailabilityZone?: string | null;
DefaultInstanceProfileArn?: string | null;
DefaultOs?: string | null;
DefaultRootDeviceType?: RootDeviceType | null;
DefaultSshKeyName?: string | null;
DefaultSubnetId?: string | null;
HostnameTheme?: string | null;
Name?: string | null;
Region?: string | null;
ServiceRoleArn?: string | null;
StackId?: string | null;
UseCustomCookbooks?: boolean | null;
UseOpsworksSecurityGroups?: boolean | null;
VpcId?: string | null;
}

§Properties

§
AgentVersion?: string | null
[src]

The agent version. This parameter is set to LATEST for auto-update. or a version number for a fixed agent version.

§
Arn?: string | null
[src]

The stack's ARN.

§
Attributes?: [key in StackAttributesKeys]: string | null | undefined | null
[src]

The stack's attributes.

§
ChefConfiguration?: ChefConfiguration | null
[src]

A ChefConfiguration object that specifies whether to enable Berkshelf and the Berkshelf version. For more information, see Create a New Stack.

§
ConfigurationManager?: StackConfigurationManager | null
[src]

The configuration manager.

§
CreatedAt?: string | null
[src]

The date when the stack was created.

§
CustomCookbooksSource?: Source | null
[src]

Contains the information required to retrieve an app or cookbook from a repository. For more information, see Adding Apps or Cookbooks and Recipes.

§
CustomJson?: string | null
[src]

A JSON object that contains user-defined attributes to be added to the stack configuration and deployment attributes. You can use custom JSON to override the corresponding default stack configuration attribute values or to pass data to recipes. The string should be in the following format:

"{\"key1\": \"value1\", \"key2\": \"value2\",...}"

For more information on custom JSON, see Use Custom JSON to Modify the Stack Configuration Attributes.

§
DefaultAvailabilityZone?: string | null
[src]

The stack's default Availability Zone. For more information, see Regions and Endpoints.

§
DefaultInstanceProfileArn?: string | null
[src]

The ARN of an IAM profile that is the default profile for all of the stack's EC2 instances. For more information about IAM ARNs, see Using Identifiers.

§
DefaultOs?: string | null
[src]

The stack's default operating system.

§
DefaultRootDeviceType?: RootDeviceType | null
[src]

The default root device type. This value is used by default for all instances in the stack, but you can override it when you create an instance. For more information, see Storage for the Root Device.

§
DefaultSshKeyName?: string | null
[src]

A default Amazon EC2 key pair for the stack's instances. You can override this value when you create or update an instance.

§
DefaultSubnetId?: string | null
[src]

The default subnet ID; applicable only if the stack is running in a VPC.

§
HostnameTheme?: string | null
[src]

The stack host name theme, with spaces replaced by underscores.

§
Name?: string | null
[src]

The stack name.

§
Region?: string | null
[src]

The stack AWS region, such as "ap-northeast-2". For more information about AWS regions, see Regions and Endpoints.

§
ServiceRoleArn?: string | null
[src]

The stack AWS Identity and Access Management (IAM) role.

§
StackId?: string | null
[src]

The stack ID.

§
UseCustomCookbooks?: boolean | null
[src]

Whether the stack uses custom cookbooks.

§
UseOpsworksSecurityGroups?: boolean | null
[src]

Whether the stack automatically associates the AWS OpsWorks Stacks built-in security groups with the stack's layers.

§
VpcId?: string | null
[src]

The VPC ID; applicable only if the stack is running in a VPC.