cloudngfwaws.AccountOnboarding
Explore with Pulumi AI
Resource for Account Onboarding.
Admin Permission Type
Rulestack
(forscope="Local"
)Global Rulestack
(forscope="Global"
)
Create AccountOnboarding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AccountOnboarding(name: string, args: AccountOnboardingArgs, opts?: CustomResourceOptions);
@overload
def AccountOnboarding(resource_name: str,
args: AccountOnboardingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AccountOnboarding(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
onboarding_status: Optional[str] = None)
func NewAccountOnboarding(ctx *Context, name string, args AccountOnboardingArgs, opts ...ResourceOption) (*AccountOnboarding, error)
public AccountOnboarding(string name, AccountOnboardingArgs args, CustomResourceOptions? opts = null)
public AccountOnboarding(String name, AccountOnboardingArgs args)
public AccountOnboarding(String name, AccountOnboardingArgs args, CustomResourceOptions options)
type: cloudngfwaws:AccountOnboarding
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AccountOnboardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AccountOnboardingArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AccountOnboardingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountOnboardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountOnboardingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var accountOnboardingResource = new CloudNgfwAws.AccountOnboarding("accountOnboardingResource", new()
{
AccountId = "string",
OnboardingStatus = "string",
});
example, err := cloudngfwaws.NewAccountOnboarding(ctx, "accountOnboardingResource", &cloudngfwaws.AccountOnboardingArgs{
AccountId: pulumi.String("string"),
OnboardingStatus: pulumi.String("string"),
})
var accountOnboardingResource = new AccountOnboarding("accountOnboardingResource", AccountOnboardingArgs.builder()
.accountId("string")
.onboardingStatus("string")
.build());
account_onboarding_resource = cloudngfwaws.AccountOnboarding("accountOnboardingResource",
account_id="string",
onboarding_status="string")
const accountOnboardingResource = new cloudngfwaws.AccountOnboarding("accountOnboardingResource", {
accountId: "string",
onboardingStatus: "string",
});
type: cloudngfwaws:AccountOnboarding
properties:
accountId: string
onboardingStatus: string
AccountOnboarding Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AccountOnboarding resource accepts the following input properties:
- Account
Id string - The account IDs
- Onboarding
Status string - Onboarding status of the account
- Account
Id string - The account IDs
- Onboarding
Status string - Onboarding status of the account
- account
Id String - The account IDs
- onboarding
Status String - Onboarding status of the account
- account
Id string - The account IDs
- onboarding
Status string - Onboarding status of the account
- account_
id str - The account IDs
- onboarding_
status str - Onboarding status of the account
- account
Id String - The account IDs
- onboarding
Status String - Onboarding status of the account
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountOnboarding resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AccountOnboarding Resource
Get an existing AccountOnboarding resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AccountOnboardingState, opts?: CustomResourceOptions): AccountOnboarding
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
onboarding_status: Optional[str] = None) -> AccountOnboarding
func GetAccountOnboarding(ctx *Context, name string, id IDInput, state *AccountOnboardingState, opts ...ResourceOption) (*AccountOnboarding, error)
public static AccountOnboarding Get(string name, Input<string> id, AccountOnboardingState? state, CustomResourceOptions? opts = null)
public static AccountOnboarding get(String name, Output<String> id, AccountOnboardingState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Id string - The account IDs
- Onboarding
Status string - Onboarding status of the account
- Account
Id string - The account IDs
- Onboarding
Status string - Onboarding status of the account
- account
Id String - The account IDs
- onboarding
Status String - Onboarding status of the account
- account
Id string - The account IDs
- onboarding
Status string - Onboarding status of the account
- account_
id str - The account IDs
- onboarding_
status str - Onboarding status of the account
- account
Id String - The account IDs
- onboarding
Status String - Onboarding status of the account
Package Details
- Repository
- cloudngfwaws pulumi/pulumi-cloudngfwaws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudngfwaws
Terraform Provider.