Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Group ¶
type Group struct {
// contains filtered or unexported fields
}
Provides a Resource Group.
func GetGroup ¶
func GetGroup(ctx *pulumi.Context, name string, id pulumi.ID, state *GroupState, opts ...pulumi.ResourceOpt) (*Group, error)
GetGroup gets an existing Group resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewGroup ¶
func NewGroup(ctx *pulumi.Context, name string, args *GroupArgs, opts ...pulumi.ResourceOpt) (*Group, error)
NewGroup registers a new resource with the given unique name, arguments, and options.
func (*Group) Arn ¶
func (r *Group) Arn() *pulumi.StringOutput
The ARN assigned by AWS for this resource group.
func (*Group) Description ¶
func (r *Group) Description() *pulumi.StringOutput
A description of the resource group.
func (*Group) Name ¶
func (r *Group) Name() *pulumi.StringOutput
The resource group's name. A resource group name can have a maximum of 127 characters, including letters, numbers, hyphens, dots, and underscores. The name cannot start with `AWS` or `aws`.
func (*Group) ResourceQuery ¶
A `resource_query` block. Resource queries are documented below.
type GroupArgs ¶
type GroupArgs struct { // A description of the resource group. Description interface{} // The resource group's name. A resource group name can have a maximum of 127 characters, including letters, numbers, hyphens, dots, and underscores. The name cannot start with `AWS` or `aws`. Name interface{} // A `resource_query` block. Resource queries are documented below. ResourceQuery interface{} }
The set of arguments for constructing a Group resource.
type GroupState ¶
type GroupState struct { // The ARN assigned by AWS for this resource group. Arn interface{} // A description of the resource group. Description interface{} // The resource group's name. A resource group name can have a maximum of 127 characters, including letters, numbers, hyphens, dots, and underscores. The name cannot start with `AWS` or `aws`. Name interface{} // A `resource_query` block. Resource queries are documented below. ResourceQuery interface{} }
Input properties used for looking up and filtering Group resources.