1. Packages
  2. Ibm Provider
  3. API Docs
  4. SccInstanceSettings
Viewing docs for ibm 1.89.0
published on Monday, Mar 2, 2026 by ibm-cloud
ibm logo
Viewing docs for ibm 1.89.0
published on Monday, Mar 2, 2026 by ibm-cloud

    Create SccInstanceSettings Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SccInstanceSettings(name: string, args: SccInstanceSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def SccInstanceSettings(resource_name: str,
                            args: SccInstanceSettingsArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SccInstanceSettings(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            event_notifications: Optional[SccInstanceSettingsEventNotificationsArgs] = None,
                            instance_id: Optional[str] = None,
                            object_storage: Optional[SccInstanceSettingsObjectStorageArgs] = None,
                            scc_instance_settings_id: Optional[str] = None)
    func NewSccInstanceSettings(ctx *Context, name string, args SccInstanceSettingsArgs, opts ...ResourceOption) (*SccInstanceSettings, error)
    public SccInstanceSettings(string name, SccInstanceSettingsArgs args, CustomResourceOptions? opts = null)
    public SccInstanceSettings(String name, SccInstanceSettingsArgs args)
    public SccInstanceSettings(String name, SccInstanceSettingsArgs args, CustomResourceOptions options)
    
    type: ibm:SccInstanceSettings
    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 SccInstanceSettingsArgs
    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 SccInstanceSettingsArgs
    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 SccInstanceSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SccInstanceSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SccInstanceSettingsArgs
    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 sccInstanceSettingsResource = new Ibm.SccInstanceSettings("sccInstanceSettingsResource", new()
    {
        EventNotifications = new Ibm.Inputs.SccInstanceSettingsEventNotificationsArgs
        {
            InstanceCrn = "string",
            SourceDescription = "string",
            SourceId = "string",
            SourceName = "string",
            UpdatedOn = "string",
        },
        InstanceId = "string",
        ObjectStorage = new Ibm.Inputs.SccInstanceSettingsObjectStorageArgs
        {
            Bucket = "string",
            BucketEndpoint = "string",
            BucketLocation = "string",
            InstanceCrn = "string",
            UpdatedOn = "string",
        },
        SccInstanceSettingsId = "string",
    });
    
    example, err := ibm.NewSccInstanceSettings(ctx, "sccInstanceSettingsResource", &ibm.SccInstanceSettingsArgs{
    	EventNotifications: &ibm.SccInstanceSettingsEventNotificationsArgs{
    		InstanceCrn:       pulumi.String("string"),
    		SourceDescription: pulumi.String("string"),
    		SourceId:          pulumi.String("string"),
    		SourceName:        pulumi.String("string"),
    		UpdatedOn:         pulumi.String("string"),
    	},
    	InstanceId: pulumi.String("string"),
    	ObjectStorage: &ibm.SccInstanceSettingsObjectStorageArgs{
    		Bucket:         pulumi.String("string"),
    		BucketEndpoint: pulumi.String("string"),
    		BucketLocation: pulumi.String("string"),
    		InstanceCrn:    pulumi.String("string"),
    		UpdatedOn:      pulumi.String("string"),
    	},
    	SccInstanceSettingsId: pulumi.String("string"),
    })
    
    var sccInstanceSettingsResource = new SccInstanceSettings("sccInstanceSettingsResource", SccInstanceSettingsArgs.builder()
        .eventNotifications(SccInstanceSettingsEventNotificationsArgs.builder()
            .instanceCrn("string")
            .sourceDescription("string")
            .sourceId("string")
            .sourceName("string")
            .updatedOn("string")
            .build())
        .instanceId("string")
        .objectStorage(SccInstanceSettingsObjectStorageArgs.builder()
            .bucket("string")
            .bucketEndpoint("string")
            .bucketLocation("string")
            .instanceCrn("string")
            .updatedOn("string")
            .build())
        .sccInstanceSettingsId("string")
        .build());
    
    scc_instance_settings_resource = ibm.SccInstanceSettings("sccInstanceSettingsResource",
        event_notifications={
            "instance_crn": "string",
            "source_description": "string",
            "source_id": "string",
            "source_name": "string",
            "updated_on": "string",
        },
        instance_id="string",
        object_storage={
            "bucket": "string",
            "bucket_endpoint": "string",
            "bucket_location": "string",
            "instance_crn": "string",
            "updated_on": "string",
        },
        scc_instance_settings_id="string")
    
    const sccInstanceSettingsResource = new ibm.SccInstanceSettings("sccInstanceSettingsResource", {
        eventNotifications: {
            instanceCrn: "string",
            sourceDescription: "string",
            sourceId: "string",
            sourceName: "string",
            updatedOn: "string",
        },
        instanceId: "string",
        objectStorage: {
            bucket: "string",
            bucketEndpoint: "string",
            bucketLocation: "string",
            instanceCrn: "string",
            updatedOn: "string",
        },
        sccInstanceSettingsId: "string",
    });
    
    type: ibm:SccInstanceSettings
    properties:
        eventNotifications:
            instanceCrn: string
            sourceDescription: string
            sourceId: string
            sourceName: string
            updatedOn: string
        instanceId: string
        objectStorage:
            bucket: string
            bucketEndpoint: string
            bucketLocation: string
            instanceCrn: string
            updatedOn: string
        sccInstanceSettingsId: string
    

    SccInstanceSettings 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 SccInstanceSettings resource accepts the following input properties:

    EventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings.
    InstanceId string
    The ID of the Security and Compliance Center instance.
    ObjectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings.
    SccInstanceSettingsId string
    EventNotifications SccInstanceSettingsEventNotificationsArgs
    The Event Notifications settings.
    InstanceId string
    The ID of the Security and Compliance Center instance.
    ObjectStorage SccInstanceSettingsObjectStorageArgs
    The Cloud Object Storage settings.
    SccInstanceSettingsId string
    eventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings.
    instanceId String
    The ID of the Security and Compliance Center instance.
    objectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings.
    sccInstanceSettingsId String
    eventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings.
    instanceId string
    The ID of the Security and Compliance Center instance.
    objectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings.
    sccInstanceSettingsId string
    event_notifications SccInstanceSettingsEventNotificationsArgs
    The Event Notifications settings.
    instance_id str
    The ID of the Security and Compliance Center instance.
    object_storage SccInstanceSettingsObjectStorageArgs
    The Cloud Object Storage settings.
    scc_instance_settings_id str
    eventNotifications Property Map
    The Event Notifications settings.
    instanceId String
    The ID of the Security and Compliance Center instance.
    objectStorage Property Map
    The Cloud Object Storage settings.
    sccInstanceSettingsId String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SccInstanceSettings 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 SccInstanceSettings Resource

    Get an existing SccInstanceSettings 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?: SccInstanceSettingsState, opts?: CustomResourceOptions): SccInstanceSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            event_notifications: Optional[SccInstanceSettingsEventNotificationsArgs] = None,
            instance_id: Optional[str] = None,
            object_storage: Optional[SccInstanceSettingsObjectStorageArgs] = None,
            scc_instance_settings_id: Optional[str] = None) -> SccInstanceSettings
    func GetSccInstanceSettings(ctx *Context, name string, id IDInput, state *SccInstanceSettingsState, opts ...ResourceOption) (*SccInstanceSettings, error)
    public static SccInstanceSettings Get(string name, Input<string> id, SccInstanceSettingsState? state, CustomResourceOptions? opts = null)
    public static SccInstanceSettings get(String name, Output<String> id, SccInstanceSettingsState state, CustomResourceOptions options)
    resources:  _:    type: ibm:SccInstanceSettings    get:      id: ${id}
    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.
    The following state arguments are supported:
    EventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings.
    InstanceId string
    The ID of the Security and Compliance Center instance.
    ObjectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings.
    SccInstanceSettingsId string
    EventNotifications SccInstanceSettingsEventNotificationsArgs
    The Event Notifications settings.
    InstanceId string
    The ID of the Security and Compliance Center instance.
    ObjectStorage SccInstanceSettingsObjectStorageArgs
    The Cloud Object Storage settings.
    SccInstanceSettingsId string
    eventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings.
    instanceId String
    The ID of the Security and Compliance Center instance.
    objectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings.
    sccInstanceSettingsId String
    eventNotifications SccInstanceSettingsEventNotifications
    The Event Notifications settings.
    instanceId string
    The ID of the Security and Compliance Center instance.
    objectStorage SccInstanceSettingsObjectStorage
    The Cloud Object Storage settings.
    sccInstanceSettingsId string
    event_notifications SccInstanceSettingsEventNotificationsArgs
    The Event Notifications settings.
    instance_id str
    The ID of the Security and Compliance Center instance.
    object_storage SccInstanceSettingsObjectStorageArgs
    The Cloud Object Storage settings.
    scc_instance_settings_id str
    eventNotifications Property Map
    The Event Notifications settings.
    instanceId String
    The ID of the Security and Compliance Center instance.
    objectStorage Property Map
    The Cloud Object Storage settings.
    sccInstanceSettingsId String

    Supporting Types

    SccInstanceSettingsEventNotifications, SccInstanceSettingsEventNotificationsArgs

    InstanceCrn string
    The Event Notifications instance CRN.
    SourceDescription string
    The description of the source in Event Notifications connected Security and Compliance Center
    SourceId string
    The connected Security and Compliance Center instance CRN.
    SourceName string
    The name of the Event Notifications source connected Security and Compliance Center instance CRN.
    UpdatedOn string
    The date when the Event Notifications connection was updated.
    InstanceCrn string
    The Event Notifications instance CRN.
    SourceDescription string
    The description of the source in Event Notifications connected Security and Compliance Center
    SourceId string
    The connected Security and Compliance Center instance CRN.
    SourceName string
    The name of the Event Notifications source connected Security and Compliance Center instance CRN.
    UpdatedOn string
    The date when the Event Notifications connection was updated.
    instanceCrn String
    The Event Notifications instance CRN.
    sourceDescription String
    The description of the source in Event Notifications connected Security and Compliance Center
    sourceId String
    The connected Security and Compliance Center instance CRN.
    sourceName String
    The name of the Event Notifications source connected Security and Compliance Center instance CRN.
    updatedOn String
    The date when the Event Notifications connection was updated.
    instanceCrn string
    The Event Notifications instance CRN.
    sourceDescription string
    The description of the source in Event Notifications connected Security and Compliance Center
    sourceId string
    The connected Security and Compliance Center instance CRN.
    sourceName string
    The name of the Event Notifications source connected Security and Compliance Center instance CRN.
    updatedOn string
    The date when the Event Notifications connection was updated.
    instance_crn str
    The Event Notifications instance CRN.
    source_description str
    The description of the source in Event Notifications connected Security and Compliance Center
    source_id str
    The connected Security and Compliance Center instance CRN.
    source_name str
    The name of the Event Notifications source connected Security and Compliance Center instance CRN.
    updated_on str
    The date when the Event Notifications connection was updated.
    instanceCrn String
    The Event Notifications instance CRN.
    sourceDescription String
    The description of the source in Event Notifications connected Security and Compliance Center
    sourceId String
    The connected Security and Compliance Center instance CRN.
    sourceName String
    The name of the Event Notifications source connected Security and Compliance Center instance CRN.
    updatedOn String
    The date when the Event Notifications connection was updated.

    SccInstanceSettingsObjectStorage, SccInstanceSettingsObjectStorageArgs

    Bucket string
    The connected Cloud Object Storage bucket name.
    BucketEndpoint string
    The connected Cloud Object Storage bucket endpoint.
    BucketLocation string
    The connected Cloud Object Storage bucket location.
    InstanceCrn string
    The connected Cloud Object Storage instance CRN.
    UpdatedOn string
    The date when the bucket connection was updated.
    Bucket string
    The connected Cloud Object Storage bucket name.
    BucketEndpoint string
    The connected Cloud Object Storage bucket endpoint.
    BucketLocation string
    The connected Cloud Object Storage bucket location.
    InstanceCrn string
    The connected Cloud Object Storage instance CRN.
    UpdatedOn string
    The date when the bucket connection was updated.
    bucket String
    The connected Cloud Object Storage bucket name.
    bucketEndpoint String
    The connected Cloud Object Storage bucket endpoint.
    bucketLocation String
    The connected Cloud Object Storage bucket location.
    instanceCrn String
    The connected Cloud Object Storage instance CRN.
    updatedOn String
    The date when the bucket connection was updated.
    bucket string
    The connected Cloud Object Storage bucket name.
    bucketEndpoint string
    The connected Cloud Object Storage bucket endpoint.
    bucketLocation string
    The connected Cloud Object Storage bucket location.
    instanceCrn string
    The connected Cloud Object Storage instance CRN.
    updatedOn string
    The date when the bucket connection was updated.
    bucket str
    The connected Cloud Object Storage bucket name.
    bucket_endpoint str
    The connected Cloud Object Storage bucket endpoint.
    bucket_location str
    The connected Cloud Object Storage bucket location.
    instance_crn str
    The connected Cloud Object Storage instance CRN.
    updated_on str
    The date when the bucket connection was updated.
    bucket String
    The connected Cloud Object Storage bucket name.
    bucketEndpoint String
    The connected Cloud Object Storage bucket endpoint.
    bucketLocation String
    The connected Cloud Object Storage bucket location.
    instanceCrn String
    The connected Cloud Object Storage instance CRN.
    updatedOn String
    The date when the bucket connection was updated.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    Viewing docs for ibm 1.89.0
    published on Monday, Mar 2, 2026 by ibm-cloud
      Try Pulumi Cloud free. Your team will thank you.