Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Project ¶
type Project struct {
// contains filtered or unexported fields
}
Provides a resource to manage AWS Device Farm Projects. Please keep in mind that this feature is only supported on the "us-west-2" region. This resource will error if you try to create a project in another region.
For more information about Device Farm Projects, see the AWS Documentation on [Device Farm Projects][aws-get-project].
func GetProject ¶
func GetProject(ctx *pulumi.Context, name string, id pulumi.ID, state *ProjectState, opts ...pulumi.ResourceOpt) (*Project, error)
GetProject gets an existing Project 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 NewProject ¶
func NewProject(ctx *pulumi.Context, name string, args *ProjectArgs, opts ...pulumi.ResourceOpt) (*Project, error)
NewProject registers a new resource with the given unique name, arguments, and options.
func (*Project) Arn ¶
func (r *Project) Arn() *pulumi.StringOutput
The Amazon Resource Name of this project
type ProjectArgs ¶
type ProjectArgs struct {
// The name of the project
Name interface{}
}
The set of arguments for constructing a Project resource.
type ProjectState ¶
type ProjectState struct { // The Amazon Resource Name of this project Arn interface{} // The name of the project Name interface{} }
Input properties used for looking up and filtering Project resources.